scripts/saveSample.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Jan 29 22:09:55 2009 +0000 (2009-01-29)
changeset 1176 8508ec77df4c
parent 967 6377bc687c93
permissions -rwxr-xr-x
If compiling the Java frontend, we'll require a native gcj, but only in this case.

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