summaryrefslogtreecommitdiff
path: root/scripts/showTuple.sh.in
blob: c7df08c7d1bfc3bc346f5147976d8c87a1adc990 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!@@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

# 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