diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2015-10-26 10:30:54 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-29 22:09:23 +0000 |
commit | b02c5f603783ff74ef48682f972daa7f26dbac8c (patch) | |
tree | d3fc0cb7867dd71242a51cc2e6436f5c47380f16 | |
parent | 1630dbbe7ad24e97f7cd07b0754668f9fdb2bbbf (diff) | |
download | poky-b02c5f603783ff74ef48682f972daa7f26dbac8c.tar.gz |
local.conf.sample: Disable image-prelink by default
Due to problems with the prelinker itself, we need to disable the
image-prelink by default. This will hopefully be re-enabled in the near
future.
(From meta-yocto rev: 51f83d2ee593c3936138aa50c06b0bfe9c6b9162)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta-yocto/conf/local.conf.sample | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-yocto/conf/local.conf.sample b/meta-yocto/conf/local.conf.sample index 371349d3f2..bf6dd90cc8 100644 --- a/meta-yocto/conf/local.conf.sample +++ b/meta-yocto/conf/local.conf.sample | |||
@@ -151,7 +151,9 @@ EXTRA_IMAGE_FEATURES = "debug-tweaks" | |||
151 | # - 'image-swab' to perform host system intrusion detection | 151 | # - 'image-swab' to perform host system intrusion detection |
152 | # NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink | 152 | # NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink |
153 | # NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended | 153 | # NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended |
154 | USER_CLASSES ?= "buildstats image-mklibs image-prelink" | 154 | # NOTE: image-prelink is currently broken due to problems with the prelinker. It is advised |
155 | # that you do NOT run the prelinker at this time. | ||
156 | USER_CLASSES ?= "buildstats image-mklibs" | ||
155 | 157 | ||
156 | # | 158 | # |
157 | # Runtime testing of images | 159 | # Runtime testing of images |