summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/conf/bitbake.conf5
-rw-r--r--meta/conf/distro/defaultsetup.conf5
2 files changed, 4 insertions, 6 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 5d994f067d..a318d1ca58 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -357,8 +357,11 @@ FILESYSTEM_PERMS_TABLES ?= "${@'files/fs-perms.txt' if oe.types.boolean(d.getVar
357# General work and output directories for the build system. 357# General work and output directories for the build system.
358################################################################## 358##################################################################
359 359
360TCMODE ?= "default"
361TCLIBC ?= "glibc"
360TMPDIR ?= "${TOPDIR}/tmp" 362TMPDIR ?= "${TOPDIR}/tmp"
361CACHE = "${TMPDIR}/cache${@['', '/' + str(d.getVar('MACHINE'))][bool(d.getVar('MACHINE'))]}${@['', '/' + str(d.getVar('SDKMACHINE'))][bool(d.getVar('SDKMACHINE'))]}" 363
364CACHE = "${TMPDIR}/cache/${TCMODE}-${TCLIBC}${@['', '/' + str(d.getVar('MACHINE'))][bool(d.getVar('MACHINE'))]}${@['', '/' + str(d.getVar('SDKMACHINE'))][bool(d.getVar('SDKMACHINE'))]}"
362# The persistent cache should be shared by all builds 365# The persistent cache should be shared by all builds
363PERSISTENT_DIR = "${TOPDIR}/cache" 366PERSISTENT_DIR = "${TOPDIR}/cache"
364LOG_DIR = "${TMPDIR}/log" 367LOG_DIR = "${TMPDIR}/log"
diff --git a/meta/conf/distro/defaultsetup.conf b/meta/conf/distro/defaultsetup.conf
index 66fd246526..b36a4ffffe 100644
--- a/meta/conf/distro/defaultsetup.conf
+++ b/meta/conf/distro/defaultsetup.conf
@@ -3,10 +3,7 @@ include conf/distro/include/default-versions.inc
3include conf/distro/include/default-distrovars.inc 3include conf/distro/include/default-distrovars.inc
4include conf/distro/include/maintainers.inc 4include conf/distro/include/maintainers.inc
5 5
6TCMODE ?= "default"
7require conf/distro/include/tcmode-${TCMODE}.inc 6require conf/distro/include/tcmode-${TCMODE}.inc
8
9TCLIBC ?= "glibc"
10require conf/distro/include/tclibc-${TCLIBC}.inc 7require conf/distro/include/tclibc-${TCLIBC}.inc
11 8
12require conf/distro/include/uninative-flags.inc 9require conf/distro/include/uninative-flags.inc
@@ -15,8 +12,6 @@ require conf/distro/include/uninative-flags.inc
15TCLIBCAPPEND ?= "-${TCLIBC}" 12TCLIBCAPPEND ?= "-${TCLIBC}"
16TMPDIR .= "${TCLIBCAPPEND}" 13TMPDIR .= "${TCLIBCAPPEND}"
17 14
18CACHE = "${TMPDIR}/cache/${TCMODE}-${TCLIBC}${@['', '/' + str(d.getVar('MACHINE'))][bool(d.getVar('MACHINE'))]}${@['', '/' + str(d.getVar('SDKMACHINE'))][bool(d.getVar('SDKMACHINE'))]}"
19
20USER_CLASSES ?= "" 15USER_CLASSES ?= ""
21PACKAGE_CLASSES ?= "package_ipk" 16PACKAGE_CLASSES ?= "package_ipk"
22INHERIT_BLACKLIST = "blacklist" 17INHERIT_BLACKLIST = "blacklist"