summaryrefslogtreecommitdiffstats
path: root/openembedded/conf/local.conf.sample
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-03-23 22:30:35 +0000
committerRichard Purdie <richard@openedhand.com>2006-03-23 22:30:35 +0000
commitb3f42b759915ee078b192c43b37a86a219d15ebf (patch)
tree4378dddb69c532781870fc683f24a498e7fb52d3 /openembedded/conf/local.conf.sample
parentf7f54600f1ce3763705c6c6337bea052f77c5e33 (diff)
downloadpoky-b3f42b759915ee078b192c43b37a86a219d15ebf.tar.gz
Sync conf files with OE - includes adding zaurusd to images and fixing PCMCIA_MANAGER handling
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@327 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/conf/local.conf.sample')
-rw-r--r--openembedded/conf/local.conf.sample130
1 files changed, 0 insertions, 130 deletions
diff --git a/openembedded/conf/local.conf.sample b/openembedded/conf/local.conf.sample
deleted file mode 100644
index 70abc98921..0000000000
--- a/openembedded/conf/local.conf.sample
+++ /dev/null
@@ -1,130 +0,0 @@
1# XXXX NOTE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
2#
3# This file is not used, see build/conf/local.conf instead
4#
5# XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
6
7#
8# OpenEmbedded local configuration file (sample)
9#
10# Please visit the Wiki at http://openembedded.org/ for more info.
11#
12#
13# Be SURE to read this file in its entirety and the GettingStarted page on the
14# wiki before proceeding.
15#
16# Once you have done that, remove the line at the end of this
17# file and build away.
18#
19# WARNING: lines starting with a space (' ') will result in parse failures.
20# Remove '# ' from commented lines to activate them.
21#
22# NOTE: Do NOT use $HOME in your paths, BitBake does NOT expand ~ for you. If you
23# must have paths relative to your homedir use ${HOME} (note the {}'s there
24# you MUST have them for the variable expansion to be done by BitBake). Your
25# paths should all be absolute paths (They should all start with a / after
26# expansion. Stuff like starting with ${HOME} or ${TOPDIR} is ok).
27
28# Use this to specify where BitBake should place the downloaded sources into
29DL_DIR = "${HOME}/sources"
30
31# Delete the line below. Then specify which .bb files to consider for
32# your build. Typically this will be something like BBFILES = "/path/to/openembedded/packages/*/*.bb"
33BBFILES := "${@bb.fatal('Edit your conf/local.conf: BBFILES')}"
34
35# Use the BBMASK below to instruct BitBake to _NOT_ consider some .bb files
36# This is a regulary expression, so be sure to get your parenthesis balanced.
37BBMASK = ""
38
39# Uncomment this if you want to use a prebuilt toolchain. You will need to
40# provide packages for toolchain and additional libraries yourself. You also
41# have to set PATH in your environment to make sure BitBake finds additional binaries.
42# Note: You will definitely need to say:
43# ASSUME_PROVIDED += "virtual/arm-linux-gcc-2.95"
44# to build any of two Linux 2.4 Embedix kernels,
45# i.e. openzaurus-sa-2.4.18 and openzaurus-pxa-2.4.18 - and don't forget
46# to rename the binaries as instructed in the Wiki.
47# ASSUME_PROVIDED += "virtual/${TARGET_PREFIX}gcc virtual/libc"
48
49# Select between multiple alternative providers, if more than one is eligible.
50PREFERRED_PROVIDERS = "virtual/qte:qte virtual/libqpe:libqpe-opie"
51PREFERRED_PROVIDERS += " virtual/libsdl:libsdl-qpe"
52PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial"
53PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc:gcc-cross"
54PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross"
55
56# Uncomment this to specify where BitBake should create its temporary files.
57# Note that a full build of everything in OpenEmbedded will take GigaBytes of hard
58# disk space, so make sure to free enough space. The default TMPDIR is
59# <build directory>/tmp
60# Don't use symlinks in in the path to avoid problems
61# TMPDIR = /usr/local/projects/oetmp
62
63# Uncomment this to specify a machine to build for. See the conf directory
64# for machines currently known to OpenEmbedded.
65# MACHINE = "collie"
66
67# Use this to specify the target architecture. Note that this is only
68# needed when building for a machine not known to OpenEmbedded. Better use
69# the MACHINE attribute (see above)
70# TARGET_ARCH = "arm"
71
72# Use this to specify the target operating system. The default is "linux",
73# for a normal linux system with glibc. Set this to "linux-uclibc" if you want
74# to build a uclibc based system.
75# TARGET_OS = "linux"
76# TARGET_OS = "linux-uclibc"
77
78# Uncomment this to select a distribution policy. See the conf directory
79# for distributions currently known to OpenEmbedded.
80# Stay away from unversioned distros unless you really know what you are doing
81# DISTRO = "familiar-unstable"
82
83# Uncomment this to select a particular kernel version if supported by
84# your MACHINE setting. Currently only supported on Zaurus Clamshells.
85# KERNEL_VERSION = "2.6"
86
87# Uncomment one of these to build packages during the build process.
88# This is done automatically if you set DISTRO (see above)
89# INHERIT = "package_ipk"
90# INHERIT = "package_tar"
91
92# Add the required image file system types below. Valid are jffs2, tar, cramfs and ext2
93IMAGE_FSTYPES = "jffs2 tar"
94
95# Uncomment this to disable the parse cache (not recommended).
96# CACHE = ""
97
98# Uncomment this if you want BitBake to emit debugging output
99# BBDEBUG = "yes"
100
101# Uncomment these two if you want BitBake to build images useful for debugging.
102# Note that INHIBIT_PACKAGE_STRIP needs a package format to be defined
103# DEBUG_BUILD = "1"
104# INHIBIT_PACKAGE_STRIP = "1"
105
106# Uncomment these to build a package such that you can use gprof to profile it.
107# NOTE: This will only work with 'linux' targets, not
108# 'linux-uclibc', as uClibc doesn't provide the necessary
109# object files. Also, don't build glibc itself with these
110# flags, or it'll fail to build.
111#
112# PROFILE_OPTIMIZATION = "-pg"
113# SELECTED_OPTIMIZATION = "${PROFILE_OPTIMIZATION}"
114# LDFLAGS =+ "-pg"
115
116# Uncomment this to enable parallel make.
117# This allows make to spawn mutliple processes to take advantage of multiple
118# processors. Useful on SMP machines. This may break some packages - we're
119# in the process of marking these so let us know if you find any.
120# PARALLEL_MAKE = "-j 4"
121
122# Uncomment this if you want BitBake to emit the log if a build fails.
123BBINCLUDELOGS = "yes"
124
125# Specifies a location to search for pre-generated tarballs when fetching
126# a cvs:// URI. Outcomment this, if you always want to pull directly from CVS.
127CVS_TARBALL_STASH = "http://www.oesources.org/source/current/"
128
129# EDIT THIS FILE and then remove the line below before using!
130REMOVE_THIS_LINE:="${@oe.fatal('Read the comments in your conf/local.conf')}"