ct-ng.comp
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Oct 22 20:50:10 2008 +0000 (2008-10-22)
changeset 962 2ba4393e0441
parent 932 264d38e5b5ba
child 1000 b5bbe3bf5204
permissions -rw-r--r--
Make Super-H finally compile a complete (C-only) toolchain:
- new, un-tested patches
- an sh4 sample to work on, and to try to reproduce later.

/trunk/patches/glibc/2.7/250-sh-chop-linux-version.patch | 49 49 0 0 ++
/trunk/patches/glibc/2.7/240-sh-lowlevellock-asm.patch | 56 56 0 0 +++
/trunk/patches/glibc/2.7/270-sh-fix-procfs.patch | 11 11 0 0 +
/trunk/patches/glibc/2.7/280-sh-fix-kernel-heders-location.patch | 23 23 0 0 +
/trunk/patches/glibc/2.7/260-sh-syscall-error-path.patch | 26 26 0 0 +
/trunk/samples/sh4-unknown-linux-gnu/crosstool.config | 311 311 0 0 ++++++++++++++
/trunk/samples/sh4-unknown-linux-gnu/reported.by | 3 3 0 0 +
7 files changed, 479 insertions(+)
yann@835
     1
# To be sourced
yann@835
     2
yann@835
     3
_ct-ng () {
yann@835
     4
    local cur prev samples show_samples actions steps start_steps stop_steps ct_ng_opts vars
yann@835
     5
    COMPREPLY=()
yann@835
     6
    cur=$(_get_cword)
yann@835
     7
    prev=${COMP_WORDS[COMP_CWORD-1]}
yann@835
     8
yann@918
     9
    samples=$(${COMP_WORDS[0]} list-samples 2>/dev/null)
yann@835
    10
    show_samples=$(echo "${samples}" |sed -r -e 's/(^| )/\1show-/g;')
yann@835
    11
yann@918
    12
    steps=$(${COMP_WORDS[0]} list-steps 2>/dev/null |awk '$1 == "-" { print $2; }')
yann@934
    13
    start_steps=$(echo "${steps}" |sed -r -e 's/($| )/\1+/;')
yann@835
    14
    stop_steps=$(echo "${steps}" |sed -r -e 's/(^| )/+\1/;')
yann@835
    15
yann@925
    16
    actions='menuconfig oldconfig saveconfig
yann@918
    17
             list-samples build build. list-steps regtest regtest-local
yann@848
    18
             regtest-global clean distclean wiki-samples updatetools
yann@932
    19
             tarball version'
yann@835
    20
yann@835
    21
    vars="RESTART= STOP="
yann@835
    22
yann@835
    23
    ct_ng_opts="${samples} ${show_samples}
yann@835
    24
                ${steps} ${start_steps} ${stop_steps}
yann@835
    25
                ${actions} ${vars}"
yann@835
    26
yann@835
    27
    COMPREPLY=($(compgen -W "${ct_ng_opts}" -- "${cur}"))
yann@835
    28
    return 0
yann@835
    29
}
yann@835
    30
complete -F _ct-ng ct-ng