MINI2440: Base "machine" support
[openembedded/mini2440.git] / mini2440_local_conf_example.conf
blob2565bec968557aa80e0e1c0207b3525b671bb857
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 = "/opt/build/oe/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/packages/*/*.bb"
27 # BBFILES := "${@bb.fatal('Edit your conf/local.conf: BBFILES')}"
28 BBFILES = "/opt/build/oe/openembedded/recipes/*/*.bb"
30 # Use the BBMASK below to instruct BitBake to _NOT_ consider some .bb files
31 # This is a regulary expression, so be sure to get your parenthesis balanced.
32 BBMASK = ""
34 # Uncomment this if you want to use a prebuilt toolchain. You will need to
35 # provide packages for toolchain and additional libraries yourself. You also
36 # have to set PATH in your environment to make sure BitBake finds additional binaries.
37 # ASSUME_PROVIDED += "virtual/${TARGET_PREFIX}gcc virtual/libc"
39 # Uncomment this if you're building for an arch that uses emulated locale 
40 # generation under qemu (mainly arm glibc) and have an external gcc 3.x compiler
41 # that OE recognises. This will mean the gcc-native build is skipped, speeding 
42 # builds up.
43 ASSUME_PROVIDED += "gcc3-native"
44 ASSUME_PROVIDED += "e2fsprogs-native"
45 ASSUME_PROVIDED += "git-native"
46 ASSUME_PROVIDED += "m4-native"
47 #ASSUME_PROVIDED += "bison-native"
48 ASSUME_PROVIDED += "flex-native"
49 #ASSUME_PROVIDED += "curl-native"
50 ASSUME_PROVIDED += "ncurses-native"
51 ASSUME_PROVIDED += "zlib-native"
52 ASSUME_PROVIDED += "cvs-native"
54 # Uncomment this if you are building Linux 2.4 Embedix kernels.
55 # i.e. openzaurus-sa-2.4.18 and openzaurus-pxa-2.4.18 - and don't forget
56 # to rename the binaries as instructed in the Wiki.
57 # Most users do not need this anymore thankfully!
58 # ASSUME_PROVIDED += "virtual/arm-linux-gcc-2.95"
60 # Select between multiple alternative providers, if more than one is eligible.
61 PREFERRED_PROVIDERS = "virtual/qte:qte virtual/libqpe:libqpe-opie"
62 PREFERRED_PROVIDERS += " virtual/libsdl:libsdl-x11"
63 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial"
64 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-intermediate:gcc-cross-intermediate"
65 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc:gcc-cross"
66 PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross"
68 PREFERRED_PROVIDER_opkg = opkg-nogpg
70 # Uncomment this to specify where BitBake should create its temporary files.
71 # Note that a full build of everything in OpenEmbedded will take GigaBytes of hard
72 # disk space, so make sure to free enough space. The default TMPDIR is
73 # <build directory>/tmp
74 # Don't use symlinks in in the path to avoid problems
75 # TMPDIR = /usr/local/projects/oetmp
77 # Uncomment this to specify a machine to build for. See the conf directory
78 # for machines currently known to OpenEmbedded. This will automatically take care
79 # of TARGET_ARCH
80 MACHINE = "mini2440"
81 OE_STRICT_CHECKSUMS = ""
83 # Use this to specify the target architecture. Note that this is only
84 # needed when building for a machine not known to OpenEmbedded. Better use
85 # the MACHINE attribute (see above)
86 # TARGET_ARCH = "arm"
88 # Use this to specify the target operating system.  The default is "linux",
89 # for a normal linux system with glibc. Set this to "linux-uclibc" if you want
90 # to build a uclibc based system.
91 # Normally the DISTRO of your choosing will take care of this 
92 TARGET_OS = "linux"
93 # TARGET_OS = "linux-uclibc"
95 # Uncomment this to select a distribution policy. See the conf directory
96 # for distributions currently known to OpenEmbedded.
97 # Although it no longer contain version number in the (file-)name
98 # openzaurus-unstable is a so called "versioned"  distro, i.e. they 
99 # explicitely select specific versions of various packages.
100 # Stay away from unversioned distros unless you really know what you are doing
101 DISTRO = "angstrom-2008.1"
103 # So far, angstrom.conf sets ENABLE_BINARY_LOCALE_GENERATION
104 # to generate binary locale packages at build time using qemu-native and
105 # thereby guarantee i18n support on all devices. If your build breaks on 
106 # qemu-native consider disabling ENABLE_BINARY_LOCALE_GENERATION (note that
107 # this breaks i18n on devices with less than 128MB RAM) or installing
108 # a working third-party qemu (e.g. provided by your distribution) and
109 # adding qemu-native to ASSUME_PROVIDED. Caveat emptor, since third-party
110 # qemus lack patches needed to work with various OE targets.
111 ENABLE_BINARY_LOCALE_GENERATION = "0"
112 # ASSUME_PROVIDED += "qemu-native"
114 # If ENABLE_BINARY_LOCALE_GENERATION is set to "1", you can limit locales
115 # generated to the list provided by GLIBC_GENERATE_LOCALES. This is huge
116 # time-savior for developmental builds. Format: list of locale.encoding pairs
117 # with spaces as separators.
118 GLIBC_GENERATE_LOCALES = "en_GB.UTF-8"
119 #GLIBC_GENERATE_LOCALES = ""
120 #PREFERRED_VERSION_glibc                 = "2.5"
121 #PREFERRED_VERSION_glibc-initial        = "2.5"
122 #ANGSTROMLIBC="eglibc"
123 #ANGSTROM_GCC_VERSION                   = "4.1.2"
124 DISTRO_SSH_DAEMON = "dropbear"
126 # Uncomment this to select a particular major kernel version if the MACHINE setting
127 # supports more than one major kernel version. Currently this is suported by the
128 # following MACHINE types: poodle, tosa and simpad.
129 # MACHINE_KERNEL_VERSION = "2.6"
131 # Uncomment one of these to build packages during the build process.
132 # This is done automatically if you set DISTRO (see above)
133 # INHERIT = "package_ipk"
134 # INHERIT = "package_tar"
136 # Add the required image file system types below. Valid are 
137 # jffs2, tar(.gz|bz2), cpio(.gz), cramfs, ext2(.gz), ext3(.gz)
138 # squashfs, squashfs-lzma
139 IMAGE_FSTYPES = "jffs2 ext3 tar"
141 # Uncomment this to disable the parse cache (not recommended).
142 # CACHE = ""
144 # Uncomment this if you want BitBake to emit debugging output
145 # BBDEBUG = "yes"
147 # Uncomment these two if you want BitBake to build images useful for debugging. 
148 # Note that INHIBIT_PACKAGE_STRIP needs a package format to be defined.
149 # Also note that OE now produces -dbg packages which contain debugging symbols.
150 # DEBUG_BUILD = "1"
151 # INHIBIT_PACKAGE_STRIP = "1"
153 # Uncomment these to build a package such that you can use gprof to profile it.
154 # NOTE: This will only work with 'linux' targets, not
155 # 'linux-uclibc', as uClibc doesn't provide the necessary
156 # object files.  Also, don't build glibc itself with these
157 # flags, or it'll fail to build.
159 # PROFILE_OPTIMIZATION = "-pg"
160 # SELECTED_OPTIMIZATION = "${PROFILE_OPTIMIZATION}"
161 # LDFLAGS =+ "-pg"
163 # Uncomment this to enable parallel make.
164 # This allows make to spawn mutliple processes to take advantage of multiple 
165 # processors. Useful on SMP machines. This may break some packages - we're
166 # in the process of marking these so let us know if you find any.
167 PARALLEL_MAKE = "-j4"
168 BB_NUMBER_THREADS = "4"
170 # Uncomment this if you want BitBake to emit the log if a build fails.
171 BBINCLUDELOGS = "yes"
173 # Specifies a location to search for pre-generated tarballs when fetching
174 # a cvs:// URI. Outcomment this, if you always want to pull directly from CVS.
175 #CVS_TARBALL_STASH = ""
177 # Uncomment this if you want to install shared libraries directly under their SONAME,
178 # rather than installing as the full version and symlinking to the SONAME.
179 # PACKAGE_SNAP_LIB_SYMLINKS = "1"
181 # EDIT THIS FILE and then remove the line below before using!
182 # REMOVE_THIS_LINE:="${@bb.fatal('Read the comments in your conf/local.conf')}"