# bash uboot completion -*- shell-script -*-
_uboot()
{
local cur prev words cword
_init_completion || return
COMPREPLY=( $( compgen -W "branches deps cross clean build flash" -- "$cur" ) )
} &&
complete -F _uboot uboot
# ex: filetype=sh