Internal prelink test cases reloc8 and reloc9 are failing on both ARM and PPC systems. Disable them by removing the prelink from the IMAGE_CLASSES setting.
Signed-off-by: Mark Hatle <[email protected]> --- meta/conf/local.conf.sample | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample index 2949ffb..8879a08 100644 --- a/meta/conf/local.conf.sample +++ b/meta/conf/local.conf.sample @@ -132,6 +132,15 @@ EXTRA_IMAGE_FEATURES ?= "debug-tweaks" # image-prelink disabled for now due to issues with IFUNC symbol relocation USER_CLASSES ?= "buildstats image-mklibs" +# Prelinker tests are currently failing on ARM and PPC. Prevent us from +# running on those architectures until the failure is explained. +USER_CLASSES_remove_arm = 'image-prelink' +USER_CLASSES_remove_armeb = 'image-prelink' +USER_CLASSES_remove_aarch64 = 'image-prelink' +USER_CLASSES_remove_aarch64eb = 'image-prelink' +USER_CLASSES_remove_powerpc = 'image-prelink' +USER_CLASSES_remove_powerpc64 = 'image-prelink' + # # Runtime testing of images -- 2.5.5 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
