msmcommd: add libmsmhll as dependency and bump PR
[openembedded.git] / conf / local.conf.sample
blob857ede91191a51561f88d892481ca9e570de9a16
2 # OpenEmbedded local configuration file (sample)
4 # Please visit the Wiki at http://openembedded.org/ for more info.
7 # Be SURE to read this file in its entirety and the GettingStarted page on the
8 # wiki before proceeding.
10 # Once you have done that, remove the line at the end of this
11 # file and build away.
12
13 # WARNING: lines starting with a space (' ') will result in parse failures.
14 # Remove '# ' from commented lines to activate them.
16 # NOTE: Do NOT use $HOME in your paths, BitBake does NOT expand ~ for you.  If you
17 # must have paths relative to your homedir use ${HOME} (note the {}'s there
18 # you MUST have them for the variable expansion to be done by BitBake).  Your
19 # paths should all be absolute paths (They should all start with a / after
20 # expansion.  Stuff like starting with ${HOME} or ${TOPDIR} is ok).
22 # Use this to specify where BitBake should place the downloaded sources into
23 DL_DIR = "${HOME}/sources"
25 # Delete the line below. Then specify which .bb files to consider for
26 # your build. Typically this will be something like BBFILES = "/path/to/openembedded/recipes/*/*.bb"
27 BBFILES := "${@bb.fatal('Edit your conf/local.conf: BBFILES')}"
29 # Use the BBMASK below to instruct BitBake to _NOT_ consider some .bb files
30 # This is a regular expression, so be sure to get your parenthesis balanced.
31 # BBMASK = "/(nonworking|obsolete)/"
33 # Comment this if your host distribution does not provide the
34 # help2man tool.
35 ASSUME_PROVIDED += "help2man-native"
37 # Uncomment this if your host distribution has recent enough Linux
38 # Kernel header files.  Utilities we use to generate certain types of
39 # target filesystems need somewhat recent header files.
40 # ASSUME_PROVIDED += "linux-libc-headers-native"
42 # Uncomment this if you want to use a prebuilt toolchain. You will need to
43 # provide packages for toolchain and additional libraries yourself. You also
44 # have to set PATH in your environment to make sure BitBake finds additional binaries.
45 # ASSUME_PROVIDED += "virtual/${TARGET_PREFIX}gcc virtual/libc"
47 # Uncomment this if you are building Linux 2.4 Embedix kernels.
48 # i.e. openzaurus-sa-2.4.18 and openzaurus-pxa-2.4.18 - and don't forget
49 # to rename the binaries as instructed in the Wiki.
50 # Most users do not need this anymore thankfully!
51 # ASSUME_PROVIDED += "virtual/arm-linux-gcc-2.95"
53 # Select between multiple alternative providers, if more than one is eligible.
54 PREFERRED_PROVIDERS = "virtual/qte:qte virtual/libqpe:libqpe-opie"
55 PREFERRED_PROVIDERS += " virtual/libsdl:libsdl-x11"
56 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial"
57 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-intermediate:gcc-cross-intermediate"
58 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc:gcc-cross"
59 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross"
61 # Uncomment this to specify where BitBake should create its temporary files.
62 # Note that a full build of everything in OpenEmbedded will take GigaBytes of hard
63 # disk space, so make sure to free enough space. The default TMPDIR is
64 # <build directory>/tmp
65 # Don't use symlinks in in the path to avoid problems
66 # TMPDIR = /usr/local/projects/oetmp
68 # Uncomment this to specify a machine to build for. See the conf directory
69 # for machines currently known to OpenEmbedded. This will automatically take care
70 # of TARGET_ARCH
71 # MACHINE = "c7x0"
73 # Use this to specify the target architecture. Note that this is only
74 # needed when building for a machine not known to OpenEmbedded. Better use
75 # the MACHINE attribute (see above)
76 # TARGET_ARCH = "arm"
78 # Use this to specify the target operating system.  The default is "linux",
79 # for a normal linux system with glibc. Set this to "linux-uclibc" if you want
80 # to build a uclibc based system.
81 # Normally the DISTRO of your choosing will take care of this 
82 # TARGET_OS = "linux"
83 # TARGET_OS = "linux-uclibc"
85 # Uncomment this to select a distribution policy. See the conf directory
86 # for distributions currently known to OpenEmbedded.
87 # Although it no longer contain version number in the (file-)name
88 # openzaurus-unstable is a so called "versioned"  distro, i.e. they 
89 # explicitely select specific versions of various packages.
90 # Stay away from unversioned distros unless you really know what you are doing
91 # DISTRO = "angstrom-2008.1"
93 # Uncomment and modify the following lines if you wish to use an external
94 # binary toolchain, in this case one built by CodeSourcery.  The following
95 # example is for ARM and we set TOOLCHAIN_VENDOR to "-none" as the CodeSourcery
96 # ARM tools are arm-none-linux-gnueabi-$tool.  Other arches need different
97 # values here.  Some arches may need to override TARGET_PREFIX (ia32).
98 # This assumes that the tools are already in the users PATH.
99 # TOOLCHAIN_VENDOR = "-none"
100 # TOOLCHAIN_TYPE = "external"
101 # TOOLCHAIN_BRAND = "csl"
102 # TOOLCHAIN_PATH = "/path/to/installed/copy/of/CodeSourcery/Sourcery_G++_Lite"
104 # This example is for the Angstrom ARM toolchain, that uses cross prefix of
105 # arm-angstrom-linux-gnueabi-$tool. This assumes that the tools are already
106 # in the users PATH.
107 # TOOLCHAIN_VENDOR = "-angstrom"
108 # TOOLCHAIN_TYPE = "external"
109 # TOOLCHAIN_BRAND = "angstrom"
110 # TOOLCHAIN_PATH = "/usr/local/angstrom/arm"
112 # Uncomment this if you want to use linux-headers from the linux-libc-headers
113 # recipe as opposed to those bundled with the external (csl/angstrom) toolchain
114 # PREFERRED_PROVIDER_linux-libc-headers = "linux-libc-headers"
116 # So far, angstrom.conf sets ENABLE_BINARY_LOCALE_GENERATION
117 # to generate binary locale packages at build time using qemu-native and
118 # thereby guarantee i18n support on all devices. If your build breaks on 
119 # qemu-native consider disabling ENABLE_BINARY_LOCALE_GENERATION (note that
120 # this breaks i18n on devices with less than 128MB RAM) or installing
121 # a working third-party qemu (e.g. provided by your distribution) and
122 # adding qemu-native to ASSUME_PROVIDED. Caveat emptor, since third-party
123 # qemus lack patches needed to work with various OE targets.
124 # ENABLE_BINARY_LOCALE_GENERATION = "0"
125 # ASSUME_PROVIDED += "qemu-native"
127 # If ENABLE_BINARY_LOCALE_GENERATION is set to "1", you can limit locales
128 # generated to the list provided by GLIBC_GENERATE_LOCALES. This is huge
129 # time-savior for developmental builds. Format: list of locale.encoding pairs
130 # with spaces as separators.
131 # GLIBC_GENERATE_LOCALES = "en_US.UTF-8 en_GB.UTF-8 de_DE.UTF-8"
133 # Uncomment this to select a particular major kernel version if the MACHINE setting
134 # supports more than one major kernel version. Currently this is suported by the
135 # following MACHINE types: poodle, tosa and simpad.
136 # MACHINE_KERNEL_VERSION = "2.6"
138 # Uncomment one of these to build packages during the build process.
139 # This is done automatically if you set DISTRO (see above)
140 # INHERIT = "package_ipk"
141 # INHERIT = "package_tar"
143 # Add the required image file system types below. Valid are 
144 # jffs2, tar(.gz|bz2), cpio(.gz), cramfs, ext2(.gz), ext3(.gz), ext4(.gz|.bz2),
145 # squashfs, squashfs-lzma
146 IMAGE_FSTYPES = "jffs2 tar"
148 # Uncomment this if you want to keep the temporary rootfs
149 # directory, this can be useful during development.
150 # (Note that this rootfs is NOT usuable as NFS export.)
151 # IMAGE_KEEPROOTFS = "1"
153 # Uncomment this to enable the use of ccache when building.  Due to
154 # the nature of our builds this is only helpful in cases when one
155 # is rebuilding a recipe or set of recipes, repeatedly.
156 # CCACHE = "${@bb.which(bb.data.getVar('PATH', d, 1), 'ccache') and 'ccache '}"
158 # Uncomment this to disable the parse cache (not recommended).
159 # CACHE = ""
161 # Uncomment this if you want BitBake to emit debugging output
162 # BBDEBUG = "yes"
164 # Use DEBUG_BUILD to build packages with DEBUG_OPTIMIZATION instead of
165 # FULL_OPTIMIZATION.
167 # DEBUG_BUILD = "1"
169 # If you want to have unstripped ready-to-debug binaries, set this to "no",
170 # although for debugging you can use automatically produced -dbg packages.
171 # If you need to have completely undebuggable builds, set this to "full",
172 # by default gnu.debuglink section is left in the binaries after stripping, so
173 # this might be useful if you want to have checksum-level binary consistency
174 # across successive builds.
175 # PACKAGE_STRIP = "no"
177 # Uncomment these to build a package such that you can use gprof to profile it.
178 # NOTE: This will only work with 'linux' targets, not
179 # 'linux-uclibc', as uClibc doesn't provide the necessary
180 # object files.  Also, don't build glibc itself with these
181 # flags, or it'll fail to build.
183 # PROFILE_OPTIMIZATION = "-pg"
184 # SELECTED_OPTIMIZATION = "${PROFILE_OPTIMIZATION}"
185 # LDFLAGS =+ "-pg"
187 # Uncomment this to enable parallel make.
188 # This allows make to spawn mutliple processes to take advantage of multiple 
189 # processors. Useful on SMP machines. This may break some packages - we're
190 # in the process of marking these so let us know if you find any.
191 # PARALLEL_MAKE = "-j 4"
193 # Uncomment to run multiple bitbake threads in parallel.
194 # Bitbake can do multiple jobs in parallel: Its a good idea make use of 
195 # all available resources: e.g. to download sources while some other
196 # piece of software is compiled.
197 # BB_NUMBER_THREADS = "2"
199 # Uncomment this if you want BitBake to emit the log if a build fails.
200 BBINCLUDELOGS = "yes"
202 # Uncomment this if you want to install shared libraries directly under their SONAME,
203 # rather than installing as the full version and symlinking to the SONAME.
204 # PACKAGE_SNAP_LIB_SYMLINKS = "1"
206 # EDIT THIS FILE and then remove the line below before using!
207 REMOVE_THIS_LINE:="${@bb.fatal('Read the comments in your conf/local.conf')}"