-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathlocal.conf
49 lines (34 loc) · 1.31 KB
/
local.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# CONF_VERSION is increased each time build/conf/ changes incompatibly
CONF_VERSION = "1"
#INHERIT += "rm_work"
# Which files do we want to parse:
BBMASK = ""
# What kind of images do we want?
IMAGE_FSTYPES_append = " tar.xz"
# Make use of SMP:
# PARALLEL_MAKE specifies how many concurrent compiler threads are spawned per bitbake process
# BB_NUMBER_THREADS specifies how many concurrent bitbake tasks will be run
PARALLEL_MAKE = "-j24"
BB_NUMBER_THREADS = "6"
DISTRO = "calaos"
# Don't generate the mirror tarball for SCM repos, the snapshot is enough
BB_GENERATE_MIRROR_TARBALLS = "0"
#PREFERRED_VERSION_linux-intel ?= "4.19.%"
# Disable build time patch resolution. This would lauch a devshell
# and wait for manual intervention. We disable it.
PATCHRESOLVE = "noop"
PACKAGE_CLASSES ?= "package_ipk"
EXTRA_IMAGE_FEATURES = "debug-tweaks tools-profile"
USER_CLASSES ?= "buildstats image-mklibs"
BB_DISKMON_DIRS = "\
STOPTASKS,${TMPDIR},1G,100K \
STOPTASKS,${DL_DIR},1G,100K \
STOPTASKS,${SSTATE_DIR},1G,100K \
ABORT,${TMPDIR},100M,1K \
ABORT,${DL_DIR},100M,1K \
ABORT,${SSTATE_DIR},100M,1K"
LICENSE_FLAGS_WHITELIST = "commercial"
#enable PR service
PRSERV_HOST = "localhost:0"
#Enable this to configure opkg to use this host as a package provider
PACKAGE_FEED_URIS = "http://192.168.0.12:8000"