From: Hongxu Jia Date: Mon, 22 Jul 2013 05:23:44 +0000 (+0800) Subject: nss:fix postinst failed at rootfs time X-Git-Tag: 2015-4~5757 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=64e87fc6e99bc1d4807034166735034b1f92bad8;p=openembedded-core.git nss:fix postinst failed at rootfs time Create checksum file at rootfs time to support read-only rootfs. [YOCTO #4879] Signed-off-by: Hongxu Jia Signed-off-by: Saul Wold --- diff --git a/meta/recipes-support/nss/nss.inc b/meta/recipes-support/nss/nss.inc index e2f3891ba7..11f1b7f849 100644 --- a/meta/recipes-support/nss/nss.inc +++ b/meta/recipes-support/nss/nss.inc @@ -163,7 +163,13 @@ do_install_append_class-target() { pkg_postinst_${PN} () { if [ -n "$D" ]; then - exit 1 + for I in $D/${libdir}/lib*.chk; do + DN=`dirname $I` + BN=`basename $I .chk` + FN=$DN/$BN.so + shlibsign -i $FN + done + exit 0 fi signlibs.sh }