-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #311 from lumag/drop-96boards
Drop meta-96boards dependency
- Loading branch information
Showing
2 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
SUMMARY = "Useful bits an pieces to make 96Boards more standard across the board" | ||
HOMEPAGE = "https://github.com/96boards/96boards-tools" | ||
SECTION = "devel" | ||
|
||
LICENSE = "GPL-2.0-or-later" | ||
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0-or-later;md5=fed54355545ffd980b814dab4a3b312c" | ||
|
||
SRCREV = "52ad42bb74ba4b3fcece2483f0d496494d60715f" | ||
SRC_URI = "git://github.com/96boards/96boards-tools;branch=master;protocol=https \ | ||
" | ||
|
||
S = "${WORKDIR}/git" | ||
|
||
inherit systemd allarch update-rc.d | ||
|
||
do_install () { | ||
install -d ${D}${sysconfdir}/udev/rules.d | ||
install -m 0755 ${S}/*.rules ${D}${sysconfdir}/udev/rules.d/ | ||
install -d ${D}${sysconfdir}/init.d | ||
install -m 0755 ${S}/resize-disk ${D}${sysconfdir}/init.d/ | ||
|
||
install -d ${D}${systemd_unitdir}/system | ||
install -m 0644 ${S}/resize-helper.service ${D}${systemd_unitdir}/system | ||
|
||
install -d ${D}${sbindir} | ||
install -m 0755 ${S}/resize-helper ${D}${sbindir} | ||
} | ||
|
||
INITSCRIPT_NAME = "resize-disk" | ||
INITSCRIPT_PARAMS = "start 99 5 2 . stop 20 0 1 6 ." | ||
|
||
SYSTEMD_SERVICE:${PN} = "resize-helper.service" | ||
RDEPENDS:${PN} += "e2fsprogs-resize2fs gptfdisk parted util-linux udev" |