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