scripts/saveSample.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon May 07 09:04:02 2007 +0000 (2007-05-07)
changeset 63 89b41dbffe8d
child 64 7dab8d1a2426
permissions -rwxr-xr-x
Merge the save-sample branch to trunk:
- reorder most of the environment setup,
- geting, extracting and patching are now components' sub-actions,
- save the current config as a sample to be used as a pre-configured target.
     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 CT_LOG_INFO=y
    16 CT_LOG_LEVEL_MAX="INFO"
    17 
    18 # Parse the configuration file
    19 CT_TestOrAbort "Configuration file not found. Please create one." -f "${CT_TOP_DIR}/.config"
    20 . "${CT_TOP_DIR}/.config"
    21 
    22 # Override log level
    23 unset CT_LOG_ERROR CT_LOG_WARN CT_LOG_EXTRA CT_LOG_DEBUG 
    24 CT_LOG_INFO=y
    25 CT_LOG_LEVEL_MAX="INFO"
    26 
    27 # Target triplet: CT_TARGET needs a little love:
    28 CT_DoBuildTargetTriplet
    29 
    30 # Create the sample directory
    31 [ -d "${CT_TOP_DIR}/samples/${CT_TARGET}" ] || svn mkdir "${CT_TOP_DIR}/samples/${CT_TARGET}" >/dev/null 2>&1
    32 
    33 # Save the crosstool-NG config file
    34 cp "${CT_TOP_DIR}/.config" "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
    35 
    36 # Save the kernel .config file
    37 if [ -n "${CT_KERNEL_LINUX_CONFIG_FILE}" ]; then
    38     # We save the file, and then point the saved sample to this file
    39     cp "${CT_KERNEL_LINUX_CONFIG_FILE}" "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-${CT_KERNEL_VERSION}.config"
    40     svn add "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-${CT_KERNEL_VERSION}.config" >/dev/null 2>&1
    41     sed -r -i -e 's|^(CT_KERNEL_LINUX_CONFIG_FILE=).+$|\1"${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-${CT_KERNEL_VERSION}.config"|;' \
    42         "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
    43 else
    44     # remove any dangling files
    45     for f in "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-"*.config; do
    46         if [ -f "${f}" ]; then svn rm --force "${f}" >/dev/null 2>&1; fi
    47     done
    48 fi
    49 
    50 # Save the uClibc .config file
    51 if [ -n "${CT_LIBC_UCLIBC_CONFIG_FILE}" ]; then
    52     # We save the file, and then point the saved sample to this file
    53     cp "${CT_LIBC_UCLIBC_CONFIG_FILE}" "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"
    54     svn add "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config" >/dev/null 2>&1
    55     sed -r -i -e 's|^(CT_LIBC_UCLIBC_CONFIG_FILE=).+$|\1"${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"|;' \
    56         "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
    57 else
    58     # remove any dangling files
    59     for f in "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-"*.config; do
    60         if [ -f "${f}" ]; then svn rm --force "${f}" >/dev/null 2>&1; fi
    61     done
    62 fi
    63 
    64 # We could svn add earlier, but it's better to
    65 # add a frozen file than modifying it later
    66 svn add "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config" >/dev/null 2>&1
    67 
    68 svn stat "${CT_TOP_DIR}/samples/${CT_TARGET}" 2>/dev/null |CT_DoLog INFO
    69 
    70 rm -f "${CT_ACTUAL_LOG_FILE}"