You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
415 B
21 lines
415 B
#!/bin/bash |
|
# module-setup for img-lib |
|
|
|
# called by dracut |
|
check() { |
|
require_binaries tar gzip dd echo || return 1 |
|
return 255 |
|
} |
|
|
|
# called by dracut |
|
depends() { |
|
return 0 |
|
} |
|
|
|
# called by dracut |
|
install() { |
|
inst_multiple tar gzip dd echo |
|
# TODO: make this conditional on a cmdline flag / config option |
|
inst_multiple -o cpio xz bzip2 zstd |
|
inst_simple "$moddir/img-lib.sh" "/lib/img-lib.sh" |
|
}
|
|
|