diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2011-03-29 10:29:40 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-04 23:56:29 +0100 |
commit | d0adbfd6d92ffaca62677bc315748430dfa46abc (patch) | |
tree | e78b691240739f00c0258c4062f8c915c5f393ac /meta/classes/image.bbclass | |
parent | 76185eb29a26f73cd445ae15523fe8d826a82b8e (diff) | |
download | poky-d0adbfd6d92ffaca62677bc315748430dfa46abc.tar.gz |
image.bbclass: make execution ldconfig verbose
The failure of ldconfig was not getting logged anywhere before.
(From OE-Core rev: 880b0a222fdc11ee088bcaf8c832edae23bc28a7)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
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 () { | |||
98 | 98 | ||
99 | # Run ldconfig on the image to create a valid cache | 99 | # Run ldconfig on the image to create a valid cache |
100 | # (new format for cross arch compatibility) | 100 | # (new format for cross arch compatibility) |
101 | ldconfig -r ${IMAGE_ROOTFS} -c new | 101 | echo executing: ldconfig -r ${IMAGE_ROOTFS} -c new -v |
102 | ldconfig -r ${IMAGE_ROOTFS} -c new -v | ||
102 | 103 | ||
103 | # (re)create kernel modules dependencies | 104 | # (re)create kernel modules dependencies |
104 | # This part is done by kernel-module-* postinstall scripts but if image do | 105 | # This part is done by kernel-module-* postinstall scripts but if image do |