scripts/saveSample.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jan 31 17:38:26 2009 +0000 (2009-01-31)
changeset 1180 734db80cc9b9
parent 967 6377bc687c93
permissions -rwxr-xr-x
Further handle the lib64 -> lib symlinks.
It at least helps powerpc64 to build, and should innocuous to other archs.

/trunk/scripts/crosstool-NG.sh.in | 8 6 2 0 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
yann@63
     1
#!/bin/bash
yann@63
     2
yann@63
     3
# This script is responsible for saving the current configuration into a
yann@63
     4
# sample to be used later on as a pre-configured target.
yann@63
     5
yann@63
     6
# What we need to save:
yann@63
     7
#  - the .config file
yann@63
     8
#  - the uClibc .config file if uClibc selected
yann@935
     9
#  - info about who reported the sample
yann@935
    10
yann@935
    11
# We'll need the stdout later, save it
yann@935
    12
exec 7>&1
yann@63
    13
yann@182
    14
. "${CT_LIB_DIR}/scripts/functions"
yann@63
    15
yann@165
    16
# Don't care about any log file
yann@115
    17
exec >/dev/null
yann@165
    18
rm -f "${tmp_log_file}"
yann@84
    19
yann@63
    20
# Parse the configuration file
yann@935
    21
CT_TestOrAbort "Configuration file not found. Please create one." -f .config
yann@935
    22
. .config
yann@63
    23
yann@682
    24
# Do not use a progress bar
yann@682
    25
unset CT_LOG_PROGRESS_BAR
yann@682
    26
yann@967
    27
# Parse architecture and kernel specific functions
yann@927
    28
. "${CT_LIB_DIR}/scripts/build/arch/${CT_ARCH}.sh"
yann@967
    29
. "${CT_LIB_DIR}/scripts/build/kernel/${CT_KERNEL}.sh"
yann@394
    30
yann@335
    31
# Target tuple: CT_TARGET needs a little love:
yann@335
    32
CT_DoBuildTargetTuple
yann@63
    33
yann@64
    34
# Kludge: if any of the config options needs either CT_TARGET or CT_TOP_DIR,
yann@64
    35
# re-parse them:
yann@935
    36
. .config
yann@64
    37
yann@682
    38
# Override log options
yann@682
    39
unset CT_LOG_PROGRESS_BAR CT_LOG_ERROR CT_LOG_INFO CT_LOG_EXTRA CT_LOG_DEBUG LOG_ALL
yann@603
    40
CT_LOG_WARN=y
yann@603
    41
CT_LOG_LEVEL_MAX="WARN"
yann@126
    42
yann@63
    43
# Create the sample directory
yann@935
    44
if [ ! -d "samples/${CT_TARGET}" ]; then
yann@935
    45
    mkdir -p "samples/${CT_TARGET}"
yann@108
    46
fi
yann@63
    47
yann@63
    48
# Save the crosstool-NG config file
yann@735
    49
sed -r -e 's|^(CT_PREFIX_DIR)=.*|\1="${HOME}/x-tools/${CT_TARGET}"|;'       \
yann@735
    50
       -e 's|^# CT_LOG_TO_FILE is not set$|CT_LOG_TO_FILE=y|;'              \
yann@735
    51
       -e 's|^# CT_LOG_FILE_COMPRESS is not set$|CT_LOG_FILE_COMPRESS=y|;'  \
yann@928
    52
       -e 's|^(CT_LOCAL_TARBALLS_DIR)=.*|\1="${HOME}/src"|;'                \
yann@935
    53
    <.config                                                                \
yann@935
    54
    >"samples/${CT_TARGET}/crosstool.config"
yann@63
    55
yann@64
    56
# Function to copy a file to the sample directory
yann@64
    57
# Needed in case the file is already there (think of a previously available sample)
yann@64
    58
# Usage: CT_DoAddFileToSample <source> <dest>
yann@64
    59
CT_DoAddFileToSample() {
yann@64
    60
    source="$1"
yann@64
    61
    dest="$2"
yann@1017
    62
    inode_s=$(ls -i "${source}" |gawk '{ print $1; }')
yann@1017
    63
    inode_d=$(ls -i "${dest}" 2>/dev/null |gawk '{ print $1; }' || true)
yann@64
    64
    if [ "${inode_s}" != "${inode_d}" ]; then
yann@64
    65
        cp "${source}" "${dest}"
yann@64
    66
    fi
yann@64
    67
}
yann@64
    68
yann@182
    69
if [ "${CT_TOP_DIR}" = "${CT_LIB_DIR}" ]; then
yann@182
    70
    samp_top_dir="\${CT_LIB_DIR}"
yann@182
    71
else
yann@182
    72
    samp_top_dir="\${CT_TOP_DIR}"
yann@182
    73
fi
yann@182
    74
yann@63
    75
# Save the uClibc .config file
yann@63
    76
if [ -n "${CT_LIBC_UCLIBC_CONFIG_FILE}" ]; then
yann@63
    77
    # We save the file, and then point the saved sample to this file
yann@935
    78
    CT_DoAddFileToSample "${CT_LIBC_UCLIBC_CONFIG_FILE}" "samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"
yann@182
    79
    sed -r -i -e 's|^(CT_LIBC_UCLIBC_CONFIG_FILE=).+$|\1"'"${samp_top_dir}"'/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"|;' \
yann@935
    80
        "samples/${CT_TARGET}/crosstool.config"
yann@63
    81
else
yann@63
    82
    # remove any dangling files
yann@935
    83
    for f in "samples/${CT_TARGET}/${CT_LIBC}-"*.config; do
yann@182
    84
        if [ -f "${f}" ]; then rm -f "${f}"; fi
yann@63
    85
    done
yann@63
    86
fi
yann@935
    87
yann@935
    88
# Restore stdout now, to be interactive
yann@935
    89
exec >&7
yann@935
    90
yann@935
    91
# Fill-in the reported-by info
yann@935
    92
[ -f "samples/${CT_TARGET}/reported.by" ] && . "samples/${CT_TARGET}/reported.by"
yann@935
    93
old_name="${reporter_name}"
yann@935
    94
old_url="${reporter_url}"
yann@935
    95
read -p "Reporter name [${reporter_name}]: " reporter_name
yann@935
    96
read -p "Reporter URL [${reporter_url}]: " reporter_url
yann@935
    97
if [ -n "${reporter_comment}" ]; then
yann@935
    98
  echo "Old comment if you need to copy-paste:"
yann@958
    99
  printf "${reporter_comment}\n"
yann@935
   100
fi
yann@935
   101
echo "Reporter comment (Ctrl-D to finish):"
yann@935
   102
reporter_comment=$(cat)
yann@935
   103
yann@935
   104
( echo "reporter_name=\"${reporter_name:=${old_name}}\""
yann@935
   105
  echo "reporter_url=\"${reporter_url:=${old_url}}\""
yann@935
   106
  printf "reporter_comment=\"${reporter_comment}\"\n"
yann@935
   107
) >"samples/${CT_TARGET}/reported.by"