summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-devtools/dpkg/dpkg.inc11
1 files changed, 6 insertions, 5 deletions
diff --git a/meta/recipes-devtools/dpkg/dpkg.inc b/meta/recipes-devtools/dpkg/dpkg.inc
index d773fbdc5a..619777701f 100644
--- a/meta/recipes-devtools/dpkg/dpkg.inc
+++ b/meta/recipes-devtools/dpkg/dpkg.inc
@@ -35,10 +35,6 @@ do_configure () {
35 autotools_do_configure 35 autotools_do_configure
36} 36}
37 37
38POSTLOG ?= "/var/log/postinstall.log"
39REDIRECT_CMD = "${@base_contains('IMAGE_FEATURES', 'debug-tweaks', '>${POSTLOG} 2>&1', '', d)}"
40REDIRECT_CMD[vardepsexclude] += "IMAGE_FEATURES POSTLOG"
41
42DPKG_INIT_POSITION ?= "98" 38DPKG_INIT_POSITION ?= "98"
43 39
44do_install_append () { 40do_install_append () {
@@ -67,7 +63,12 @@ if [ "x$D" != "x" ] && [ -f $D/var/lib/dpkg/status ]; then
67 63
68 # this happens at S98 where our good 'ole packages script used to run 64 # this happens at S98 where our good 'ole packages script used to run
69 echo "#!/bin/sh 65 echo "#!/bin/sh
70dpkg --configure -a ${REDIRECT_CMD} 66[ -e ${sysconfdir}/default/postinst ] && . ${sysconfdir}/default/postinst
67if [ \"\$POSTINST_LOGGING\" = \"1\" ]; then
68 dpkg --configure -a >\$LOGFILE 2>&1
69else
70 dpkg --configure -a
71fi
71rm -f ${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts 72rm -f ${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts
72" > $D${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts 73" > $D${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts
73 chmod 0755 $D${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts 74 chmod 0755 $D${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts