summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-09 15:00:01 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-10 11:51:19 +0000
commitc8dee9b92dfd545852ecac8dc2adfc95ac02e957 (patch)
tree5f1b86954646a0f3bb914407994388a6a4346769 /meta/conf/bitbake.conf
parent5d3860f4a8abb8e95442b04f8b84a333af362fcd (diff)
downloadpoky-c8dee9b92dfd545852ecac8dc2adfc95ac02e957.tar.gz
Convert to use direct access to the data store (instead of bb.data.*Var*())
This is the result of running the following over the metadata: sed \ -e 's:bb.data.\(setVar([^,()]*,[^,()]*\), *\([^ )]*\) *):\2.\1):g' \ -e 's:bb.data.\(setVarFlag([^,()]*,[^,()]*,[^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^() ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` (From OE-Core rev: b22831fd63164c4db9c0b72934d7d734a6585251) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf36
1 files changed, 18 insertions, 18 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index d405b6a7ff..7e75be2d78 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -99,7 +99,7 @@ ABIEXTENSION ??= ""
99TARGET_ARCH = "${TUNE_ARCH}" 99TARGET_ARCH = "${TUNE_ARCH}"
100TARGET_OS = "linux${LIBCEXTENSION}${ABIEXTENSION}" 100TARGET_OS = "linux${LIBCEXTENSION}${ABIEXTENSION}"
101TARGET_VENDOR = "-oe" 101TARGET_VENDOR = "-oe"
102TARGET_SYS = "${TARGET_ARCH}${TARGET_VENDOR}${@['-' + bb.data.getVar('TARGET_OS', d, 1), ''][bb.data.getVar('TARGET_OS', d, 1) == ('' or 'custom')]}" 102TARGET_SYS = "${TARGET_ARCH}${TARGET_VENDOR}${@['-' + d.getVar('TARGET_OS', 1), ''][d.getVar('TARGET_OS', 1) == ('' or 'custom')]}"
103TARGET_PREFIX = "${TARGET_SYS}-" 103TARGET_PREFIX = "${TARGET_SYS}-"
104TARGET_CC_ARCH = "${TUNE_CCARGS}" 104TARGET_CC_ARCH = "${TUNE_CCARGS}"
105TARGET_LD_ARCH = "${TUNE_LDARGS}" 105TARGET_LD_ARCH = "${TUNE_LDARGS}"
@@ -108,7 +108,7 @@ TARGET_AS_ARCH = "${TUNE_ASARGS}"
108SDK_ARCH = "${BUILD_ARCH}" 108SDK_ARCH = "${BUILD_ARCH}"
109SDK_OS = "${BUILD_OS}" 109SDK_OS = "${BUILD_OS}"
110SDK_VENDOR = "-oesdk" 110SDK_VENDOR = "-oesdk"
111SDK_SYS = "${SDK_ARCH}${SDK_VENDOR}${@['-' + bb.data.getVar('SDK_OS', d, 1), ''][bb.data.getVar('SDK_OS', d, 1) == ('' or 'custom')]}" 111SDK_SYS = "${SDK_ARCH}${SDK_VENDOR}${@['-' + d.getVar('SDK_OS', 1), ''][d.getVar('SDK_OS', 1) == ('' or 'custom')]}"
112SDK_PREFIX = "${SDK_SYS}-" 112SDK_PREFIX = "${SDK_SYS}-"
113SDK_CC_ARCH = "${BUILD_CC_ARCH}" 113SDK_CC_ARCH = "${BUILD_CC_ARCH}"
114SDK_PACKAGE_ARCHS = "all any noarch ${SDK_ARCH}-nativesdk" 114SDK_PACKAGE_ARCHS = "all any noarch ${SDK_ARCH}-nativesdk"
@@ -116,7 +116,7 @@ SDK_LD_ARCH = "${BUILD_LD_ARCH}"
116SDK_AS_ARCH = "${BUILD_AS_ARCH}" 116SDK_AS_ARCH = "${BUILD_AS_ARCH}"
117 117
118PACKAGE_ARCH = "${TUNE_PKGARCH}" 118PACKAGE_ARCH = "${TUNE_PKGARCH}"
119MACHINE_ARCH = "${@[bb.data.getVar('TUNE_PKGARCH', d, 1), bb.data.getVar('MACHINE', d, 1)][bool(bb.data.getVar('MACHINE', d, 1))].replace('-', '_')}" 119MACHINE_ARCH = "${@[d.getVar('TUNE_PKGARCH', 1), d.getVar('MACHINE', 1)][bool(d.getVar('MACHINE', 1))].replace('-', '_')}"
120PACKAGE_EXTRA_ARCHS ??= "${PACKAGE_EXTRA_ARCHS_tune-${DEFAULTTUNE}}" 120PACKAGE_EXTRA_ARCHS ??= "${PACKAGE_EXTRA_ARCHS_tune-${DEFAULTTUNE}}"
121PACKAGE_ARCHS = "all any noarch ${PACKAGE_EXTRA_ARCHS} ${MACHINE_ARCH}" 121PACKAGE_ARCHS = "all any noarch ${PACKAGE_EXTRA_ARCHS} ${MACHINE_ARCH}"
122# MACHINE_ARCH shouldn't be included here as a variable dependency 122# MACHINE_ARCH shouldn't be included here as a variable dependency
@@ -167,33 +167,33 @@ ASSUME_PROVIDED = "\
167# Package default variables. 167# Package default variables.
168################################################################## 168##################################################################
169 169
170PN = "${@bb.parse.BBHandler.vars_from_file(bb.data.getVar('FILE',d),d)[0] or 'defaultpkgname'}" 170PN = "${@bb.parse.BBHandler.vars_from_file(d.getVar('FILE'),d)[0] or 'defaultpkgname'}"
171PV = "${@bb.parse.BBHandler.vars_from_file(bb.data.getVar('FILE',d),d)[1] or '1.0'}" 171PV = "${@bb.parse.BBHandler.vars_from_file(d.getVar('FILE'),d)[1] or '1.0'}"
172PR = "${@bb.parse.BBHandler.vars_from_file(bb.data.getVar('FILE',d),d)[2] or 'r0'}" 172PR = "${@bb.parse.BBHandler.vars_from_file(d.getVar('FILE'),d)[2] or 'r0'}"
173PF = "${PN}-${EXTENDPE}${PV}-${PR}" 173PF = "${PN}-${EXTENDPE}${PV}-${PR}"
174EXTENDPE = "${@['','${PE\x7d_'][bb.data.getVar('PE',d,1) > 0]}" 174EXTENDPE = "${@['','${PE\x7d_'][d.getVar('PE',1) > 0]}"
175P = "${PN}-${PV}" 175P = "${PN}-${PV}"
176 176
177EXTENDPRAUTO = "${@['.${PRAUTO\x7d',''][bb.data.getVar('PRAUTO',d,1) is None]}" 177EXTENDPRAUTO = "${@['.${PRAUTO\x7d',''][d.getVar('PRAUTO',1) is None]}"
178PRAUTOINX = "${PF}" 178PRAUTOINX = "${PF}"
179 179
180PKGV ?= "${PV}" 180PKGV ?= "${PV}"
181PKGR ?= "${PR}${EXTENDPRAUTO}" 181PKGR ?= "${PR}${EXTENDPRAUTO}"
182PKGE ?= "${@['','${PE\x7d'][bb.data.getVar('PE',d,1) > 0]}" 182PKGE ?= "${@['','${PE\x7d'][d.getVar('PE',1) > 0]}"
183EXTENDPKGEVER = "${@['','${PKGE\x7d:'][bb.data.getVar('PKGE',d,1).strip() != '']}" 183EXTENDPKGEVER = "${@['','${PKGE\x7d:'][d.getVar('PKGE',1).strip() != '']}"
184EXTENDPKGV ?= "${EXTENDPKGEVER}${PKGV}-${PKGR}" 184EXTENDPKGV ?= "${EXTENDPKGEVER}${PKGV}-${PKGR}"
185 185
186# Base package name 186# Base package name
187# Automatically derives "foo" from "foo-native", "foo-cross" or "foo-initial" 187# Automatically derives "foo" from "foo-native", "foo-cross" or "foo-initial"
188# otherwise it is the same as PN and P 188# otherwise it is the same as PN and P
189SPECIAL_PKGSUFFIX = "-native -cross -initial -intermediate -nativesdk -crosssdk -cross-canadian" 189SPECIAL_PKGSUFFIX = "-native -cross -initial -intermediate -nativesdk -crosssdk -cross-canadian"
190BPN = "${@base_prune_suffix(bb.data.getVar('PN', d, True), bb.data.getVar('SPECIAL_PKGSUFFIX', d, True).split(), d)}" 190BPN = "${@base_prune_suffix(d.getVar('PN', True), d.getVar('SPECIAL_PKGSUFFIX', True).split(), d)}"
191BP = "${BPN}-${PV}" 191BP = "${BPN}-${PV}"
192 192
193# 193#
194# network based PR service 194# network based PR service
195# 195#
196USE_PR_SERV = "${@[1,0][(bb.data.getVar('PRSERV_HOST',d,1) is None) or (bb.data.getVar('PRSERV_PORT',d,1) is None)]}" 196USE_PR_SERV = "${@[1,0][(d.getVar('PRSERV_HOST',1) is None) or (d.getVar('PRSERV_PORT',1) is None)]}"
197 197
198# Package info. 198# Package info.
199 199
@@ -288,7 +288,7 @@ DOTDEBUG-dbg = "${bindir}/.debug ${sbindir}/.debug ${libexecdir}/.debug ${libdir
288 288
289DEBUGFILEDIRECTORY-dbg = "/usr/lib/debug /usr/src/debug" 289DEBUGFILEDIRECTORY-dbg = "/usr/lib/debug /usr/src/debug"
290 290
291FILES_${PN}-dbg = "${@bb.data.getVar(['DOTDEBUG-dbg', 'DEBUGFILEDIRECTORY-dbg'][bb.data.getVar('PACKAGE_DEBUG_SPLIT_STYLE', d, 1) == 'debug-file-directory'], d, 1)}" 291FILES_${PN}-dbg = "${@bb.data.getVar(['DOTDEBUG-dbg', 'DEBUGFILEDIRECTORY-dbg'][d.getVar('PACKAGE_DEBUG_SPLIT_STYLE', 1) == 'debug-file-directory'], d, 1)}"
292 292
293SECTION_${PN}-dbg = "devel" 293SECTION_${PN}-dbg = "devel"
294ALLOW_EMPTY_${PN}-dbg = "1" 294ALLOW_EMPTY_${PN}-dbg = "1"
@@ -298,17 +298,17 @@ FILES_${PN}-locale = "${datadir}/locale"
298 298
299# File manifest 299# File manifest
300 300
301FILE_DIRNAME = "${@os.path.dirname(bb.data.getVar('FILE', d))}" 301FILE_DIRNAME = "${@os.path.dirname(d.getVar('FILE'))}"
302# FILESPATH is set in base.bbclass 302# FILESPATH is set in base.bbclass
303#FILESPATH = "${FILE_DIRNAME}/${PF}:${FILE_DIRNAME}/${P}:${FILE_DIRNAME}/${PN}:${FILE_DIRNAME}/${BP}:${FILE_DIRNAME}/${BPN}:${FILE_DIRNAME}/files:${FILE_DIRNAME}" 303#FILESPATH = "${FILE_DIRNAME}/${PF}:${FILE_DIRNAME}/${P}:${FILE_DIRNAME}/${PN}:${FILE_DIRNAME}/${BP}:${FILE_DIRNAME}/${BPN}:${FILE_DIRNAME}/files:${FILE_DIRNAME}"
304FILESDIR = "${@bb.which(bb.data.getVar('FILESPATH', d, 1), '.')}" 304FILESDIR = "${@bb.which(d.getVar('FILESPATH', 1), '.')}"
305 305
306################################################################## 306##################################################################
307# General work and output directories for the build system. 307# General work and output directories for the build system.
308################################################################## 308##################################################################
309 309
310TMPDIR ?= "${TOPDIR}/tmp" 310TMPDIR ?= "${TOPDIR}/tmp"
311CACHE = "${TMPDIR}/cache${@['', '/' + str(bb.data.getVar('MACHINE', d, 1))][bool(bb.data.getVar('MACHINE', d, 1))]}${@['', '/' + str(bb.data.getVar('SDKMACHINE', d, 1))][bool(bb.data.getVar('SDKMACHINE', d, 1))]}" 311CACHE = "${TMPDIR}/cache${@['', '/' + str(d.getVar('MACHINE', 1))][bool(d.getVar('MACHINE', 1))]}${@['', '/' + str(d.getVar('SDKMACHINE', 1))][bool(d.getVar('SDKMACHINE', 1))]}"
312# The persistent cache should be shared by all builds 312# The persistent cache should be shared by all builds
313PERSISTENT_DIR = "${TMPDIR}/cache" 313PERSISTENT_DIR = "${TMPDIR}/cache"
314LOG_DIR = "${TMPDIR}/log" 314LOG_DIR = "${TMPDIR}/log"
@@ -403,7 +403,7 @@ export PATH
403# Build utility info. 403# Build utility info.
404################################################################## 404##################################################################
405 405
406CCACHE = "${@bb.which(bb.data.getVar('PATH', d, 1), 'ccache') and 'ccache '}" 406CCACHE = "${@bb.which(d.getVar('PATH', 1), 'ccache') and 'ccache '}"
407TOOLCHAIN_OPTIONS = " --sysroot=${STAGING_DIR_TARGET}" 407TOOLCHAIN_OPTIONS = " --sysroot=${STAGING_DIR_TARGET}"
408 408
409export CCACHE_DIR = "${TMPDIR}/ccache/${MULTIMACH_HOST_SYS}/${PN}" 409export CCACHE_DIR = "${TMPDIR}/ccache/${MULTIMACH_HOST_SYS}/${PN}"
@@ -505,7 +505,7 @@ DEBUG_FLAGS ?= "-g -feliminate-unused-debug-types"
505# Disabled until the option works properly -feliminate-dwarf2-dups 505# Disabled until the option works properly -feliminate-dwarf2-dups
506FULL_OPTIMIZATION = "-O2 -pipe ${DEBUG_FLAGS}" 506FULL_OPTIMIZATION = "-O2 -pipe ${DEBUG_FLAGS}"
507DEBUG_OPTIMIZATION = "-O -fno-omit-frame-pointer ${DEBUG_FLAGS} -pipe" 507DEBUG_OPTIMIZATION = "-O -fno-omit-frame-pointer ${DEBUG_FLAGS} -pipe"
508SELECTED_OPTIMIZATION = "${@bb.data.getVar(['FULL_OPTIMIZATION', 'DEBUG_OPTIMIZATION'][bb.data.getVar('DEBUG_BUILD', d, 1) == '1'], d, 1)}" 508SELECTED_OPTIMIZATION = "${@bb.data.getVar(['FULL_OPTIMIZATION', 'DEBUG_OPTIMIZATION'][d.getVar('DEBUG_BUILD', 1) == '1'], d, 1)}"
509BUILD_OPTIMIZATION = "-O2 -pipe" 509BUILD_OPTIMIZATION = "-O2 -pipe"
510 510
511################################################################## 511##################################################################