scripts/saveSample.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed May 23 19:07:54 2007 +0000 (2007-05-23)
changeset 126 cf871e2cccc9
parent 115 95ca955e8a58
child 165 a291bfa17715
permissions -rwxr-xr-x
Correctly handle the log level overide in scripts/saveSample.sh.
Little eye candy in scripts/showSamples.sh.
     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 exec 6>&1
    14 exec >/dev/null
    15 
    16 # Parse the configuration file
    17 CT_TestOrAbort "Configuration file not found. Please create one." -f "${CT_TOP_DIR}/.config"
    18 . "${CT_TOP_DIR}/.config"
    19 
    20 # Target triplet: CT_TARGET needs a little love:
    21 CT_DoBuildTargetTriplet
    22 
    23 # Kludge: if any of the config options needs either CT_TARGET or CT_TOP_DIR,
    24 # re-parse them:
    25 . "${CT_TOP_DIR}/.config"
    26 
    27 # Override log level
    28 unset CT_LOG_ERROR CT_LOG_WARN CT_LOG_EXTRA CT_LOG_DEBUG 
    29 CT_LOG_INFO=y
    30 CT_LOG_LEVEL_MAX="INFO"
    31 
    32 # Create the sample directory
    33 # In case it was manually made, add it to svn
    34 if [ -d "${CT_TOP_DIR}/samples/${CT_TARGET}" ]; then
    35     # svn won't fail when adding a directory already managed by svn
    36     svn add "${CT_TOP_DIR}/samples/${CT_TARGET}" >/dev/null 2>&1
    37 else
    38     svn mkdir "${CT_TOP_DIR}/samples/${CT_TARGET}" >/dev/null 2>&1
    39 fi
    40 
    41 # Save the crosstool-NG config file
    42 cp "${CT_TOP_DIR}/.config" "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
    43 
    44 # Function to copy a file to the sample directory
    45 # Needed in case the file is already there (think of a previously available sample)
    46 # Usage: CT_DoAddFileToSample <source> <dest>
    47 CT_DoAddFileToSample() {
    48     source="$1"
    49     dest="$2"
    50     inode_s=`ls -i "${source}"`
    51     inode_d=`ls -i "${dest}" 2>/dev/null || true`
    52     if [ "${inode_s}" != "${inode_d}" ]; then
    53         cp "${source}" "${dest}"
    54     fi
    55     svn add "${dest}" >/dev/null 2>&1
    56 }
    57 
    58 # Save the kernel .config file
    59 if [ -n "${CT_KERNEL_LINUX_CONFIG_FILE}" ]; then
    60     # We save the file, and then point the saved sample to this file
    61     CT_DoAddFileToSample "${CT_KERNEL_LINUX_CONFIG_FILE}" "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-${CT_KERNEL_VERSION}.config"
    62     sed -r -i -e 's|^(CT_KERNEL_LINUX_CONFIG_FILE=).+$|\1"${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-${CT_KERNEL_VERSION}.config"|;' \
    63         "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
    64 else
    65     # remove any dangling files
    66     for f in "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-"*.config; do
    67         if [ -f "${f}" ]; then svn rm --force "${f}" >/dev/null 2>&1; fi
    68     done
    69 fi
    70 
    71 # Save the uClibc .config file
    72 if [ -n "${CT_LIBC_UCLIBC_CONFIG_FILE}" ]; then
    73     # We save the file, and then point the saved sample to this file
    74     CT_DoAddFileToSample "${CT_LIBC_UCLIBC_CONFIG_FILE}" "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"
    75     sed -r -i -e 's|^(CT_LIBC_UCLIBC_CONFIG_FILE=).+$|\1"${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"|;' \
    76         "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
    77 else
    78     # remove any dangling files
    79     for f in "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-"*.config; do
    80         if [ -f "${f}" ]; then svn rm --force "${f}" >/dev/null 2>&1; fi
    81     done
    82 fi
    83 
    84 # We could svn add earlier, but it's better to
    85 # add a frozen file than modifying it later
    86 svn add "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config" >/dev/null 2>&1
    87 
    88 svn stat "${CT_TOP_DIR}/samples/${CT_TARGET}" 2>/dev/null |CT_DoLog INFO