ct-ng.comp
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Mar 27 23:40:07 2009 +0000 (2009-03-27)
changeset 1272 ddac62e7c428
parent 1000 b5bbe3bf5204
child 1336 bc8b9381f637
permissions -rw-r--r--
Only create the state dir if asked for a restartable build:
- introduce the config dir, where components can store their config files
- move the munged uClibc config file to the config dir
- now, the state dir really is an indication that a build can be restarted

Thanks to Groleo Marius <groleo@gmail.com> for spotting the inconsistency
of the state dir usage, and suggesting this change.

/trunk/scripts/build/libc/uClibc.sh | 6 3 3 0 +++---
/trunk/scripts/crosstool-NG.sh.in | 9 7 2 0 +++++++--
/trunk/scripts/functions | 15 12 3 0 ++++++++++++---
3 files changed, 22 insertions(+), 8 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 2>/dev/null)
    10     show_samples=$(echo "${samples}" |sed -r -e 's/(^| )/\1show-/g;')
    11     build_samples=$(echo "${samples}" |sed -r -e 's/(^| )/\1build-/g;')
    12 
    13     steps=$(${COMP_WORDS[0]} list-steps 2>/dev/null |awk '$1 == "-" { print $2; }')
    14     start_steps=$(echo "${steps}" |sed -r -e 's/($| )/\1+/;')
    15     stop_steps=$(echo "${steps}" |sed -r -e 's/(^| )/+\1/;')
    16 
    17     actions='help menuconfig oldconfig saveconfig
    18              build build. build-all build-all.
    19              list-samples list-steps
    20              clean distclean wiki-samples updatetools
    21              tarball version'
    22 
    23     vars="RESTART= STOP="
    24 
    25     ct_ng_opts="${samples} ${show_samples} ${build_samples}
    26                 ${steps} ${start_steps} ${stop_steps}
    27                 ${actions} ${vars}"
    28 
    29     COMPREPLY=($(compgen -W "${ct_ng_opts}" -- "${cur}"))
    30     return 0
    31 }
    32 complete -F _ct-ng ct-ng