diff options
Diffstat (limited to 'meta/classes/image-prelink.bbclass')
-rw-r--r-- | meta/classes/image-prelink.bbclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/classes/image-prelink.bbclass b/meta/classes/image-prelink.bbclass index 53c4b0b112..e153f47881 100644 --- a/meta/classes/image-prelink.bbclass +++ b/meta/classes/image-prelink.bbclass | |||
@@ -6,6 +6,8 @@ python prelink_setup () { | |||
6 | oe.utils.write_ld_so_conf(d) | 6 | oe.utils.write_ld_so_conf(d) |
7 | } | 7 | } |
8 | 8 | ||
9 | inherit linuxloader | ||
10 | |||
9 | prelink_image () { | 11 | prelink_image () { |
10 | # export PSEUDO_DEBUG=4 | 12 | # export PSEUDO_DEBUG=4 |
11 | # /bin/env | /bin/grep PSEUDO | 13 | # /bin/env | /bin/grep PSEUDO |
@@ -31,8 +33,10 @@ prelink_image () { | |||
31 | fi | 33 | fi |
32 | cat ${STAGING_DIR_TARGET}${sysconfdir}/ld.so.conf >> $ldsoconf | 34 | cat ${STAGING_DIR_TARGET}${sysconfdir}/ld.so.conf >> $ldsoconf |
33 | 35 | ||
36 | dynamic_loader=$(linuxloader) | ||
37 | |||
34 | # prelink! | 38 | # prelink! |
35 | ${STAGING_DIR_NATIVE}${sbindir_native}/prelink --root ${IMAGE_ROOTFS} -amR -N -c ${sysconfdir}/prelink.conf | 39 | ${STAGING_DIR_NATIVE}${sbindir_native}/prelink --root ${IMAGE_ROOTFS} -amR -N -c ${sysconfdir}/prelink.conf --dynamic-linker $dynamic_loader |
36 | 40 | ||
37 | # Remove the prelink.conf if we had to add it. | 41 | # Remove the prelink.conf if we had to add it. |
38 | if [ "$dummy_prelink_conf" = "true" ]; then | 42 | if [ "$dummy_prelink_conf" = "true" ]; then |