qubes-linux-utils/dracut/simple/module-setup.sh
Marek Marczykowski-Górecki 15cc3b2d51 dracut: Provide minimalistic initramfs files - no udev, no systemd
Provide simple script to run under busybox, this is all we need in the
VM.
2015-03-25 23:25:33 +01:00

15 lines
134 B
Bash

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