ct-ng.comp
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Oct 01 18:10:40 2008 +0000 (2008-10-01)
changeset 894 c444ce4b51b9
parent 848 5b3785e0d41d
child 918 819bb22347d4
permissions -rw-r--r--
Save the toolchain configuration to its own file, as an auto-extracting shell script:
- get rid of the 'extractconfig' action, it was cumbersome to use, and badly documented,
- introduce a skeleton for the config script,
- update auto-completion,
- document the config script.

/trunk/kconfig/kconfig.mk | 9 2 7 0 ++-------
/trunk/scripts/crosstool.sh | 6 5 1 0 +++++-
/trunk/docs/overview.txt | 21 9 12 0 +++++++++------------
/trunk/tools/toolchain-config.in | 8 8 0 0 ++++++++
/trunk/ct-ng.comp | 2 1 1 0 +-
5 files changed, 25 insertions(+), 21 deletions(-)
     1 # To be sourced
     2 
     3 _ct-ng () {
     4     local cur prev samples show_samples actions steps start_steps stop_steps ct_ng_opts vars
     5     COMPREPLY=()
     6     cur=$(_get_cword)
     7     prev=${COMP_WORDS[COMP_CWORD-1]}
     8 
     9     samples=$(${COMP_WORDS[0]} list-samples)
    10     show_samples=$(echo "${samples}" |sed -r -e 's/(^| )/\1show-/g;')
    11 
    12     steps=$(${COMP_WORDS[0]} list-steps |awk '$1 == "-" { print $2; }')
    13     start_steps=$(echo "${steps}" |sed -r -e 's/(^| )/\1+/;')
    14     stop_steps=$(echo "${steps}" |sed -r -e 's/(^| )/+\1/;')
    15 
    16     actions='config menuconfig oldconfig saveconfig
    17              list-samples build list-steps regtest regtest-local
    18              regtest-global clean distclean wiki-samples updatetools
    19              tarball'
    20 
    21     vars="RESTART= STOP="
    22 
    23     ct_ng_opts="${samples} ${show_samples}
    24                 ${steps} ${start_steps} ${stop_steps}
    25                 ${actions} ${vars}"
    26 
    27     COMPREPLY=($(compgen -W "${ct_ng_opts}" -- "${cur}"))
    28     return 0
    29 }
    30 complete -F _ct-ng ct-ng