diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-13 22:08:37 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-13 22:09:05 +0000 |
commit | 8debfea81e69d038bd2d56314b272cb74f5582ed (patch) | |
tree | 9fb3609f588fd2906562f06f072f48d0f702af49 /meta-poky/conf | |
parent | efa08813d749c61303ebbadcf1a9f99affbdaed9 (diff) | |
download | poky-8debfea81e69d038bd2d56314b272cb74f5582ed.tar.gz |
local.conf.sample: Disable prelink by default
prelink is having issues with IFUNC symbols such as tha for fork() in
libpthread. Disable prelink for now until we can get to the bottom of
the issue.
(From meta-yocto rev: 00d52bdcc4793da88d0e2979e9a89d67be20ffb8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-poky/conf')
-rw-r--r-- | meta-poky/conf/local.conf.sample | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-poky/conf/local.conf.sample b/meta-poky/conf/local.conf.sample index 9cb6e95b3d..15dcc48b3c 100644 --- a/meta-poky/conf/local.conf.sample +++ b/meta-poky/conf/local.conf.sample | |||
@@ -152,7 +152,8 @@ EXTRA_IMAGE_FEATURES = "debug-tweaks" | |||
152 | # - 'image-swab' to perform host system intrusion detection | 152 | # - 'image-swab' to perform host system intrusion detection |
153 | # NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink | 153 | # NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink |
154 | # NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended | 154 | # NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended |
155 | USER_CLASSES ?= "buildstats image-mklibs image-prelink" | 155 | # image-prelink disabled for now due to issues with IFUNC symbol relocation |
156 | USER_CLASSES ?= "buildstats image-mklibs" | ||
156 | 157 | ||
157 | # | 158 | # |
158 | # Runtime testing of images | 159 | # Runtime testing of images |