2019-01-19 17:17:04 -06:00
|
|
|
# bash uboot completion -*- shell-script -*-
|
|
|
|
|
|
|
|
_uboot()
|
|
|
|
{
|
|
|
|
local cur prev words cword
|
|
|
|
_init_completion || return
|
|
|
|
|
2019-01-20 03:13:32 -06:00
|
|
|
COMPREPLY=( $( compgen -W "branches deps cross clean build flash" -- "$cur" ) )
|
2019-01-19 17:17:04 -06:00
|
|
|
} &&
|
|
|
|
complete -F _uboot uboot
|
|
|
|
|
|
|
|
# ex: filetype=sh
|