mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
2c3b6d2b71
Transfrom array variables from pure strings (in the kconfig output) into proper bash arrays declarations, for feeding to the build scripts. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> Signed-off-by: "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
31 lines
656 B
Bash
31 lines
656 B
Bash
#!@@CT_bash@@
|
|
|
|
# What we need:
|
|
# - the .config file
|
|
|
|
# Parse the tools' paths configuration
|
|
. "${CT_LIB_DIR}/paths.mk"
|
|
|
|
# We'll need the stdout later, save it
|
|
exec 7>&1
|
|
|
|
# Parse the common functions
|
|
. "${CT_LIB_DIR}/scripts/functions"
|
|
|
|
# Don't care about any log file
|
|
exec >/dev/null
|
|
rm -f "${tmp_log_file}"
|
|
|
|
# Parse the configuration file
|
|
. .config.2
|
|
|
|
# Parse architecture and kernel specific functions
|
|
. "${CT_LIB_DIR}/scripts/build/arch/${CT_ARCH}.sh"
|
|
. "${CT_LIB_DIR}/scripts/build/kernel/${CT_KERNEL}.sh"
|
|
|
|
# Build CT_TARGET
|
|
CT_DoBuildTargetTuple
|
|
|
|
# All this for this single echo... :-( Sigh, I'll have to re-arrange things...
|
|
echo "${CT_TARGET}" >&7
|