mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
402a081494
/tmp is required for postinst: Aug 20 16:59:33 overo S98run-postinsts[68]: * opkg_prep_intercepts: Failed to make temp dir /tmp/opkg-07xOYO/opkg-intercept-wfVgAQ: No such file or directory. Aug 20 16:59:33 overo S98run-postinsts[68]: * rm_r: Failed to open dir /tmp/opkg-07xOYO: No such file or directory. This bug left postints unfinished e.g. pango-module-* [1]. [1] http://lists.linuxtogo.org/pipermail/openembedded-devel/2012-August/041096.html Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
60 lines
1.6 KiB
BlitzBasic
60 lines
1.6 KiB
BlitzBasic
DESCRIPTION = "Units to make systemd work better with existing sysvinit scripts"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
|
|
|
|
PR = "r18"
|
|
|
|
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/
|
|
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/
|
|
|
|
install -m 0644 ${WORKDIR}/machineid.service ${D}${systemd_unitdir}/system
|
|
ln -sf ../machineid.service ${D}${systemd_unitdir}/system/sysinit.target.wants/
|
|
ln -sf ../machineid.service ${D}${systemd_unitdir}/system/basic.target.wants/
|
|
|
|
# hack to make old style sysvinit postinsts succeed
|
|
install -d ${D}${bindir}
|
|
echo "echo 1" > ${D}${bindir}/runlevel
|
|
chmod 0755 ${D}${bindir}/runlevel
|
|
}
|
|
|
|
SYSTEMD_DISABLED_SYSV_SERVICES = " \
|
|
busybox-udhcpc \
|
|
dnsmasq \
|
|
hwclock \
|
|
networking \
|
|
syslog \
|
|
syslog.busybox \
|
|
"
|
|
|
|
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"
|
|
|
|
|