scripts/saveSample.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jul 22 13:29:08 2008 +0000 (2008-07-22)
changeset 710 021546adce69
parent 603 15549c6126c6
child 735 e9cbd9d6e737
permissions -rwxr-xr-x
Allow selecting 'latest' snapshot, as well as 'specific' date snapshot for glibc.
Update uClibc config to commonalise some help.

/trunk/scripts/build/libc_glibc.sh | 22 20 2 0 ++++++++++++++++++++--
/trunk/config/libc/glibc.in | 12 12 0 0 ++++++++++++
/trunk/config/libc/uClibc.in | 12 4 8 0 ++++--------
/trunk/config/libc.in | 13 13 0 0 +++++++++++++
4 files changed, 49 insertions(+), 10 deletions(-)
     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_LIB_DIR}/scripts/functions"
    12 
    13 # Don't care about any log file
    14 exec >/dev/null
    15 rm -f "${tmp_log_file}"
    16 
    17 # Parse the configuration file
    18 CT_TestOrAbort "Configuration file not found. Please create one." -f "${CT_TOP_DIR}/.config"
    19 . "${CT_TOP_DIR}/.config"
    20 
    21 # Do not use a progress bar
    22 unset CT_LOG_PROGRESS_BAR
    23 
    24 # Parse the architecture-specific functions
    25 . "${CT_LIB_DIR}/arch/${CT_ARCH}/functions"
    26 
    27 # Target tuple: CT_TARGET needs a little love:
    28 CT_DoBuildTargetTuple
    29 
    30 # Kludge: if any of the config options needs either CT_TARGET or CT_TOP_DIR,
    31 # re-parse them:
    32 . "${CT_TOP_DIR}/.config"
    33 
    34 # Override log options
    35 unset CT_LOG_PROGRESS_BAR CT_LOG_ERROR CT_LOG_INFO CT_LOG_EXTRA CT_LOG_DEBUG LOG_ALL
    36 CT_LOG_WARN=y
    37 CT_LOG_LEVEL_MAX="WARN"
    38 
    39 # Create the sample directory
    40 if [ ! -d "${CT_TOP_DIR}/samples/${CT_TARGET}" ]; then
    41     mkdir -p "${CT_TOP_DIR}/samples/${CT_TARGET}"
    42 fi
    43 
    44 # Save the crosstool-NG config file
    45 sed -r -e 's|^(CT_PREFIX_DIR)=.*|\1="${HOME}/x-tools/${CT_TARGET}"|;'   \
    46     <"${CT_TOP_DIR}/.config"                                            \
    47     >"${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
    48 
    49 # Function to copy a file to the sample directory
    50 # Needed in case the file is already there (think of a previously available sample)
    51 # Usage: CT_DoAddFileToSample <source> <dest>
    52 CT_DoAddFileToSample() {
    53     source="$1"
    54     dest="$2"
    55     inode_s=$(ls -i "${source}")
    56     inode_d=$(ls -i "${dest}" 2>/dev/null || true)
    57     if [ "${inode_s}" != "${inode_d}" ]; then
    58         cp "${source}" "${dest}"
    59     fi
    60 }
    61 
    62 if [ "${CT_TOP_DIR}" = "${CT_LIB_DIR}" ]; then
    63     samp_top_dir="\${CT_LIB_DIR}"
    64 else
    65     samp_top_dir="\${CT_TOP_DIR}"
    66 fi
    67 
    68 # Save the kernel .config file
    69 if [ -n "${CT_KERNEL_LINUX_CONFIG_FILE}" ]; then
    70     # We save the file, and then point the saved sample to this file
    71     CT_DoAddFileToSample "${CT_KERNEL_LINUX_CONFIG_FILE}" "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-${CT_KERNEL_VERSION}.config"
    72     sed -r -i -e 's|^(CT_KERNEL_LINUX_CONFIG_FILE=).+$|\1"'"${samp_top_dir}"'/samples/${CT_TARGET}/${CT_KERNEL}-${CT_KERNEL_VERSION}.config"|;' \
    73         "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
    74 else
    75     # remove any dangling files
    76     for f in "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_KERNEL}-"*.config; do
    77         if [ -f "${f}" ]; then rm -f "${f}"; fi
    78     done
    79 fi
    80 
    81 # Save the uClibc .config file
    82 if [ -n "${CT_LIBC_UCLIBC_CONFIG_FILE}" ]; then
    83     # We save the file, and then point the saved sample to this file
    84     CT_DoAddFileToSample "${CT_LIBC_UCLIBC_CONFIG_FILE}" "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"
    85     sed -r -i -e 's|^(CT_LIBC_UCLIBC_CONFIG_FILE=).+$|\1"'"${samp_top_dir}"'/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"|;' \
    86         "${CT_TOP_DIR}/samples/${CT_TARGET}/crosstool.config"
    87 else
    88     # remove any dangling files
    89     for f in "${CT_TOP_DIR}/samples/${CT_TARGET}/${CT_LIBC}-"*.config; do
    90         if [ -f "${f}" ]; then rm -f "${f}"; fi
    91     done
    92 fi