scripts/saveSample.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 13 10:32:38 2008 +0000 (2008-07-13)
changeset 645 8e58024f8e37
parent 574 d9326d33ae32
child 682 44fed7e2a22c
permissions -rwxr-xr-x
Ioannis E. VENETIS <venetis@mail.capsl.udel.edu> pointed out that GMP and MPFR were not used by gcc.
Turned out that none could use GMP and MPFR as the config option changed its name, but the change was not propagated to all users.

/trunk/scripts/build/binutils.sh | 2 1 1 0 +-
/trunk/scripts/build/debug/300-gdb.sh | 2 1 1 0 +-
/trunk/scripts/build/cc_gcc.sh | 6 3 3 0 +++---
3 files changed, 5 insertions(+), 5 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 kernel .config file if specified
yann@63
     9
#  - the uClibc .config file if uClibc selected
yann@63
    10
yann@182
    11
. "${CT_LIB_DIR}/scripts/functions"
yann@63
    12
yann@165
    13
# Don't care about any log file
yann@115
    14
exec >/dev/null
yann@165
    15
rm -f "${tmp_log_file}"
yann@84
    16
yann@63
    17
# Parse the configuration file
yann@63
    18
CT_TestOrAbort "Configuration file not found. Please create one." -f "${CT_TOP_DIR}/.config"
yann@63
    19
. "${CT_TOP_DIR}/.config"
yann@63
    20
yann@394
    21
# Parse the architecture-specific functions
yann@394
    22
. "${CT_LIB_DIR}/arch/${CT_ARCH}/functions"
yann@394
    23
yann@335
    24
# Target tuple: CT_TARGET needs a little love:
yann@335
    25
CT_DoBuildTargetTuple
yann@63
    26
yann@64
    27
# Kludge: if any of the config options needs either CT_TARGET or CT_TOP_DIR,
yann@64
    28
# re-parse them:
yann@64
    29
. "${CT_TOP_DIR}/.config"
yann@64
    30
yann@126
    31
# Override log level
yann@603
    32
unset CT_LOG_ERROR CT_LOG_INFO CT_LOG_EXTRA CT_LOG_DEBUG LOG_ALL
yann@603
    33
CT_LOG_WARN=y
yann@603
    34
CT_LOG_LEVEL_MAX="WARN"
yann@126
    35
yann@63
    36
# Create the sample directory
yann@182
    37
if [ ! -d "${CT_TOP_DIR}/samples/${CT_TARGET}" ]; then
yann@182
    38
    mkdir -p "${CT_TOP_DIR}/samples/${CT_TARGET}"
yann@108
    39
fi
yann@63
    40
yann@63
    41
# Save the crosstool-NG config file
yann@603
    42
sed -r -e 's|^(CT_PREFIX_DIR)=.*|\1="${HOME}/x-tools/${CT_TARGET}"|;'   \
yann@603
    43
    <"${CT_TOP_DIR}/.config"                                            \
yann@562
    44
    >"${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
yann@63
    45
yann@64
    46
# Function to copy a file to the sample directory
yann@64
    47
# Needed in case the file is already there (think of a previously available sample)
yann@64
    48
# Usage: CT_DoAddFileToSample <source> <dest>
yann@64
    49
CT_DoAddFileToSample() {
yann@64
    50
    source="$1"
yann@64
    51
    dest="$2"
yann@523
    52
    inode_s=$(ls -i "${source}")
yann@523
    53
    inode_d=$(ls -i "${dest}" 2>/dev/null || true)
yann@64
    54
    if [ "${inode_s}" != "${inode_d}" ]; then
yann@64
    55
        cp "${source}" "${dest}"
yann@64
    56
    fi
yann@64
    57
}
yann@64
    58
yann@182
    59
if [ "${CT_TOP_DIR}" = "${CT_LIB_DIR}" ]; then
yann@182
    60
    samp_top_dir="\${CT_LIB_DIR}"
yann@182
    61
else
yann@182
    62
    samp_top_dir="\${CT_TOP_DIR}"
yann@182
    63
fi
yann@182
    64
yann@63
    65
# Save the kernel .config file
yann@63
    66
if [ -n "${CT_KERNEL_LINUX_CONFIG_FILE}" ]; then
yann@63
    67
    # We save the file, and then point the saved sample to this file
yann@64
    68
    CT_DoAddFileToSample "${CT_KERNEL_LINUX_CONFIG_FILE}" "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-${CT_KERNEL_VERSION}.config"
yann@182
    69
    sed -r -i -e 's|^(CT_KERNEL_LINUX_CONFIG_FILE=).+$|\1"'"${samp_top_dir}"'/samples/${CT_TARGET}/${CT_KERNEL}-${CT_KERNEL_VERSION}.config"|;' \
yann@63
    70
        "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
yann@63
    71
else
yann@63
    72
    # remove any dangling files
yann@63
    73
    for f in "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-"*.config; do
yann@182
    74
        if [ -f "${f}" ]; then rm -f "${f}"; fi
yann@63
    75
    done
yann@63
    76
fi
yann@63
    77
yann@63
    78
# Save the uClibc .config file
yann@63
    79
if [ -n "${CT_LIBC_UCLIBC_CONFIG_FILE}" ]; then
yann@63
    80
    # We save the file, and then point the saved sample to this file
yann@64
    81
    CT_DoAddFileToSample "${CT_LIBC_UCLIBC_CONFIG_FILE}" "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"
yann@182
    82
    sed -r -i -e 's|^(CT_LIBC_UCLIBC_CONFIG_FILE=).+$|\1"'"${samp_top_dir}"'/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"|;' \
yann@63
    83
        "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
yann@63
    84
else
yann@63
    85
    # remove any dangling files
yann@63
    86
    for f in "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-"*.config; do
yann@182
    87
        if [ -f "${f}" ]; then rm -f "${f}"; fi
yann@63
    88
    done
yann@63
    89
fi