diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/local.conf.sample | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample index 85c5e21fb5..b35db51d73 100644 --- a/meta/conf/local.conf.sample +++ b/meta/conf/local.conf.sample @@ -131,6 +131,15 @@ EXTRA_IMAGE_FEATURES ?= "debug-tweaks" # NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended USER_CLASSES ?= "buildstats image-mklibs image-prelink" +# 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 |