mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 13:13:02 +01:00
Recipes are much more readable with whitespace around the assignment operators. Fix various assignments in OE-Core to show this is definitely the preferred formatting. (From OE-Core rev: 30ea609d3357fb3de911f2f6a5e6856c151b976a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
324 B
BlitzBasic
18 lines
324 B
BlitzBasic
LICENSE = "MIT"
|
|
|
|
inherit allarch systemd update-rc.d
|
|
|
|
do_install() {
|
|
install -d ${D}${systemd_system_unitdir}
|
|
touch ${D}${systemd_system_unitdir}/${BPN}.service
|
|
|
|
install -d ${D}${INIT_D_DIR}
|
|
touch ${D}${INIT_D_DIR}/${BPN}
|
|
}
|
|
|
|
INITSCRIPT_NAME = "${BPN}"
|
|
|
|
SYSTEMD_SERVICE:${PN} = "${BPN}.service"
|
|
|
|
EXCLUDE_FROM_WORLD = "1"
|