summaryrefslogtreecommitdiffstats
path: root/modules.d/80test-makeroot/module-setup.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xmodules.d/80test-makeroot/module-setup.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/modules.d/80test-makeroot/module-setup.sh b/modules.d/80test-makeroot/module-setup.sh
new file mode 100755
index 0000000..eb6fb74
--- /dev/null
+++ b/modules.d/80test-makeroot/module-setup.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+check() {
+ # Only include the module if another module requires it
+ return 255
+}
+
+depends() {
+ echo "dash rootfs-block kernel-modules qemu"
+}
+
+installkernel() {
+ instmods piix ide-gd_mod ata_piix ext4 sd_mod
+}
+
+install() {
+ inst_multiple poweroff cp umount sync dd
+ inst_hook initqueue/finished 01 "$moddir/finished-false.sh"
+}