Make all compression methods optional to allow
including only the binaries that are needed to uncompress.
# called by dracut
check() {
- require_binaries tar gzip dd echo tr || return 1
+ require_binaries dd echo tr || return 1
return 255
}
# called by dracut
install() {
- inst_multiple tar gzip dd echo tr rmdir
+ inst_multiple dd echo tr
# TODO: make this conditional on a cmdline flag / config option
- inst_multiple -o cpio xz bzip2 zstd
+ inst_multiple -o cpio xz bzip2 zstd tar gzip rmdir
inst_simple "$moddir/img-lib.sh" "/lib/img-lib.sh"
}