summaryrefslogtreecommitdiffstats
path: root/meta/conf/local.conf.sample
diff options
context:
space:
mode:
Diffstat (limited to 'meta/conf/local.conf.sample')
-rw-r--r--meta/conf/local.conf.sample12
1 files changed, 11 insertions, 1 deletions
diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample
index d9f7098f0c..d61aaebdd0 100644
--- a/meta/conf/local.conf.sample
+++ b/meta/conf/local.conf.sample
@@ -73,10 +73,20 @@ EXTRA_IMAGE_FEATURES_mx31ads = "tools-testapps debug-tweaks"
73#PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk" 73#PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk"
74PACKAGE_CLASSES ?= "package_rpm package_ipk" 74PACKAGE_CLASSES ?= "package_rpm package_ipk"
75 75
76# mklibs library size optimization is more useful to smaller images,
77# and less useful for bigger images. Also mklibs library optimization can break the ABI compatibility, so should not be applied to the images which are tobe
78# extended or upgraded later.
79#This enabled mklibs library size optimization just for the specified image.
80#MKLIBS_OPTIMIZED_IMAGES ?= "poky-image-minimal"
81#This enable mklibs library size optimization will be for all the images.
82#MKLIBS_OPTIMIZED_IMAGES ?= "all"
83
76# A list of additional classes to use when building the system 84# A list of additional classes to use when building the system
85# include 'image-mklibs' to reduce shared library files size for an image
77# include 'image-prelink' in order to prelink the filesystem image 86# include 'image-prelink' in order to prelink the filesystem image
78# include 'image-swab' to perform host system intrusion detection 87# include 'image-swab' to perform host system intrusion detection
79USER_CLASSES ?= "image-prelink" 88# NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink
89USER_CLASSES ?= "image-mklibs image-prelink"
80 90
81# POKYMODE controls the characteristics of the generated packages/images by 91# POKYMODE controls the characteristics of the generated packages/images by
82# telling poky which type of toolchain to use. 92# telling poky which type of toolchain to use.