blob: c012d1bfb40c6b49f6957c15e821d0eff1cc43b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# vim: set ft=sh:
install ()
{
MODULES=" $(all_modules '/kernel/fs') "
BINARIES=""
FILES=""
SCRIPT="filesystems"
}
help ()
{
cat<<HELPEOF
This hook is responsible for loading filesystems for the root device.
Detection will be done at runtime. If you would like to minimize the
modules installed in the image, use the -auto flavor.
HELPEOF
}
|