summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.bc.ui/local.conf
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.yocto.bc.ui/local.conf')
-rw-r--r--plugins/org.yocto.bc.ui/local.conf125
1 files changed, 125 insertions, 0 deletions
diff --git a/plugins/org.yocto.bc.ui/local.conf b/plugins/org.yocto.bc.ui/local.conf
new file mode 100644
index 0000000..de47a9e
--- /dev/null
+++ b/plugins/org.yocto.bc.ui/local.conf
@@ -0,0 +1,125 @@
1# Where to cache the files Poky downloads
2DL_DIR ?= "${OEROOT}/sources"
3
4BBPATH += "${OEROOT}/meta-bug/*/*.bb \
5 ${OEROOT}/meta-oe/*/*.bb \
6 "
7
8# Poky has various extra metadata collections (openmoko, extras).
9# To enable these, uncomment all (or some of) the following lines:
10BBFILES = "\
11 ${OEROOT}/meta/packages/*/*.bb \
12 ${OEROOT}/meta-bug/packages/*/*.bb \
13 ${OEROOT}/meta-oe/packages/*/*.bb \
14 ${OEROOT}/meta-jalimo/packages/*/*.bb \
15 ${OEROOT}/meta-extras/packages/*/*.bb \
16 "
17BBFILE_COLLECTIONS = "normal bug"
18BBFILE_PATTERN_normal = "^${OEROOT}/meta/"
19BBFILE_PATTERN_bug = "^${OEROOT}/meta-bug/"
20BBFILE_PRIORITY_normal = "5"
21BBFILE_PRIORITY_bug = "5"
22
23
24BBMASK = ""
25
26# The machine to target
27MACHINE ?= "bug"
28# Other supported machines
29#MACHINE ?= "qemux86"
30
31DISTRO ?= "poky"
32# For bleeding edge / experimental / unstable package versions
33# DISTRO ?= "poky-bleeding"
34
35# EXTRA_IMAGE_FEATURES allows extra packages to be added to the generated images
36# (Some of these are automatically added to certain image types)
37# "dbg-pkgs" - add -dbg packages for all installed packages
38# (adds symbol information for debugging/profiling)
39# "dev-pkgs" - add -dev packages for all installed packages
40# (useful if you want to develop against libs in the image)
41# "tools-sdk" - add development tools (gcc, make, pkgconfig etc.)
42# "tools-debug" - add debugging tools (gdb, strace)
43# "tools-profile" - add profiling tools (oprofile, exmap, lttng valgrind (x86 only))
44# "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.)
45# "debug-tweaks" - make an image for suitable of development
46# e.g. ssh root access has a blank password
47# There are other application targets too, see meta/classes/poky-image.bbclass
48# and meta/packages/tasks/task-poky.bb for more details.
49
50EXTRA_IMAGE_FEATURES = "tools-debug tools-profile tools-testapps debug-tweaks"
51
52EXTRA_IMAGE_FEATURES_mx31ads = "tools-testapps debug-tweaks"
53
54# A list of packaging systems used in generated images
55# The first package type listed will be used for rootfs generation
56# include 'package_deb' for debs
57# include 'package_ipk' for ipks
58#PACKAGE_CLASSES ?= "package_deb package_ipk"
59PACKAGE_CLASSES ?= "package_ipk"
60
61# POKYMODE controls the characteristics of the generated packages/images by
62# telling poky which type of toolchain to use.
63#
64# Options include several different EABI combinations and a compatibility
65# mode for the OABI mode poky previously used.
66#
67# The default is "eabi"
68# Use "oabi" for machines with kernels < 2.6.18 on ARM for example.
69# Use "external-MODE" to use the precompiled external toolchains where MODE
70# is the type of external toolchain to use e.g. eabi.
71# POKYMODE = "external-eabi"
72
73# Uncomment this to specify where BitBake should create its temporary files.
74# Note that a full build of everything in OpenEmbedded will take GigaBytes of hard
75# disk space, so make sure to free enough space. The default TMPDIR is
76# <build directory>/tmp
77TMPDIR = "${OEROOT}/build/tmp"
78
79# Uncomment and set to allow bitbake to execute multiple tasks at once.
80# Note, This option is currently experimental - YMMV.
81# BB_NUMBER_THREADS = "1"
82# Also, make can be passed flags so it run parallel threads e.g.:
83PARALLEL_MAKE = "-j 2"
84
85# Uncomment this if you are using the Openedhand provided qemu deb - see README
86# ASSUME_PROVIDED += "qemu-native"
87
88IMAGE_LINGUAS = "en-us"
89LIMIT_BUILT_LOCALES = "en_US"
90ENABLE_BINARY_LOCALE_GENERATION = "0"
91
92# Comment this out if you don't have a 3.x gcc version available and wish
93# poky to build one for you. The 3.x gcc is required to build qemu-native.
94# ASSUME_PROVIDED += "gcc3-native"
95
96# Uncomment these two if you want BitBake to build images useful for debugging.
97# DEBUG_BUILD = "1"
98# INHIBIT_PACKAGE_STRIP = "1"
99
100# Uncomment these to build a package such that you can use gprof to profile it.
101# NOTE: This will only work with 'linux' targets, not
102# 'linux-uclibc', as uClibc doesn't provide the necessary
103# object files. Also, don't build glibc itself with these
104# flags, or it'll fail to build.
105#
106# PROFILE_OPTIMIZATION = "-pg"
107# SELECTED_OPTIMIZATION = "${PROFILE_OPTIMIZATION}"
108# LDFLAGS =+ "-pg"
109
110# Uncomment this if you want BitBake to emit debugging output
111# BBDEBUG = "yes"
112# Uncomment this if you want BitBake to emit the log if a build fails.
113BBINCLUDELOGS = "yes"
114
115# Specifies a location to search for pre-generated tarballs when fetching
116# a cvs:// URI. Uncomment this, if you not want to pull directly from CVS.
117# CVS_TARBALL_STASH = "http://folks.o-hand.com/~richard/poky/sources/"
118
119# Set this if you wish to make pkgconfig libraries from your system available
120# for native builds. Combined with extra ASSUME_PROVIDEDs this can allow
121# native builds of applications like oprofileui-native (unsupported feature).
122#EXTRA_NATIVE_PKGCONFIG_PATH = ":/usr/lib/pkgconfig"
123#ASSUME_PROVIDED += "gtk+-native libglade-native"
124
125# ENABLE_BINARY_LOCALE_GENERATION = "1"