merge of 39e43f0486c5d18bb8979c53687235b3f04855de
[vuplus_openembedded] / conf / local.conf.sample
1 #
2 # OpenEmbedded local configuration file (sample)
3 #
4 # Please visit the Wiki at http://openembedded.org/ for more info.
5 #
6 #
7 # Be SURE to read this file in its entirety and the GettingStarted page on the
8 # wiki before proceeding.
9 #
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.
15 #
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).
21
22 # Use this to specify where BitBake should place the downloaded sources into
23 DL_DIR = "${HOME}/sources"
24
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/packages/*/*.bb"
27 BBFILES := "${@bb.fatal('Edit your conf/local.conf: BBFILES')}"
28
29 # Use the BBMASK below to instruct BitBake to _NOT_ consider some .bb files
30 # This is a regulary expression, so be sure to get your parenthesis balanced.
31 BBMASK = ""
32
33 # Uncomment this if you want to use a prebuilt toolchain. You will need to
34 # provide packages for toolchain and additional libraries yourself. You also
35 # have to set PATH in your environment to make sure BitBake finds additional binaries.
36 # Note: You will definitely need to say:
37 #     ASSUME_PROVIDED += "virtual/arm-linux-gcc-2.95"
38 # to build any of two Linux 2.4 Embedix kernels,
39 # i.e. openzaurus-sa-2.4.18 and openzaurus-pxa-2.4.18 - and don't forget
40 # to rename the binaries as instructed in the Wiki.
41 # ASSUME_PROVIDED += "virtual/${TARGET_PREFIX}gcc virtual/libc"
42
43 # Select between multiple alternative providers, if more than one is eligible.
44 PREFERRED_PROVIDERS = "virtual/qte:qte virtual/libqpe:libqpe-opie"
45 PREFERRED_PROVIDERS += " virtual/libsdl:libsdl-qpe"
46 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial"
47 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc:gcc-cross"
48 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross"
49
50 # Uncomment this to specify where BitBake should create its temporary files.
51 # Note that a full build of everything in OpenEmbedded will take GigaBytes of hard
52 # disk space, so make sure to free enough space. The default TMPDIR is
53 # <build directory>/tmp
54 # Don't use symlinks in in the path to avoid problems
55 # TMPDIR = /usr/local/projects/oetmp
56
57 # Uncomment this to specify a machine to build for. See the conf directory
58 # for machines currently known to OpenEmbedded.
59 # MACHINE = "collie"
60
61 # Use this to specify the target architecture. Note that this is only
62 # needed when building for a machine not known to OpenEmbedded. Better use
63 # the MACHINE attribute (see above)
64 # TARGET_ARCH = "arm"
65
66 # Use this to specify the target operating system.  The default is "linux",
67 # for a normal linux system with glibc. Set this to "linux-uclibc" if you want
68 # to build a uclibc based system.
69 # TARGET_OS = "linux"
70 # TARGET_OS = "linux-uclibc"
71
72 # Uncomment this to select a distribution policy. See the conf directory
73 # for distributions currently known to OpenEmbedded.
74 # Although they no longer contain version number in the (file-)name
75 # familiar-unstable and openzaurus-unstable are so called "versioned"
76 # distros, i.e. they explicitely select specific versions of various
77 # packages.
78 # Stay away from unversioned distros unless you really know what you are doing
79 # DISTRO = "familiar-unstable"
80
81 # So far, angstrom.conf and familiar.conf set ENABLE_BINARY_LOCALE_GENERATION
82 # to generate binary locale packages at build time using qemu-native and
83 # thereby guarantee i18n support on all devices. If your build breaks on 
84 # qemu-native consider disabling ENABLE_BINARY_LOCALE_GENERATION (note that
85 # this breaks i18n on devices with less than 128MB RAM) or installing
86 # a working third-party qemu (e.g. provided by your distribution) and
87 # adding qemu-native to ASSUME_PROVIDED
88 # ENABLE_BINARY_LOCALE_GENERATION = "0"
89 # ASSUME_PROVIDED += "qemu-native"
90
91 # Uncomment this to select a particular kernel version if supported by 
92 # your MACHINE setting. Currently only supported by poodle and tosa.
93 # ZKERNEL_VERSION = "2.6"
94
95 # Uncomment one of these to build packages during the build process.
96 # This is done automatically if you set DISTRO (see above)
97 # INHERIT = "package_ipk"
98 # INHERIT = "package_tar"
99
100 # Add the required image file system types below. Valid are jffs2, tar, cramfs and ext2
101 IMAGE_FSTYPES = "jffs2 tar"
102
103 # Uncomment this to disable the parse cache (not recommended).
104 # CACHE = ""
105
106 # Uncomment this if you want BitBake to emit debugging output
107 # BBDEBUG = "yes"
108
109 # Uncomment these two if you want BitBake to build images useful for debugging. 
110 # Note that INHIBIT_PACKAGE_STRIP needs a package format to be defined
111 # DEBUG_BUILD = "1"
112 # INHIBIT_PACKAGE_STRIP = "1"
113
114 # Uncomment these to build a package such that you can use gprof to profile it.
115 # NOTE: This will only work with 'linux' targets, not
116 # 'linux-uclibc', as uClibc doesn't provide the necessary
117 # object files.  Also, don't build glibc itself with these
118 # flags, or it'll fail to build.
119 #
120 # PROFILE_OPTIMIZATION = "-pg"
121 # SELECTED_OPTIMIZATION = "${PROFILE_OPTIMIZATION}"
122 # LDFLAGS =+ "-pg"
123
124 # Uncomment this to enable parallel make.
125 # This allows make to spawn mutliple processes to take advantage of multiple 
126 # processors. Useful on SMP machines. This may break some packages - we're
127 # in the process of marking these so let us know if you find any.
128 # PARALLEL_MAKE = "-j 4"
129
130 # Uncomment this if you want BitBake to emit the log if a build fails.
131 BBINCLUDELOGS = "yes"
132
133 # Specifies a location to search for pre-generated tarballs when fetching
134 # a cvs:// URI. Outcomment this, if you always want to pull directly from CVS.
135 CVS_TARBALL_STASH = "http://www.oesources.org/source/current/"
136
137 # EDIT THIS FILE and then remove the line below before using!
138 REMOVE_THIS_LINE:="${@oe.fatal('Read the comments in your conf/local.conf')}"