diff options
author | Thomas Bächler <thomas@archlinux.org> | 2009-06-06 22:56:12 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2009-06-06 22:56:12 +0200 |
commit | 2f7a21aaf71ba7b603666de181586bb7453bbf10 (patch) | |
tree | 3e5ed425d7458f43d04c3ede8c067e7c9e6918b2 /install | |
parent | 61f6d3a913354572192f2b31ad380cb410988300 (diff) | |
download | mkinitcpio-2f7a21aaf71ba7b603666de181586bb7453bbf10.tar.gz mkinitcpio-2f7a21aaf71ba7b603666de181586bb7453bbf10.tar.xz |
Remove the filesystems runtime hook: Detection is done by kinit, don't duplicate code here
Diffstat (limited to 'install')
-rw-r--r-- | install/filesystems | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/install/filesystems b/install/filesystems index 67ab1a2..7761fdc 100644 --- a/install/filesystems +++ b/install/filesystems @@ -5,14 +5,13 @@ install () MODULES=" $(checked_modules '/kernel/fs' | grep -v "nls") $(checked_modules '/kernel/fs/nls/nls_cp437')" BINARIES="" FILES="" - SCRIPT="filesystems" + SCRIPT="" } 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, add the autodetect hook too. + This hook adds filesystems modules to the image. If you would like to + minimize the modules installed in the image, add the autodetect hook too. HELPEOF } |