scripts/saveSample.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Oct 17 12:47:53 2008 +0000 (2008-10-17)
changeset 943 1cca90ce0481
parent 928 df15727c73d7
child 944 a6e9767c8ef9
permissions -rwxr-xr-x
Update the kconfig stuff to match the one in the linux-2.6.27 version.

/trunk/kconfig/zconf.hash.c | 225 110 115 0 +++----
/trunk/kconfig/lkc_proto.h | 4 3 1 0 +
/trunk/kconfig/mconf.c | 217 110 107 0 +++---
/trunk/kconfig/menu.c | 86 60 26 0 ++-
/trunk/kconfig/symbol.c | 212 156 56 0 ++++--
/trunk/kconfig/kconfig.mk | 24 9 15 0 -
/trunk/kconfig/lex.zconf.c | 97 80 17 0 ++-
/trunk/kconfig/util.c | 38 30 8 0 +
/trunk/kconfig/lkc.h | 22 18 4 0 +
/trunk/kconfig/expr.c | 32 19 13 0 +
/trunk/kconfig/confdata.c | 254 172 82 0 +++++---
/trunk/kconfig/lxdialog/dialog.h | 12 9 3 0 +
/trunk/kconfig/lxdialog/inputbox.c | 6 3 3 0
/trunk/kconfig/lxdialog/checklist.c | 4 2 2 0
/trunk/kconfig/lxdialog/menubox.c | 6 3 3 0
/trunk/kconfig/lxdialog/textbox.c | 2 1 1 0
/trunk/kconfig/lxdialog/util.c | 47 30 17 0 +
/trunk/kconfig/lxdialog/yesno.c | 4 2 2 0
/trunk/kconfig/expr.h | 20 10 10 0
/trunk/kconfig/zconf.tab.c | 1441 793 648 0 ++++++++++++++++++++++++-------------------
/trunk/kconfig/conf.c | 276 124 152 0 ++++----
/trunk/kconfig/check-gettext.sh | 14 14 0 0 +
/trunk/ct-ng.in | 2 1 1 0
23 files changed, 1759 insertions(+), 1286 deletions(-)
yann@63
     1
#!/bin/bash
yann@63
     2
yann@63
     3
# This script is responsible for saving the current configuration into a
yann@63
     4
# sample to be used later on as a pre-configured target.
yann@63
     5
yann@63
     6
# What we need to save:
yann@63
     7
#  - the .config file
yann@63
     8
#  - the uClibc .config file if uClibc selected
yann@935
     9
#  - info about who reported the sample
yann@935
    10
yann@935
    11
# We'll need the stdout later, save it
yann@935
    12
exec 7>&1
yann@63
    13
yann@182
    14
. "${CT_LIB_DIR}/scripts/functions"
yann@63
    15
yann@165
    16
# Don't care about any log file
yann@115
    17
exec >/dev/null
yann@165
    18
rm -f "${tmp_log_file}"
yann@84
    19
yann@63
    20
# Parse the configuration file
yann@935
    21
CT_TestOrAbort "Configuration file not found. Please create one." -f .config
yann@935
    22
. .config
yann@63
    23
yann@682
    24
# Do not use a progress bar
yann@682
    25
unset CT_LOG_PROGRESS_BAR
yann@682
    26
yann@927
    27
# Parse architecture-specific functions
yann@927
    28
. "${CT_LIB_DIR}/scripts/build/arch/${CT_ARCH}.sh"
yann@394
    29
yann@335
    30
# Target tuple: CT_TARGET needs a little love:
yann@335
    31
CT_DoBuildTargetTuple
yann@63
    32
yann@64
    33
# Kludge: if any of the config options needs either CT_TARGET or CT_TOP_DIR,
yann@64
    34
# re-parse them:
yann@935
    35
. .config
yann@64
    36
yann@682
    37
# Override log options
yann@682
    38
unset CT_LOG_PROGRESS_BAR CT_LOG_ERROR CT_LOG_INFO CT_LOG_EXTRA CT_LOG_DEBUG LOG_ALL
yann@603
    39
CT_LOG_WARN=y
yann@603
    40
CT_LOG_LEVEL_MAX="WARN"
yann@126
    41
yann@63
    42
# Create the sample directory
yann@935
    43
if [ ! -d "samples/${CT_TARGET}" ]; then
yann@935
    44
    mkdir -p "samples/${CT_TARGET}"
