blob: eb6fb741dafb96134a45358fc6abfc75a825360d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"
}
|