diff options
Diffstat (limited to 'install')
-rw-r--r-- | install/filesystems-auto | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/install/filesystems-auto b/install/filesystems-auto new file mode 100644 index 0000000..bf7976c --- /dev/null +++ b/install/filesystems-auto @@ -0,0 +1,17 @@ +# vim: set ft=sh: + +install () +{ + MODULES=" $(cat /proc/filesystems | grep -v nodev) " + BINARIES="" + FILES="" + SCRIPT="filesystems" +} + +help () +{ +cat<<HELPEOF + This hook is responsible for loading filesystems for the root device. + Detection will be done at runtime. +HELPEOF +} |