diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-05-17 22:18:48 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-05-18 23:53:47 +0100 |
commit | 31607360753c987e804a7ed1d0289e46c08a0f23 (patch) | |
tree | 04c438c6969af8d073fe01ad048a1bfdcee99a1a /meta-poky | |
parent | 2f12a20935acec5218e38efc1a97c686c06f31ee (diff) | |
download | poky-31607360753c987e804a7ed1d0289e46c08a0f23.tar.gz |
local.conf: Drop support for mklibsuninative-3.2
This is not enabled or tested by default, and has never been
ported to python 3 upstream[1], which means it doesn't work at all
with plain poky. If you need it, please put it in a separate layer
and/or modernize to work with py3.
https://salsa.debian.org/installer-team/mklibs/-/blob/master/src/mklibs
(From meta-yocto rev: c8c8f284eb2abe7e1352850a885454487cc01986)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-poky')
-rw-r--r-- | meta-poky/conf/local.conf.sample | 5 | ||||
-rw-r--r-- | meta-poky/conf/local.conf.sample.extended | 9 |
2 files changed, 1 insertions, 13 deletions
diff --git a/meta-poky/conf/local.conf.sample b/meta-poky/conf/local.conf.sample index c27766e901..fb14379d28 100644 --- a/meta-poky/conf/local.conf.sample +++ b/meta-poky/conf/local.conf.sample | |||
@@ -148,11 +148,8 @@ EXTRA_IMAGE_FEATURES ?= "debug-tweaks" | |||
148 | # enable extra features. Some available options which can be included in this variable | 148 | # enable extra features. Some available options which can be included in this variable |
149 | # are: | 149 | # are: |
150 | # - 'buildstats' collect build statistics | 150 | # - 'buildstats' collect build statistics |
151 | # - 'image-mklibs' to reduce shared library files size for an image | ||
152 | # - 'image-prelink' in order to prelink the filesystem image | 151 | # - 'image-prelink' in order to prelink the filesystem image |
153 | # NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink | 152 | USER_CLASSES ?= "buildstats image-prelink" |
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" | ||
156 | 153 | ||
157 | # | 154 | # |
158 | # Runtime testing of images | 155 | # Runtime testing of images |
diff --git a/meta-poky/conf/local.conf.sample.extended b/meta-poky/conf/local.conf.sample.extended index c241caa869..a670c74001 100644 --- a/meta-poky/conf/local.conf.sample.extended +++ b/meta-poky/conf/local.conf.sample.extended | |||
@@ -119,15 +119,6 @@ DISTRO_FEATURES_remove = "x11" | |||
119 | # | 119 | # |
120 | # TCMODE ?= "external-sourcery" | 120 | # TCMODE ?= "external-sourcery" |
121 | 121 | ||
122 | # mklibs library size optimization is more useful to smaller images, | ||
123 | # and less useful for bigger images. Also mklibs library optimization | ||
124 | # can break the ABI compatibility, so should not be applied to the | ||
125 | # images which are to be extended or upgraded later. | ||
126 | #This enabled mklibs library size optimization just for the specified image. | ||
127 | #MKLIBS_OPTIMIZED_IMAGES ?= "core-image-minimal" | ||
128 | #This enable mklibs library size optimization will be for all the images. | ||
129 | #MKLIBS_OPTIMIZED_IMAGES ?= "all" | ||
130 | |||
131 | # This value is currently used by pseudo to determine if the recipe should | 122 | # This value is currently used by pseudo to determine if the recipe should |
132 | # build both the 32-bit and 64-bit wrapper libraries on a 64-bit build system. | 123 | # build both the 32-bit and 64-bit wrapper libraries on a 64-bit build system. |
133 | # | 124 | # |