diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2013-04-22 11:01:25 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-22 14:37:17 +0100 |
commit | 82dae98d0eb771c05e57635f0f8763b118d8177e (patch) | |
tree | 9d6d2c0923284d15aa06ce358309c77bc750de2f /meta/classes | |
parent | b396138ee081c8f5dddbaab0e374787ba2e31029 (diff) | |
download | openembedded-core-82dae98d0eb771c05e57635f0f8763b118d8177e.tar.gz openembedded-core-82dae98d0eb771c05e57635f0f8763b118d8177e.tar.bz2 openembedded-core-82dae98d0eb771c05e57635f0f8763b118d8177e.zip |
image.bbclass: change the logic when intercepts fail
Due to some issues with postinstalls that register hooks, we changed the
logic a bit. Now, all postinstalls that register hooks will return
successfully and only after, if hooks fail, mark the package as unpacked.
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/image.bbclass | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 4e9c29cb8b..ffb372aebb 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -187,21 +187,32 @@ run_intercept_scriptlets () { [ "$script" = "*" ] && break [ "$script" = "postinst_intercept" ] || [ ! -x "$script" ] && continue echo "> Executing $script" - ./$script || { echo "WARNING: intercept script \"$script\" failed, falling back to running postinstalls at first boot" && continue; }; + ./$script && continue + echo "WARNING: intercept script \"$script\" failed, falling back to running postinstalls at first boot" # - # If we got here, than the intercept was successful. Next, we must - # mark the postinstalls as "installed". For rpm is a little bit - # different, we just have to delete the saved postinstalls from + # If we got here, than the intercept has failed. Next, we must + # mark the postinstalls as "unpacked". For rpm is a little bit + # different, we just have to save the package postinstalls in # /etc/rpm-postinsts # pkgs="$(cat ./$script|grep "^##PKGS"|cut -d':' -f2)" || continue case ${IMAGE_PKGTYPE} in "rpm") - for pi in ${IMAGE_ROOTFS}${sysconfdir}/rpm-postinsts/*; do - pkg_name="$(cat $pi|sed -n -e "s/^.*postinst_intercept $script \([^ ]*\).*/\1/p")" - if [ -n "$pkg_name" -a -n "$(echo "$pkgs"|grep " $pkg_name ")" ]; then - rm $pi - fi + [ -d ${IMAGE_ROOTFS}${sysconfdir}/rpm-postinsts/ ] || mkdir ${IMAGE_ROOTFS}${sysconfdir}/rpm-postinsts/ + v_expr=$(echo ${MULTILIB_GLOBAL_VARIANTS}|tr ' ' '|') + for p in $pkgs; do + # remove any multilib prefix from the package name (RPM + # does not use it like this) + new_p=$(echo $p | sed -r "s/^($v_expr)-//") + + # extract the postinstall scriptlet from rpm package and + # save it in /etc/rpm-postinsts + echo " * postponing $new_p" + rpm -q --scripts --root=${IMAGE_ROOTFS} --dbpath=/var/lib/rpm $new_p |\ + sed -n -e '/^postinstall scriptlet (using .*):$/,/^.* scriptlet (using .*):$/ {/.*/p}' |\ + sed -e 's/postinstall scriptlet (using \(.*\)):$/#!\1/' -e '/^.* scriptlet (using .*):$/d'\ + > ${IMAGE_ROOTFS}${sysconfdir}/rpm-postinsts/$new_p + chmod +x ${IMAGE_ROOTFS}${sysconfdir}/rpm-postinsts/$new_p done # move to the next intercept script continue @@ -216,7 +227,8 @@ run_intercept_scriptlets () { # the next piece of code is run only for ipk/dpkg sed_expr="" for p in $pkgs; do - sed_expr="$sed_expr -e \"/^Package: ${p}$/,/^Status: install.* unpacked$/ {s/unpacked/installed/}\"" + echo " * postponing $p" + sed_expr="$sed_expr -e \"/^Package: ${p}$/,/^Status: install.* installed$/ {s/installed/unpacked/}\"" done eval sed -i $sed_expr $status_file done |