summaryrefslogtreecommitdiffstats
path: root/scripts/bash_completion
diff options
context:
space:
mode:
authorJuergen Beisert <jbe@pengutronix.de>2012-06-01 10:33:57 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2012-06-02 09:08:11 +0200
commitc5008fc81b1feec077d56ed03dbb99ae13640a0d (patch)
treee8620f237490324cc013be125aa254d85cdd38db /scripts/bash_completion
parent0df467aa50f6087ec4950b805bdc2cfd430e69b3 (diff)
downloadptxdist-c5008fc81b1feec077d56ed03dbb99ae13640a0d.tar.gz
ptxdist-c5008fc81b1feec077d56ed03dbb99ae13640a0d.tar.xz
Honor the Barebox bootloader
Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'scripts/bash_completion')
-rw-r--r--scripts/bash_completion2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bash_completion b/scripts/bash_completion
index f24672fca..26e8b3afc 100644
--- a/scripts/bash_completion
+++ b/scripts/bash_completion
@@ -25,7 +25,7 @@ _ptxdist_completion()
# Complete depending on options
case ${COMP_WORDS[1]} in
menuconfig)
- COMPREPLY=( $( compgen -W "${opts} kernel platform u-boot-v2" -- $cur) )
+ COMPREPLY=( $( compgen -W "${opts} kernel platform barebox board collection user" -- $cur) )
;;
clone)
#HACK! Enable filename completion without specifying '-o filenames' during complete (that will add slashes to commands if there is a dir of the same name :( )