mirror of
https://git.yoctoproject.org/poky
synced 2026-09-20 03:49:32 +02:00
dpkg, opkg, rpm-postinst: fix overwriting the run-postinstall script
If multiple package managers are installed in the image, they will overwrite each other's run-postinsts script, resulting in postinstalls not beeing run at all at first boot. What this patch does: * checks whether opkg/dpks/rpm is actually used to install the packages and, only after, creates the run-postinsts script; * brings dpkg recipe in sync with opkg: moves the script creation from do_install to postinstall; * move creation of run-postinsts script (rpm-postinsts recipe) to the postinstall scriptlet in order to better control the creation of the script according to the package manager used; [YOCTO #4231] [YOCTO #4179] (From OE-Core rev: d7fd56df0a4954954d6d0764ae06beb869e6b99a) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
98b7d1d6a2
commit
98c1f5b1ea
@@ -39,15 +39,6 @@ POSTLOG ?= "/var/log/postinstall.log"
|
|||||||
REDIRECT_CMD = "${@base_contains('IMAGE_FEATURES', 'debug-tweaks', '>${POSTLOG} 2>&1', '', d)}"
|
REDIRECT_CMD = "${@base_contains('IMAGE_FEATURES', 'debug-tweaks', '>${POSTLOG} 2>&1', '', d)}"
|
||||||
|
|
||||||
DPKG_INIT_POSITION ?= "98"
|
DPKG_INIT_POSITION ?= "98"
|
||||||
do_install_prepend () {
|
|
||||||
install -d ${D}/${sysconfdir}/rcS.d
|
|
||||||
# this happens at S98 where our good 'ole packages script used to run
|
|
||||||
echo "#!/bin/sh
|
|
||||||
dpkg --configure -a ${REDIRECT_CMD}
|
|
||||||
rm -f ${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts
|
|
||||||
" > ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts
|
|
||||||
chmod 0755 ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts
|
|
||||||
}
|
|
||||||
|
|
||||||
do_install_append () {
|
do_install_append () {
|
||||||
if [ "${PN}" = "dpkg-native" ]; then
|
if [ "${PN}" = "dpkg-native" ]; then
|
||||||
@@ -67,6 +58,20 @@ do_install_append_class-native () {
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pkg_postinst_${PN} () {
|
||||||
|
#!/bin/sh
|
||||||
|
if [ "x$D" != "x" ] && [ -f $D/var/lib/dpkg/status ]; then
|
||||||
|
install -d ${D}/${sysconfdir}/rcS.d
|
||||||
|
|
||||||
|
# this happens at S98 where our good 'ole packages script used to run
|
||||||
|
echo "#!/bin/sh
|
||||||
|
dpkg --configure -a ${REDIRECT_CMD}
|
||||||
|
rm -f ${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts
|
||||||
|
" > ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts
|
||||||
|
chmod 0755 ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
PROV = "virtual/update-alternatives"
|
PROV = "virtual/update-alternatives"
|
||||||
PROV_class-native = ""
|
PROV_class-native = ""
|
||||||
|
|
||||||
|
|||||||
@@ -62,8 +62,9 @@ REDIRECT_CMD = "${@base_contains('IMAGE_FEATURES', 'debug-tweaks', '>${POSTLOG}
|
|||||||
|
|
||||||
pkg_postinst_${PN} () {
|
pkg_postinst_${PN} () {
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
if [ "x$D" != "x" ]; then
|
if [ "x$D" != "x" ] && [ -f $D/var/lib/opkg/status ]; then
|
||||||
install -d $D${sysconfdir}/rcS.d
|
install -d $D${sysconfdir}/rcS.d
|
||||||
|
|
||||||
# this happens at S98 where our good 'ole packages script used to run
|
# this happens at S98 where our good 'ole packages script used to run
|
||||||
echo "#!/bin/sh
|
echo "#!/bin/sh
|
||||||
opkg-cl configure ${REDIRECT_CMD}
|
opkg-cl configure ${REDIRECT_CMD}
|
||||||
|
|||||||
@@ -27,15 +27,17 @@ do_compile() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
install -d ${D}/${sysconfdir}/rcS.d
|
:
|
||||||
# Stop $i getting expanded below...
|
}
|
||||||
i=\$i
|
|
||||||
cat > ${D}${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}run-postinsts << EOF
|
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
|
pkg_postinst_${PN} () {
|
||||||
|
if [ "x$D" != "x" ] && [ -f $D/var/lib/rpm/Packages ]; then
|
||||||
|
install -d $D/${sysconfdir}/rcS.d
|
||||||
|
cat > $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}run-postinsts << "EOF"
|
||||||
|
#!/bin/sh
|
||||||
. /etc/default/rcS
|
. /etc/default/rcS
|
||||||
|
|
||||||
[ -d /etc/rpm-postinsts ] && for i in \`ls /etc/rpm-postinsts/ \`; do
|
[ -d /etc/rpm-postinsts ] && for i in `ls /etc/rpm-postinsts/`; do
|
||||||
i=/etc/rpm-postinsts/$i
|
i=/etc/rpm-postinsts/$i
|
||||||
echo "Running postinst $i..."
|
echo "Running postinst $i..."
|
||||||
if [ -f $i ] && $i ${REDIRECT_CMD}; then
|
if [ -f $i ] && $i ${REDIRECT_CMD}; then
|
||||||
@@ -46,5 +48,8 @@ do_install() {
|
|||||||
done
|
done
|
||||||
rm -f ${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}run-postinsts 2>/dev/null
|
rm -f ${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}run-postinsts 2>/dev/null
|
||||||
EOF
|
EOF
|
||||||
chmod 0755 ${D}${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}run-postinsts
|
chmod 0755 $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}run-postinsts
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ALLOW_EMPTY_${PN} = "1"
|
||||||
|
|||||||
Reference in New Issue
Block a user