meta-tizen: Fix distro conf
[scm/bb/tizen-distro.git] / meta-tizen / meta-tizen-common-base / conf / local.conf.sample
1 CONF_VERSION="1"
2
3 #
4 # Machine Selection
5 #
6 # You need to select a specific machine to target the build with. There are a selection
7 # of emulated machines available which can boot and run in the QEMU emulator:
8 #
9 #MACHINE ?= "qemux86"
10 #MACHINE ?= "qemux86-64"
11 #MACHINE ?= "genericx86"
12 #
13 # This sets the default machine to be qemux86 if no other machine is selected:
14 MACHINE ??= "genericx86-64"
15
16 #
17 # Parallelism Options
18 #
19 # These two options control how much parallelism BitBake should use. The first
20 # option determines how many tasks bitbake should run in parallel:
21 #
22 #BB_NUMBER_THREADS ?= "4"
23 #
24 # Default to setting automatically based on cpu count
25 #BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
26 #
27 # The second option controls how many processes make should run in parallel when
28 # running compile tasks:
29 #
30 #PARALLEL_MAKE ?= "-j 4"
31 #
32 # Default to setting automatically based on cpu count
33 #PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}"
34 #
35 # For a quad-core machine, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would
36 # be appropriate for example.
37 #
38
39 #
40 # The following are used to control options related to debugging.
41 #
42 # Uncomment this to change the optimization to make debugging easer, at the 
43 # possible cost of performance.
44 # DEBUG_BUILD = "1"
45 #
46
47 #
48 # Disk space monitor, take action when the disk space or the amount of
49 # inode is running low, it is enabled when BB_DISKMON_DIRS is set.
50 #
51 # Set the directory for the monitor, the format is:
52 # "action,directory,minimum_space,minimum_free_inode"
53 #
54 # The "action" must be set and should be one of:
55 # ABORT: Immediately abort
56 # STOPTASKS: The new tasks can't be executed any more, will stop the build
57 #           when the running tasks have been done.
58 # WARN: show warnings (see BB_DISKMON_WARNINTERVAL for more information)
59 #
60 # The "directory" must be set, any directory is OK.
61 #
62 # Either "minimum_space" or "minimum_free_inode" (or both of them)
63 # should be set, otherwise the monitor would not be enabled,
64 # the unit can be G, M, K or none, but do NOT use GB, MB or KB
65 # (B is not needed).
66 #BB_DISKMON_DIRS = "STOPTASKS,${TMPDIR},1G,100K WARN,${SSTATE_DIR},1G,100K"
67 #
68 # Set disk space and inode interval (only works when the action is "WARN",
69 # the unit can be G, M, or K, but do NOT use the GB, MB or KB
70 # (B is not needed), the format is:
71 # "disk_space_interval,disk_inode_interval", the default value is
72 # "50M,5K" which means that it would warn when the free space is
73 # lower than the minimum space(or inode), and would repeat the warning
74 # when the disk space reduces 50M (or the amount of inode reduces 5k).
75 #BB_DISKMON_WARNINTERVAL = "50M,5K"
76 #