summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 9d1c7690bc..380da1c5bb 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -83,6 +83,8 @@ HOST_EXEEXT = ""
83 83
84TUNE_ARCH ??= "INVALID" 84TUNE_ARCH ??= "INVALID"
85TUNE_CCARGS ??= "" 85TUNE_CCARGS ??= ""
86TUNE_FEATURES ??= "${TUNE_FEATURES_tune-${DEFAULTTUNE}}"
87PACKAGE_EXTRA_ARCHS_tune-${DEFAULTTUNE} ??= "${TARGET_ARCH}"
86 88
87TARGET_ARCH = "${TUNE_ARCH}" 89TARGET_ARCH = "${TUNE_ARCH}"
88TARGET_OS = "INVALID" 90TARGET_OS = "INVALID"
@@ -100,7 +102,7 @@ SDK_CC_ARCH = "${BUILD_CC_ARCH}"
100 102
101PACKAGE_ARCH = "${TUNE_PKGARCH}" 103PACKAGE_ARCH = "${TUNE_PKGARCH}"
102MACHINE_ARCH = "${@[bb.data.getVar('TUNE_PKGARCH', d, 1), bb.data.getVar('MACHINE', d, 1)][bool(bb.data.getVar('MACHINE', d, 1))].replace('-', '_')}" 104MACHINE_ARCH = "${@[bb.data.getVar('TUNE_PKGARCH', d, 1), bb.data.getVar('MACHINE', d, 1)][bool(bb.data.getVar('MACHINE', d, 1))].replace('-', '_')}"
103PACKAGE_EXTRA_ARCHS ??= "${TARGET_ARCH}" 105PACKAGE_EXTRA_ARCHS ??= "${PACKAGE_EXTRA_ARCHS_tune-${DEFAULTTUNE}}"
104PACKAGE_ARCHS = "all any noarch ${PACKAGE_EXTRA_ARCHS} ${MACHINE_ARCH}" 106PACKAGE_ARCHS = "all any noarch ${PACKAGE_EXTRA_ARCHS} ${MACHINE_ARCH}"
105# MACHINE_ARCH shouldn't be included here as a variable dependency 107# MACHINE_ARCH shouldn't be included here as a variable dependency
106# since machine specific packages are handled using multimachine 108# since machine specific packages are handled using multimachine