mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 10:43:02 +01:00
Remove the old class and rename VarFlag to SKIP_RECIPE, handling this in base.bbclass for efficiency. This means a separate inherit is no longer needed. This change better describes what the VarFlag is doing since it is implemeted with the SkipRecipe() function. By moving this into base.bbclass we simplify the distro inherit. (From OE-Core rev: a5f735746cba6af41a25aa2aa121453a8bc363b4) Signed-off-by: Saul Wold <saul.wold@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
720 B
Plaintext
22 lines
720 B
Plaintext
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/maintainers.inc
|
|
|
|
require conf/distro/include/tcmode-${TCMODE}.inc
|
|
require conf/distro/include/tclibc-${TCLIBC}.inc
|
|
|
|
require conf/distro/include/uninative-flags.inc
|
|
|
|
# Allow single libc distros to disable this code
|
|
TCLIBCAPPEND ?= "-${TCLIBC}"
|
|
TMPDIR .= "${TCLIBCAPPEND}"
|
|
|
|
USER_CLASSES ?= ""
|
|
PACKAGE_CLASSES ?= "package_ipk"
|
|
INHERIT_DISTRO ?= "debian devshell sstate license remove-libtool"
|
|
INHERIT += "${PACKAGE_CLASSES} ${USER_CLASSES} ${INHERIT_DISTRO}"
|
|
|
|
INIT_MANAGER ??= "none"
|
|
require conf/distro/include/init-manager-${INIT_MANAGER}.inc
|