M7350/oe-core/meta/conf/distro/defaultsetup.conf

24 lines
875 B
Plaintext
Raw Normal View History

2024-09-09 08:52:07 +00:00
include conf/distro/include/default-providers.inc
include conf/distro/include/default-versions.inc
include conf/distro/include/default-distrovars.inc
include conf/distro/include/world-broken.inc
TCMODE ?= "default"
require conf/distro/include/tcmode-${TCMODE}.inc
2024-09-09 08:57:42 +00:00
TCLIBC ?= "glibc"
2024-09-09 08:52:07 +00:00
require conf/distro/include/tclibc-${TCLIBC}.inc
# Allow single libc distros to disable this code
TCLIBCAPPEND ?= "-${TCLIBC}"
TMPDIR .= "${TCLIBCAPPEND}"
2024-09-09 08:57:42 +00:00
CACHE = "${TMPDIR}/cache/${TCMODE}-${TCLIBC}${@['', '/' + str(d.getVar('MACHINE', True))][bool(d.getVar('MACHINE', True))]}${@['', '/' + str(d.getVar('SDKMACHINE', True))][bool(d.getVar('SDKMACHINE', True))]}"
2024-09-09 08:52:07 +00:00
USER_CLASSES ?= ""
PACKAGE_CLASSES ?= "package_ipk"
2024-09-09 08:57:42 +00:00
INHERIT_BLACKLIST = "blacklist"
2024-09-09 08:52:07 +00:00
INHERIT_DISTRO ?= "debian devshell sstate license"
2024-09-09 08:57:42 +00:00
INHERIT += "${PACKAGE_CLASSES} ${USER_CLASSES} ${INHERIT_DISTRO} ${INHERIT_BLACKLIST}"
2024-09-09 08:52:07 +00:00