mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-04 16:10:04 +00:00
This patch removes the variables BASE_PACKAGE_ARCH, BASEPKG_HOST_SYS, BASEPKG_TARGET_SYS and also removes the immediate assignments in several core classes as these are no longer required. This should make it clearer what some of the core variables do and simplfy some overly complex and confusing class code. (From OE-Core rev: d5521be2dcbaf213c140b0d12a4176380874426b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
396 B
Plaintext
16 lines
396 B
Plaintext
#
|
|
# This class is used for architecture independent recipes/data files (usally scripts)
|
|
#
|
|
|
|
PACKAGE_ARCH = "all"
|
|
|
|
# No need for virtual/libc or a cross compiler
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
# Set these to a common set of values, we shouldn't be using them other that for WORKDIR directory
|
|
# naming anyway
|
|
TARGET_ARCH = "allarch"
|
|
TARGET_OS = "linux"
|
|
TARGET_CC_ARCH = "none"
|
|
PACKAGE_EXTRA_ARCHS = ""
|