mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
A lot of our recipes had short one-line DESCRIPTION values and no SUMMARY value set. In this case it's much better to just set SUMMARY since DESCRIPTION is defaulted from SUMMARY anyway and then the SUMMARY is at least useful. I also took the opportunity to fix up a lot of the new SUMMARY values, making them concisely explain the function of the recipe / package where possible. (From OE-Core rev: b8feee3cf21f70ba4ec3b822d2f596d4fc02a292) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
59 lines
1.6 KiB
BlitzBasic
59 lines
1.6 KiB
BlitzBasic
SUMMARY = "Enhances systemd compatilibity with existing SysVinit scripts"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
|
|
|
|
PR = "r18"
|
|
|
|
DEPENDS = "systemd-systemctl-native"
|
|
|
|
inherit allarch
|
|
|
|
SRC_URI = "file://*.service"
|
|
|
|
do_install() {
|
|
install -d ${D}${systemd_unitdir}/system/basic.target.wants
|
|
install -d ${D}${systemd_unitdir}/system/sysinit.target.wants/
|
|
sed -i -e 's,@POSTINSTALL_INITPOSITION@,${POSTINSTALL_INITPOSITION},g' \
|
|
${WORKDIR}/run-postinsts.service
|
|
install -m 0644 ${WORKDIR}/run-postinsts.service ${D}${systemd_unitdir}/system
|
|
ln -sf ../run-postinsts.service ${D}${systemd_unitdir}/system/basic.target.wants/
|
|
ln -sf ../run-postinsts.service ${D}${systemd_unitdir}/system/sysinit.target.wants/
|
|
}
|
|
|
|
SYSTEMD_DISABLED_SYSV_SERVICES = " \
|
|
busybox-udhcpc \
|
|
dnsmasq \
|
|
hwclock \
|
|
networking \
|
|
syslog.busybox \
|
|
dbus-1 \
|
|
"
|
|
|
|
pkg_postinst_${PN} () {
|
|
cd $D${sysconfdir}/init.d
|
|
|
|
echo "Disabling the following sysv scripts: "
|
|
|
|
OPTS=""
|
|
|
|
if [ -n "$D" ]; then
|
|
OPTS="--root=$D"
|
|
fi
|
|
|
|
for i in ${SYSTEMD_DISABLED_SYSV_SERVICES} ; do
|
|
if [ \( -e $i -o $i.sh \) -a ! -e $D${sysconfdir}/systemd/system/$i.service ] ; then
|
|
echo -n "$i: " ; systemctl ${OPTS} mask $i.service
|
|
fi
|
|
done ; echo
|
|
}
|
|
|
|
FILES_${PN} = "${systemd_unitdir}/system ${bindir}"
|
|
RDPEPENDS_${PN} = "systemd"
|
|
|
|
# Define a variable to allow distros to run configure earlier.
|
|
# (for example, to enable loading of ethernet kernel modules before networking starts)
|
|
# note: modifying name or default value for POSTINSTALL_INITPOSITION requires
|
|
# changes in opkg.inc
|
|
POSTINSTALL_INITPOSITION ?= "98"
|