yann@108
    45
fi
yann@63
    46
yann@63
    47
# Save the crosstool-NG config file
yann@735
    48
sed -r -e 's|^(CT_PREFIX_DIR)=.*|\1="${HOME}/x-tools/${CT_TARGET}"|;'       \
yann@735
    49
       -e 's|^# CT_LOG_TO_FILE is not set$|CT_LOG_TO_FILE=y|;'              \
yann@735
    50
       -e 's|^# CT_LOG_FILE_COMPRESS is not set$|CT_LOG_FILE_COMPRESS=y|;'  \
yann@928
    51
       -e 's|^(CT_LOCAL_TARBALLS_DIR)=.*|\1="${HOME}/src"|;'                \
yann@935
    52
    <.config                                                                \
yann@935
    53
    >"samples/${CT_TARGET}/crosstool.config"
yann@63
    54
yann@64
    55
# Function to copy a file to the sample directory
yann@64
    56
# Needed in case the file is already there (think of a previously available sample)
yann@64
    57
# Usage: CT_DoAddFileToSample <source> <dest>
yann@64
    58
CT_DoAddFileToSample() {
yann@64
    59
    source="$1"
yann@64
    60
    dest="$2"
yann@523
    61
    inode_s=$(ls -i "${source}")
yann@523
    62
    inode_d=$(ls -i "${dest}" 2>/dev/null || true)
yann@64
    63
    if [ "${inode_s}" != "${inode_d}" ]; then
yann@64
    64
        cp "${source}" "${dest}"
yann@64
    65
    fi
yann@64
    66
}
yann@64
    67
yann@182
    68
if [ "${CT_TOP_DIR}" = "${CT_LIB_DIR}" ]; then
yann@182
    69
    samp_top_dir="\${CT_LIB_DIR}"
yann@182
    70
else
yann@182
    71
    samp_top_dir="\${CT_TOP_DIR}"
yann@182
    72
fi
yann@182
    73
yann@63
    74
# Save the uClibc .config file
yann@63
    75
if [ -n "${CT_LIBC_UCLIBC_CONFIG_FILE}" ]; then
yann@63
    76
    # We save the file, and then point the saved sample to this file
yann@935
    77
    CT_DoAddFileToSample "${CT_LIBC_UCLIBC_CONFIG_FILE}" "samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"
yann@182
    78
    sed -r -i -e 's|^(CT_LIBC_UCLIBC_CONFIG_FILE=).+$|\1"'"${samp_top_dir}"'/samples/${CT_TARGET}/${CT_LIBC}-${CT_LIBC_VERSION}.config"|;' \
yann@935
    79
        "samples/${CT_TARGET}/crosstool.config"
yann@63
    80
else
yann@63
    81
    # remove any dangling files
yann@935
    82
    for f in "samples/${CT_TARGET}/${CT_LIBC}-"*.config; do
yann@182
    83
        if [ -f "${f}" ]; then rm -f "${f}"; fi
yann@63
    84
    done
yann@63
    85
fi
yann@935
    86
yann@935
    87
# Restore stdout now, to be interactive
yann@935
    88
exec >&7
yann@935
    89
yann@935
    90
# Fill-in the reported-by info
yann@935
    91
[ -f "samples/${CT_TARGET}/reported.by" ] && . "samples/${CT_TARGET}/reported.by"
yann@935
    92
old_name="${reporter_name}"
yann@935
    93
old_url="${reporter_url}"
yann@935
    94
read -p "Reporter name [${reporter_name}]: " reporter_name
yann@935
    95
read -p "Reporter URL [${reporter_url}]: " reporter_url
yann@935
    96
if [ -n "${reporter_comment}" ]; then
yann@935
    97
  echo "Old comment if you need to copy-paste:"
yann@935
    98
  printf "${reporter_comment}"
yann@935
    99
fi
yann@935
   100
echo "Reporter comment (Ctrl-D to finish):"
yann@935
   101
reporter_comment=$(cat)
yann@935
   102
yann@935
   103
( echo "reporter_name=\"${reporter_name:=${old_name}}\""
yann@935
   104
  echo "reporter_url=\"${reporter_url:=${old_url}}\""
yann@935
   105
  printf "reporter_comment=\"${reporter_comment}\"\n"
yann@935
   106
) >"samples/${CT_TARGET}/reported.by"