Files
poky/meta-selftest/recipes-test/bbclasses/systemd-and-sysvinit.bb
Richard Purdie c2da016918 meta/meta-selftest: Fix variable assignment whitespace
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>
2025-02-01 13:42:34 +00:00

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"