1include conf/distro/include/default-providers.inc
2include conf/distro/include/default-versions.inc
3include conf/distro/include/default-distrovars.inc
4include conf/distro/include/world-broken.inc
5
6TCMODE ?= "default"
7require conf/distro/include/tcmode-${TCMODE}.inc
8
9TCLIBC ?= "glibc"
10require conf/distro/include/tclibc-${TCLIBC}.inc
11
12require conf/distro/include/uninative-flags.inc
13
14# Allow single libc distros to disable this code
15TCLIBCAPPEND ?= "-${TCLIBC}"
16TMPDIR .= "${TCLIBCAPPEND}"
17
18CACHE = "${TMPDIR}/cache/${TCMODE}-${TCLIBC}${@['', '/' + str(d.getVar('MACHINE'))][bool(d.getVar('MACHINE'))]}${@['', '/' + str(d.getVar('SDKMACHINE'))][bool(d.getVar('SDKMACHINE'))]}"
19
20USER_CLASSES ?= ""
21PACKAGE_CLASSES ?= "package_ipk"
22INHERIT_BLACKLIST = "blacklist"
23INHERIT_DISTRO ?= "debian devshell sstate license remove-libtool"
24INHERIT += "${PACKAGE_CLASSES} ${USER_CLASSES} ${INHERIT_DISTRO} ${INHERIT_BLACKLIST}"
25