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.
qubes-linux-utils/dracut/simple/module-setup.sh

18 lines
186 B

#!/bin/bash
check() {
return 255
}
depends() {
echo busybox dm
return 0
}
install() {
inst $moddir/init.sh /init
inst_multiple \
sfdisk \
mkswap
}