[oe-commits] SUBHASHINI V : bb_bash_completions: New utility for bitbake recipe autocompletions

git version control git at git.openembedded.org
Sun Oct 4 08:12:47 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: bcd5894dcd9db9234dd6d99a9e1bd0d6d8fef19a
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=bcd5894dcd9db9234dd6d99a9e1bd0d6d8fef19a

Author: SUBHASHINI V <subhashini.venugopalan at gmail.com>
Date:   Sun Oct  4 01:11:00 2009 -0700

bb_bash_completions: New utility for bitbake recipe autocompletions

Signed-off-by: Khem Raj <raj.khem at gmail.com>

---

 contrib/bb_bash_completions |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/contrib/bb_bash_completions b/contrib/bb_bash_completions
new file mode 100644
index 0000000..bee2d96
--- /dev/null
+++ b/contrib/bb_bash_completions
@@ -0,0 +1,22 @@
+# simple bash autocompletions file for the OE recipes. It can be
+# inserted into the default profile.sh, or sourced in the same file.
+
+
+_bitbake() 
+{
+    if [[ $OE_HOME ]]; then
+        local cur prev general exact words
+        COMPREPLY=()
+        cur="${COMP_WORDS[COMP_CWORD]}"
+        prev="${COMP_WORDS[COMP_CWORD-1]}"
+	general=$(ls $OE_HOME/openembedded/recipes)
+	exact=$(find $OE_HOME/openembedded/recipes -name $cur*.bb | xargs -I"@@" basename @@ '.bb')
+	words="$general $exact"
+
+        COMPREPLY=( $(compgen -W "$words" -- ${cur}) )
+        return 0
+    fi
+    return -1
+}
+complete -F _bitbake bitbake
+





More information about the Openembedded-commits mailing list