mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-19 03:06:42 +00:00
16c6cc994f
- 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(-)
31 lines
979 B
Plaintext
31 lines
979 B
Plaintext
# To be sourced
|
|
|
|
_ct-ng () {
|
|
local cur prev samples show_samples actions steps start_steps stop_steps ct_ng_opts vars
|
|
COMPREPLY=()
|
|
cur=$(_get_cword)
|
|
prev=${COMP_WORDS[COMP_CWORD-1]}
|
|
|
|
samples=$(${COMP_WORDS[0]} list-samples)
|
|
show_samples=$(echo "${samples}" |sed -r -e 's/(^| )/\1show-/g;')
|
|
|
|
steps=$(${COMP_WORDS[0]} list-steps |awk '$1 == "-" { print $2; }')
|
|
start_steps=$(echo "${steps}" |sed -r -e 's/(^| )/\1+/;')
|
|
stop_steps=$(echo "${steps}" |sed -r -e 's/(^| )/+\1/;')
|
|
|
|
actions='config menuconfig oldconfig saveconfig
|
|
list-samples build list-steps regtest regtest-local
|
|
regtest-global clean distclean wiki-samples updatetools
|
|
tarball'
|
|
|
|
vars="RESTART= STOP="
|
|
|
|
ct_ng_opts="${samples} ${show_samples}
|
|
${steps} ${start_steps} ${stop_steps}
|
|
${actions} ${vars}"
|
|
|
|
COMPREPLY=($(compgen -W "${ct_ng_opts}" -- "${cur}"))
|
|
return 0
|
|
}
|
|
complete -F _ct-ng ct-ng
|