mirror of
https://git.yoctoproject.org/poky
synced 2026-02-16 05:33:03 +01:00
getVar() now defaults to expanding by default, thus remove the True option from getVar() calls with a regex search and replace. Search made with the following regex: getVar ?\(( ?[^,()]*), True\) (From OE-Core rev: 7c552996597faaee2fbee185b250c0ee30ea3b5f) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
559 B
PHP
17 lines
559 B
PHP
|
|
TUNEVALID[bigendian] = "Enable big-endian mode."
|
|
|
|
ARMPKGARCH = "${ARMPKGARCH_tune-${DEFAULTTUNE}}"
|
|
ARMPKGSFX_ENDIAN = "${@bb.utils.contains('TUNE_FEATURES', 'bigendian', 'b', '', d)}"
|
|
ARMPKGSFX_FPU ??= ""
|
|
ARMPKGSFX_DSP ??= ""
|
|
ARMPKGSFX_EABI ??= ""
|
|
ARMPKGSFX_THUMB ??= ""
|
|
|
|
TUNE_ARCH = "${@bb.utils.contains('TUNE_FEATURES', 'bigendian', 'armeb', 'arm', d)}"
|
|
TUNE_PKGARCH = "${ARMPKGARCH}${ARMPKGSFX_THUMB}${ARMPKGSFX_DSP}${ARMPKGSFX_EABI}${ARMPKGSFX_ENDIAN}${ARMPKGSFX_FPU}"
|
|
|
|
ABIEXTENSION = "eabi"
|
|
|
|
TARGET_FPU = "${@d.getVar('TUNE_CCARGS_MFLOAT') or 'soft'}"
|