scripts/saveSample.sh.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Feb 01 18:51:19 2009 +0000 (2009-02-01)
changeset 1189 5c20d52c8270
parent 1017 34267fb0912e
child 1223 df01ad996322
permissions -rwxr-xr-x
Use tools discovered by ./configure in scripts/toolchain-config.in.

/trunk/scripts/crosstool-NG.sh.in | 1 1 0 0 +
/trunk/scripts/toolchain-config.in | 2 1 1 0 +-
2 files changed, 2 insertions(+), 1 deletion(-)
     1 #!@@CT_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 uClibc .config file if uClibc selected
     9 #  - info about who reported the sample
    10 
    11 # Parse the tools' paths configuration
    12 . "${CT_LIB_DIR}/paths.mk"
    13 
    14 # We'll need the stdout later, save it
    15 exec 7>&1
    16 
    17 . "${CT_LIB_DIR}/scripts/functions"
    18 
    19 # Don't care about any log file
    20 exec >/dev/null
    21 rm -f "${tmp_log_file}"
    22 
    23 # Parse the configuration file
    24 CT_TestOrAbort "Configuration file not found. Please create one." -f .config
    25 . .config
    26 
    27 # Do not use a progress bar
    28 unset CT_LOG_PROGRESS_BAR
    29 
    30 # Parse architecture and kernel specific functions
    31 . "${CT_LIB_DIR}/scripts/build/arch/${CT_ARCH}.sh"
    32 . "${CT_LIB_DIR}/scripts/build/kernel/${CT_KERNEL}.sh"
    33 
    34 # Target tuple: CT_TARGET needs a little love:
    35 CT_DoBuildTargetTuple
    36 
    37 # Kludge: if any of the config options needs either CT_TARGET or CT_TOP_DIR,
    38 # re-parse them:
    39 . .config
    40 
    41 # Override log options
    42 unset CT_LOG_PROGRESS_BAR CT_LOG_ERROR CT_LOG_INFO CT_LOG_EXTRA CT_LOG_DEBUG LOG_ALL
    43 CT_LOG_WARN=y
    44 CT_LOG_LEVEL_MAX="WARN"
    45 
    46 # Create the sample directory
    47 if [ ! -d "samples/${CT_TARGET}" ]; then
    48     mkdir -p "samples/${CT_TARGET}"
    49 fi
    50 
    51 # Save the crosstool-NG config file
    52 "${sed}" -r -e 's|^(CT_PREFIX_DIR)=.*|\1="${HOME}/x-tools/${CT_TARGET}"|;'      \
    53             -e 's|^# CT_LOG_TO_FILE is not set$|CT_LOG_TO_FILE=y|;'             \
    54             -e 's|^# CT_LOG_FILE_COMPRESS is not set$|CT_LOG_FILE_COMPRESS=y|;' \
    55             -e 's|^(CT_LOCAL_TARBALLS_DIR)=.*|\1="${HOME}/src"|;'               \
    56          <.config                                                               \
    57     >"samples/${CT_TARGET}/crosstool.config"
    58 
    59 # Function to copy a file to the sample directory
    60 # Needed in case the file is already there (think of a previously available sample)
    61 # Usage: CT_DoAddFileToSample <source> <dest>
    62 CT_DoAddFileToSample() {
    63     source="$1"
    64     dest="$2"
    65     inode_s=$(ls -i "${source}" |"${awk}" '{ print $1; }')
    66     inode_d=$(ls -i "${dest}" 2>/dev/null |"${awk}" '{ print $1; }' || true)
    67     if [ "${inode_s}" != "${inode_d}" ]; then
    68         cp "${source}" "${dest}"
    69     fi
    70 }
    71 
    72 if [ "${CT_TOP_DIR}" = "${CT_LIB_DIR}" ]; then
    73     samp_top_dir="\${CT_LIB_DIR}"
    74 else
    75     samp_top_dir="\${CT_TOP_DIR}"
    76 fi
    77 
    78 # Save the uClibc .config file
    79 if [ -n "${CT_LIBC_UCLIBC_CONFIG_FILE}" ]; then
    80     # We save the file, and then point the saved sample to this file
    81     CT_DoAddFileToSample "${CT_LIBC_UCLIBC_CONFIG_FILE}" "samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"
    82     "${sed}" -r -i -e 's|^(CT_LIBC_UCLIBC_CONFIG_FILE=).+$|\1"'"${samp_top_dir}"'/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"|;' \
    83              "samples/${CT_TARGET}/crosstool.config"
    84 else
    85     # remove any dangling files
    86     for f in "samples/${CT_TARGET}/${CT_LIBC}-"*.config; do
    87         if [ -f "${f}" ]; then rm -f "${f}"; fi
    88     done
    89 fi
    90 
    91 # Restore stdout now, to be interactive
    92 exec >&7
    93 
    94 # Fill-in the reported-by info
    95 [ -f "samples/${CT_TARGET}/reported.by" ] && . "samples/${CT_TARGET}/reported.by"
    96 old_name="${reporter_name}"
    97 old_url="${reporter_url}"
    98 read -p "Reporter name [${reporter_name}]: " reporter_name
    99 read -p "Reporter URL [${reporter_url}]: " reporter_url
   100 if [ -n "${reporter_comment}" ]; then
   101   echo "Old comment if you need to copy-paste:"
   102   printf "${reporter_comment}\n"
   103 fi
   104 echo "Reporter comment (Ctrl-D to finish):"
   105 reporter_comment=$(cat)
   106 
   107 ( echo "reporter_name=\"${reporter_name:=${old_name}}\""
   108   echo "reporter_url=\"${reporter_url:=${old_url}}\""
   109   printf "reporter_comment=\"${reporter_comment}\"\n"
   110 ) >"samples/${CT_TARGET}/reported.by"