mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 17:26:36 +01:00
We need to prevent the init script from running via systemd because its functionality has been implemented interanlly in systemd. In a systemd system, we can add configuration files under /etc/modules-load.d/ to make things work. (From OE-Core rev: 8fc304a59bb3977146645fe2c3570a3aaa4aac39) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
762 B
BlitzBasic
31 lines
762 B
BlitzBasic
SUMMARY = "Initscript for auto-loading kernel modules on boot"
|
|
SECTION = "base"
|
|
LICENSE = "PD"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=7bf87fc37976e93ec66ad84fac58c098"
|
|
SRC_URI = "file://modutils.sh \
|
|
file://PD.patch"
|
|
PR = "r7"
|
|
|
|
INITSCRIPT_NAME = "modutils.sh"
|
|
INITSCRIPT_PARAMS = "start 05 S ."
|
|
|
|
inherit update-rc.d
|
|
|
|
do_compile () {
|
|
}
|
|
|
|
do_install () {
|
|
install -d ${D}${sysconfdir}/init.d/
|
|
install -m 0755 ${WORKDIR}/modutils.sh ${D}${sysconfdir}/init.d/
|
|
}
|
|
|
|
DEPENDS_append = " ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd-systemctl-native','',d)}"
|
|
pkg_postinst_${PN} () {
|
|
if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
|
|
if [ -n "$D" ]; then
|
|
OPTS="--root=$D"
|
|
fi
|
|
systemctl $OPTS mask modutils.service
|
|
fi
|
|
}
|