From: Richard Purdie Date: Fri, 11 Aug 2017 07:10:33 +0000 (+0100) Subject: image-prelink: Disable for musl images X-Git-Tag: 2017-10~670 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=5a25ed1071f0d9b7d95edcc2b5b4545f960d5f95;p=openembedded-core.git image-prelink: Disable for musl images For some reason prelink was refusing to prelink musl images but now sometimes does modify the binaries. Since musl has no support for this, such images end up broken and unable to boot. To avoid this, be explicit and only apply prelinking for libc-glibc. [YOCTO #11913] Signed-off-by: Richard Purdie --- diff --git a/meta/classes/image-prelink.bbclass b/meta/classes/image-prelink.bbclass index 4157df021a..6fcd699016 100644 --- a/meta/classes/image-prelink.bbclass +++ b/meta/classes/image-prelink.bbclass @@ -1,6 +1,6 @@ do_rootfs[depends] += "prelink-native:do_populate_sysroot" -IMAGE_PREPROCESS_COMMAND += "prelink_setup; prelink_image; " +IMAGE_PREPROCESS_COMMAND_append_libc-glibc = " prelink_setup; prelink_image; " python prelink_setup () { oe.utils.write_ld_so_conf(d)