From: Nitin A Kamble Date: Tue, 29 Mar 2011 17:29:40 +0000 (-0700) Subject: image.bbclass: make execution ldconfig verbose X-Git-Tag: 2011-1~1858 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=880b0a222fdc11ee088bcaf8c832edae23bc28a7;p=openembedded-core.git image.bbclass: make execution ldconfig verbose The failure of ldconfig was not getting logged anywhere before. Signed-off-by: Nitin A Kamble --- diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index ccc4de48e1..d693ea5984 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -98,7 +98,8 @@ fakeroot do_rootfs () { # Run ldconfig on the image to create a valid cache # (new format for cross arch compatibility) - ldconfig -r ${IMAGE_ROOTFS} -c new + echo executing: ldconfig -r ${IMAGE_ROOTFS} -c new -v + ldconfig -r ${IMAGE_ROOTFS} -c new -v # (re)create kernel modules dependencies # This part is done by kernel-module-* postinstall scripts but if image do