scripts/saveSample.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue May 08 17:48:32 2007 +0000 (2007-05-08)
changeset 78 c3868084d81a
parent 63 89b41dbffe8d
child 84 dcb02306a338
permissions -rwxr-xr-x
Huge fixes to glibc build, so that we can build at least (and at last):
- use ports addon even when installing headers,
- use optimisation (-O) when installing headers, to avoid unnecessary warnings (thanks Robert P. J. DAY for pointing this out!),
- lowest kernel version to use is only X.Y.Z, not X.Y.Z.T,
- a bit of preparations for NPTL (RSN I hope),
- fix fixing the linker scripts (changing the backup file is kind of useless and stupid);

Shut uClibc finish step: there really is nothing to do;

Add a patch for glibc-2.3.6 weak aliases handling on some archs (ARM and ALPHA at least);

Did not catch the make errors: fixed the pattern matching in scripts/functions;

Introduce a new log level, ALL:
- send components' build messages there,
- DEBUG log level is destined only for crosstool-NG debug messages,
- migrate sub-actions to use appropriate log levels;

Update the armeb-unknown-linux-gnu sample:
- it builds!
- uses gcc-4.0.4 and glibc-2.3.6,
- updated to latest config options set.
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@63
    11
. "${CT_TOP_DIR}/scripts/functions"
yann@63
    12
yann@63
    13
# Log to a temporary file until we have built our environment
yann@63
    14
CT_ACTUAL_LOG_FILE="${CT_TOP_DIR}/$$.log"
yann@63
    15
CT_LOG_INFO=y
yann@63
    16
CT_LOG_LEVEL_MAX="INFO"
yann@63
    17
yann@63
    18
# Parse the configuration file
yann@63
    19
CT_TestOrAbort "Configuration file not found. Please create one." -f "${CT_TOP_DIR}/.config"
yann@63
    20
. "${CT_TOP_DIR}/.config"
yann@63
    21
yann@63
    22
# Override log level
yann@63
    23
unset CT_LOG_ERROR CT_LOG_WARN CT_LOG_EXTRA CT_LOG_DEBUG 
yann@63
    24
CT_LOG_INFO=y
yann@63
    25
CT_LOG_LEVEL_MAX="INFO"
yann@63
    26
yann@63
    27
# Target triplet: CT_TARGET needs a little love:
yann@63
    28
CT_DoBuildTargetTriplet
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@63
    34
# Create the sample directory
yann@63
    35
[ -d "${CT_TOP_DIR}/samples/${CT_TARGET}" ] || svn mkdir "${CT_TOP_DIR}/samples/${CT_TARGET}" >/dev/null 2>&1
yann@63
    36
yann@63
    37
# Save the crosstool-NG config file
yann@63
    38
cp "${CT_TOP_DIR}/.config" "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
yann@63
    39
yann@64
    40
# Function to copy a file to the sample directory
yann@64
    41
# Needed in case the file is already there (think of a previously available sample)
yann@64
    42
# Usage: CT_DoAddFileToSample <source> <dest>
yann@64
    43
CT_DoAddFileToSample() {
yann@64
    44
    source="$1"
yann@64
    45
    dest="$2"
yann@64
    46
    inode_s=`ls -i "${source}"`
yann@64
    47
    inode_d=`ls -i "${dest}"`
yann@64
    48
    if [ "${inode_s}" != "${inode_d}" ]; then
yann@64
    49
        cp "${source}" "${dest}"
yann@64
    50
    fi
yann@64
    51
    svn add "${dest}" >/dev/null 2>&1
yann@64
    52
}
yann@64
    53
yann@63
    54
# Save the kernel .config file
yann@63
    55
if [ -n "${CT_KERNEL_LINUX_CONFIG_FILE}" ]; then
yann@63
    56
    # We save the file, and then point the saved sample to this file
yann@64
    57
    CT_DoAddFileToSample "${CT_KERNEL_LINUX_CONFIG_FILE}" "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-${CT_KERNEL_VERSION}.config"
yann@63
    58
    sed -r -i -e 's|^(CT_KERNEL_LINUX_CONFIG_FILE=).+$|\1"${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-${CT_KERNEL_VERSION}.config"|;' \
yann@63
    59
        "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
yann@63
    60
else
yann@63
    61
    # remove any dangling files
yann@63
    62
    for f in "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-"*.config; do
yann@63
    63
        if [ -f "${f}" ]; then svn rm --force "${f}" >/dev/null 2>&1; fi
yann@63
    64
    done
yann@63
    65
fi
yann@63
    66
yann@63
    67
# Save the uClibc .config file
yann@63
    68
if [ -n "${CT_LIBC_UCLIBC_CONFIG_FILE}" ]; then
yann@63
    69
    # We save the file, and then point the saved sample to this file
yann@64
    70
    CT_DoAddFileToSample "${CT_LIBC_UCLIBC_CONFIG_FILE}" "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"
yann@63
    71
    sed -r -i -e 's|^(CT_LIBC_UCLIBC_CONFIG_FILE=).+$|\1"${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"|;' \
yann@63
    72
        "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
yann@63
    73
else
yann@63
    74
    # remove any dangling files
yann@63
    75
    for f in "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-"*.config; do
yann@63
    76
        if [ -f "${f}" ]; then svn rm --force "${f}" >/dev/null 2>&1; fi
yann@63
    77
    done
yann@63
    78
fi
yann@63
    79
yann@63
    80
# We could svn add earlier, but it's better to
yann@63
    81
# add a frozen file than modifying it later
yann@63
    82
svn add "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config" >/dev/null 2>&1
yann@63
    83
yann@63
    84
svn stat "${CT_TOP_DIR}/samples/${CT_TARGET}" 2>/dev/null |CT_DoLog INFO
yann@63
    85
yann@63
    86
rm -f "${CT_ACTUAL_LOG_FILE}"