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