mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-15 19:26:23 +00:00
* BPN is not enough and PN was removed in http://git.openembedded.org/openembedded-core/commit/?id=fb359583b659cda643973fa285002aaffb729a51 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
19 lines
380 B
BlitzBasic
19 lines
380 B
BlitzBasic
DESCRIPTION = "Wrapper to enable of systemd services"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
|
|
|
|
PR = "r7"
|
|
|
|
inherit native
|
|
|
|
# BPN is not enough in this case
|
|
FILESPATH = "${FILE_DIRNAME}/${PN}/"
|
|
|
|
SRC_URI = "file://systemctl"
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${WORKDIR}/systemctl ${D}${bindir}
|
|
}
|