busybox: simplify listing of supported utilities

'--list' option is supported since busybox-1.20.0, which was released
in 2010.
master
Alexander Tsoy 2020-05-25 17:49:20 +03:00 committed by Harald Hoyer
parent f769154bcc
commit 50cc23ba32
1 changed files with 6 additions and 5 deletions

View File

@ -14,15 +14,16 @@ depends() {

# called by dracut
install() {
local _i _progs _path _busybox
local _i _path _busybox
local _progs=()
_busybox=$(type -P busybox)
inst $_busybox /usr/bin/busybox
for _i in $($_busybox | sed -ne '1,/Currently/!{s/,//g; s/busybox//g; p}')
do
_progs="$_progs $_i"
for _i in $($_busybox --list); do
[[ ${_i} == busybox ]] && continue
_progs+=("${_i}")
done

for _i in $_progs; do
for _i in "${_progs[@]}"; do
_path=$(find_binary "$_i")
[ -z "$_path" ] && continue
ln_r /usr/bin/busybox $_path