tools/addToolVersion.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jul 28 21:34:41 2007 +0000 (2007-07-28)
changeset 301 2be7232a73ac
parent 239 988e9b7f70eb
child 322 3f14c769a4dc
permissions -rwxr-xr-x
Bump version to 0.2.2.
     1 #!/bin/sh
     2 
     3 # Adds a new version to one of the toolchain component
     4 myname="$0"
     5 
     6 doHelp() {
     7     cat <<-EOF
     8 Usage: ${myname} <tool> [option] <version>
     9   'tool' in one of:
    10     --gcc, --binutils, --glibc, --uClibc, --linux,
    11     --gdb, --dmalloc, --duma, --strace, --ltrace, --libelf
    12 
    13   Valid options for all tools:
    14     --experimental, -x
    15       mark the version as being experimental
    16 
    17     --obsolete, -o
    18       mark the version as being obsolete
    19 
    20   Valid mandatory 'option' for tool==gcc is one and only one of:
    21     --core, --final
    22 
    23   Valid mandatory 'option' for tool==linux is one and only one of:
    24     --install, --sanitised, --copy
    25 
    26   'version' is a valid version for the specified tool.
    27 
    28   Examples:
    29     add version 2.6.19.2 to linux kernel install method:
    30       ${myname} --linux --install 2.6.19.2
    31 
    32     add versions 2.3.5 and 2.3.6 to glibc:
    33       ${myname} --glibc 2.3.5 2.3.6
    34 EOF
    35 }
    36 
    37 cat=
    38 tool=
    39 tool_prefix=
    40 tool_suffix=
    41 CORE=
    42 FINAL=
    43 VERSION=
    44 EXP=
    45 OBS=
    46 
    47 i=1
    48 while [ $i -le $# ]; do
    49     case "${!i}" in
    50         # Tools:
    51         --gcc)              cat=CC;        tool=gcc;      tool_prefix=cc_;      tool_suffix=;;
    52         --binutils)         cat=BINUTILS;  tool=binutils; tool_prefix=;         tool_suffix=;;
    53         --glibc)            cat=LIBC;      tool=glibc;    tool_prefix=libc_;    tool_suffix=;;
    54         --uClibc)           cat=LIBC;      tool=uClibc;   tool_prefix=libc_;    tool_suffix=;;
    55         --linux)            cat=KERNEL;    tool=linux;    tool_prefix=kernel_;  tool_suffix=;;
    56         --gdb)              cat=GDB;       tool=gdb;      tool_prefix=debug/    tool_suffix=;;
    57         --dmalloc)          cat=DMALLOC;   tool=dmalloc;  tool_prefix=debug/    tool_suffix=;;
    58         --duma)             cat=DUMA;      tool=duma;     tool_prefix=debug/    tool_suffix=;;
    59         --strace)           cat=STRACE;    tool=strace;   tool_prefix=debug/    tool_suffix=;;
    60         --ltrace)           cat=LTRACE;    tool=ltrace;   tool_prefix=debug/    tool_suffix=;;
    61         --libelf)           cat=LIBELF;    tool=libelf;   tool_prefix=tools/    tool_suffix=;;
    62         # Tools options:
    63         -x|--experimental)  EXP=1; OBS=;;
    64         -o|--obsolete)      OBS=1; EXP=;;
    65         --core)             CORE=1; FINAL=;;
    66         --final)            FINAL=1; CORE=;;
    67         --install)          tool_suffix=install;;
    68         --sanitised)        tool_suffix=sanitised;;
    69         --copy)             tool_suffix=copy;;
    70         # Misc:
    71         -h|--help)          doHelp; exit 0;;
    72         -*)                 echo "Unknown option: \"${!i}\". (use -h/--help for help"; exit 1;;
    73         *)                  VERSION="${VERSION} ${!i}";;
    74     esac
    75     i=$((i+1))
    76 done
    77 
    78 [ -n "${tool}" -o -n "${VERSION}" ] || { doHelp; exit 1; }
    79 
    80 case "${cat}" in
    81     CC)     [    -z "${CORE}" -a -z "${FINAL}" ] && { doHelp; exit 1; };;
    82     KERNEL) unset FINAL CORE
    83             [ -z "${tool_suffix}" ] && { doHelp; exit 1; }
    84             ;;
    85     *)      CORE=; FINAL=;;
    86 esac
    87 
    88 MIDDLE_V=; MIDDLE_F=
    89 [ -n "${CORE}" ] && MIDDLE_V="_CORE" && MIDDLE_F="core_"
    90 for ver in ${VERSION}; do
    91     unset DEP L1 L2 L3 L4 L5 FILE
    92     v=`echo "${ver}" |sed -r -e 's/-/_/g; s/\./_/g;'`
    93     if [ "${cat}" = "KERNEL" ]; then
    94         TOOL_SUFFIX="`echo \"${tool_suffix}\" |tr [[:lower:]] [[:upper:]]`"
    95         L1="config ${cat}_${TOOL_SUFFIX}_V_${v}\n"
    96         L2="    bool\n"
    97         L3="    prompt \"${ver}\"\n"
    98         # Extra versions are not necessary visible:
    99         case "${tool_suffix},${ver}" in
   100             sanitised,*)    ;; # Sanitised headers always have an extra version
   101             *,*.*.*.*)      DEP="${DEP} && KERNEL_VERSION_SEE_EXTRAVERSION";;
   102         esac
   103         L5="    default \"${ver}\" if ${cat}_${TOOL_SUFFIX}_V_${v}"
   104         FILE="config/${tool_prefix}${tool}_headers_${tool_suffix}.in"
   105     else
   106         L1="config ${cat}${MIDDLE_V}_V_${v}\n"
   107         L2="    bool\n"
   108         L3="    prompt \"${ver}\"\n"
   109         L5="    default \"${ver}\" if ${cat}${MIDDLE_V}_V_${v}"
   110         FILE="config/${tool_prefix}${MIDDLE_F}${tool}.in"
   111     fi
   112     [ -n "${EXP}" ] && DEP="${DEP} && EXPERIMENTAL"
   113     [ -n "${OBS}" ] && DEP="${DEP} && OBSOLETE"
   114     case "${DEP}" in
   115         "") ;;
   116         *)  L4="    depends on `echo \"${DEP}\" |sed -r -e 's/^ \\&\\& //; s/\\&/\\\\&/g;'`\n"
   117     esac
   118     sed -r -i -e 's/^(# CT_INSERT_VERSION_ABOVE)$/'"${L1}${L2}${L3}${L4}"'\n\1/;
   119                   s/^(# CT_INSERT_VERSION_STRING_ABOVE)$/'"${L5}"'\n\1/;' "${FILE}"
   120 done