pinebook-notes/u-boot/uboot-bash-completion

13 lines
328 B
Plaintext
Raw Permalink Normal View History

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