scripts/saveSample.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Sep 23 14:48:10 2008 +0000 (2008-09-23)
changeset 872 fd4bf138f08f
parent 735 e9cbd9d6e737
child 927 4824afc1b2f7
permissions -rwxr-xr-x
Bart De VOS pointed out that removing absolute paths from the libc linker scripts is plainly wrong.
It dates from dawn ages of the original crosstool code, and is not well explained. At that time, binutils might not understand the sysroot stuff, and it was necessary to remove absolute paths in that case.

/trunk/scripts/build/libc/glibc.sh | 14 2 12 0 ++------------
1 file changed, 2 insertions(+), 12 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@682
    21
# Do not use a progress bar
yann@682
    22
unset CT_LOG_PROGRESS_BAR
yann@682
    23
yann@394
    24
# Parse the architecture-specific functions
yann@394
    25
. "${CT_LIB_DIR}/arch/${CT_ARCH}/functions"
yann@394
    26
yann@335
    27
# Target tuple: CT_TARGET needs a little love:
yann@335
    28
CT_DoBuildTargetTuple
yann@63
    29
yann@64
    30
# Kludge: if any of the config options needs either CT_TARGET or CT_TOP_DIR,
yann@64
    31
# re-parse them:
yann@64
    32
. "${CT_TOP_DIR}/.config"
yann@64
    33
yann@682
    34
# Override log options
yann@682
    35
unset CT_LOG_PROGRESS_BAR CT_LOG_ERROR CT_LOG_INFO CT_LOG_EXTRA CT_LOG_DEBUG LOG_ALL
yann@603
    36
CT_LOG_WARN=y
yann@603
    37
CT_LOG_LEVEL_MAX="WARN"
yann@126
    38
yann@63
    39
# Create the sample directory
yann@182
    40
if [ ! -d "${CT_TOP_DIR}/samples/${CT_TARGET}" ]; then
yann@182
    41
    mkdir -p "${CT_TOP_DIR}/samples/${CT_TARGET}"
yann@108
    42
fi
yann@63
    43
yann@63
    44
# Save the crosstool-NG config file
yann@735
    45
sed -r -e 's|^(CT_PREFIX_DIR)=.*|\1="${HOME}/x-tools/${CT_TARGET}"|;'       \
yann@735
    46
       -e 's|^# CT_LOG_TO_FILE is not set$|CT_LOG_TO_FILE=y|;'              \
yann@735
    47
       -e 's|^# CT_LOG_FILE_COMPRESS is not set$|CT_LOG_FILE_COMPRESS=y|;'  \
yann@735
    48
    <"${CT_TOP_DIR}/.config"                                                \
yann@562
    49
    >"${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
yann@63
    50
yann@64
    51
# Function to copy a file to the sample directory
yann@64
    52
# Needed in case the file is already there (think of a previously available sample)
yann@64
    53
# Usage: CT_DoAddFileToSample <source> <dest>
yann@64
    54
CT_DoAddFileToSample() {
yann@64
    55
    source="$1"
yann@64
    56
    dest="$2"
yann@523
    57
    inode_s=$(ls -i "${source}")
yann@523
    58
    inode_d=$(ls -i "${dest}" 2>/dev/null || true)
yann@64
    59
    if [ "${inode_s}" != "${inode_d}" ]; then
yann@64
    60
        cp "${source}" "${dest}"
yann@64
    61
    fi
yann@64
    62
}
yann@64
    63
yann@182
    64
if [ "${CT_TOP_DIR}" = "${CT_LIB_DIR}" ]; then
yann@182
    65
    samp_top_dir="\${CT_LIB_DIR}"
yann@182
    66
else
yann@182
    67
    samp_top_dir="\${CT_TOP_DIR}"
yann@182
    68
fi
yann@182
    69
yann@63
    70
# Save the uClibc .config file
yann@63
    71
if [ -n "${CT_LIBC_UCLIBC_CONFIG_FILE}" ]; then
yann@63
    72
    # We save the file, and then point the saved sample to this file
yann@64
    73
    CT_DoAddFileToSample "${CT_LIBC_UCLIBC_CONFIG_FILE}" "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"
yann@182
    74
    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
    75
        "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
yann@63
    76
else
yann@63
    77
    # remove any dangling files
yann@63
    78
    for f in "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-"*.config; do
yann@182
    79
        if [ -f "${f}" ]; then rm -f "${f}"; fi
yann@63
    80
    done
yann@63
    81
fi