scripts/saveSample.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu May 17 16:22:51 2007 +0000 (2007-05-17)
changeset 96 aa1a9fbd6eb8
parent 64 7dab8d1a2426
child 108 69407950a2a2
permissions -rwxr-xr-x
Debug facilities:
- add a framework to easily add new ones
- add gdb as a first debug facility
- add patches for gdb
After the kernel checked its installed headers, clean up the mess of .checked.* files.
Reorder scripts/crosstool.sh:
- dump the configuration early
- renice early
- get info about build system early, when setting up the environment
- when in cross or native, the host tools are those of the build system, and only in this case
- elapsed time calculations moved to scripts/functions
Remove handling of the color: it's gone once and for all.
Update tools/addToolVersion.sh:
- handle debug facilities
- commonalise some code
- remove dead tools (cygwin, tcc)
Point to my address for bug reports.
     1 #!/bin/bash
     2 
     3 # This script is responsible for saving the current configuration into a
     4 # sample to be used later on as a pre-configured target.
     5 
     6 # What we need to save:
     7 #  - the .config file
     8 #  - the kernel .config file if specified
     9 #  - the uClibc .config file if uClibc selected
    10 
    11 . "${CT_TOP_DIR}/scripts/functions"
    12 
    13 # Log to a temporary file until we have built our environment
    14 CT_ACTUAL_LOG_FILE="${CT_TOP_DIR}/$$.log"
    15 
    16 # Override log level
    17 unset CT_LOG_ERROR CT_LOG_WARN CT_LOG_EXTRA CT_LOG_DEBUG 
    18 CT_LOG_INFO=y
    19 CT_LOG_LEVEL_MAX="INFO"
    20 
    21 # Parse the configuration file
    22 CT_TestOrAbort "Configuration file not found. Please create one." -f "${CT_TOP_DIR}/.config"
    23 . "${CT_TOP_DIR}/.config"
    24 
    25 # Target triplet: CT_TARGET needs a little love:
    26 CT_DoBuildTargetTriplet
    27 
    28 # Kludge: if any of the config options needs either CT_TARGET or CT_TOP_DIR,
    29 # re-parse them:
    30 . "${CT_TOP_DIR}/.config"
    31 
    32 # Create the sample directory
    33 [ -d "${CT_TOP_DIR}/samples/${CT_TARGET}" ] || svn mkdir "${CT_TOP_DIR}/samples/${CT_TARGET}" >/dev/null 2>&1
    34 
    35 # Save the crosstool-NG config file
    36 cp "${CT_TOP_DIR}/.config" "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
    37 
    38 # Function to copy a file to the sample directory
    39 # Needed in case the file is already there (think of a previously available sample)
    40 # Usage: CT_DoAddFileToSample <source> <dest>
    41 CT_DoAddFileToSample() {
    42     source="$1"
    43     dest="$2"
    44     inode_s=`ls -i "${source}"`
    45     inode_d=`ls -i "${dest}"`
    46     if [ "${inode_s}" != "${inode_d}" ]; then
    47         cp "${source}" "${dest}"
    48     fi
    49     svn add "${dest}" >/dev/null 2>&1
    50 }
    51 
    52 # Save the kernel .config file
    53 if [ -n "${CT_KERNEL_LINUX_CONFIG_FILE}" ]; then
    54     # We save the file, and then point the saved sample to this file
    55     CT_DoAddFileToSample "${CT_KERNEL_LINUX_CONFIG_FILE}" "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-${CT_KERNEL_VERSION}.config"
    56     sed -r -i -e 's|^(CT_KERNEL_LINUX_CONFIG_FILE=).+$|\1"${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-${CT_KERNEL_VERSION}.config"|;' \
    57         "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
    58 else
    59     # remove any dangling files
    60     for f in "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-"*.config; do
    61         if [ -f "${f}" ]; then svn rm --force "${f}" >/dev/null 2>&1; fi
    62     done
    63 fi
    64 
    65 # Save the uClibc .config file
    66 if [ -n "${CT_LIBC_UCLIBC_CONFIG_FILE}" ]; then
    67     # We save the file, and then point the saved sample to this file
    68     CT_DoAddFileToSample "${CT_LIBC_UCLIBC_CONFIG_FILE}" "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"
    69     sed -r -i -e 's|^(CT_LIBC_UCLIBC_CONFIG_FILE=).+$|\1"${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"|;' \
    70         "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
    71 else
    72     # remove any dangling files
    73     for f in "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-"*.config; do
    74         if [ -f "${f}" ]; then svn rm --force "${f}" >/dev/null 2>&1; fi
    75     done
    76 fi
    77 
    78 # We could svn add earlier, but it's better to
    79 # add a frozen file than modifying it later
    80 svn add "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config" >/dev/null 2>&1
    81 
    82 svn stat "${CT_TOP_DIR}/samples/${CT_TARGET}" 2>/dev/null |CT_DoLog INFO
    83 
    84 rm -f "${CT_ACTUAL_LOG_FILE}"