blob: 4141043b2faf5ea4c0209171e85cf7a1cd0776ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
build() {
SCRIPT="archiso_loop_mnt"
}
help() {
cat<<HELPEOF
This hook loads the necessary modules for boot via loop device.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et:
|