diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2016-08-18 12:04:16 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-19 10:23:55 +0100 |
commit | f038f069977170e323c9c6884c69e0b9e1cf1c6f (patch) | |
tree | 8682fcf3a579c21af9d01b7f318aec87ba1c4deb /meta-poky | |
parent | 63dcfa8f1394475073f6dbb5f3f6ede284d5a305 (diff) | |
download | poky-f038f069977170e323c9c6884c69e0b9e1cf1c6f.tar.gz |
local.conf.sample: Disable ARM and PPC due to prelink test case failures
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.
(From meta-yocto rev: 85d30c28277a040420c2b2f25028ae1500da54db)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-poky')
-rw-r--r-- | meta-poky/conf/local.conf.sample | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meta-poky/conf/local.conf.sample b/meta-poky/conf/local.conf.sample index 365b6eb20c..422210ac0a 100644 --- a/meta-poky/conf/local.conf.sample +++ b/meta-poky/conf/local.conf.sample | |||
@@ -219,6 +219,15 @@ BB_DISKMON_DIRS = "\ | |||
219 | #file://.* http://someserver.tld/share/sstate/PATH;downloadfilename=PATH \n \ | 219 | #file://.* http://someserver.tld/share/sstate/PATH;downloadfilename=PATH \n \ |
220 | #file://.* file:///some/local/dir/sstate/PATH" | 220 | #file://.* file:///some/local/dir/sstate/PATH" |
221 | 221 | ||
222 | # Prelinker tests are currently failing on ARM and PPC. Prevent us from | ||
223 | # running on those architectures until the failure is explained. | ||
224 | USER_CLASSES_remove_arm = 'image-prelink' | ||
225 | USER_CLASSES_remove_armeb = 'image-prelink' | ||
226 | USER_CLASSES_remove_aarch64 = 'image-prelink' | ||
227 | USER_CLASSES_remove_aarch64eb = 'image-prelink' | ||
228 | USER_CLASSES_remove_powerpc = 'image-prelink' | ||
229 | USER_CLASSES_remove_powerpc64 = 'image-prelink' | ||
230 | |||
222 | 231 | ||
223 | # | 232 | # |
224 | # Qemu configuration | 233 | # Qemu configuration |