diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-05-11 23:21:36 +0200 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2012-05-18 15:39:04 +0200 |
commit | b7c1887306c1067984b5e5b564f25a12631b8162 (patch) | |
tree | 9c8320a2f99da70ce539d744e3c047f22a0ca33b /install/filesystems | |
parent | 261b731e8fb918309f2740b5262d9678378491fa (diff) | |
download | mkinitcpio-b7c1887306c1067984b5e5b564f25a12631b8162.tar.gz mkinitcpio-b7c1887306c1067984b5e5b564f25a12631b8162.tar.xz |
use new API for install hooks
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'install/filesystems')
-rw-r--r-- | install/filesystems | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/filesystems b/install/filesystems index 9230b94..162768a 100644 --- a/install/filesystems +++ b/install/filesystems @@ -2,9 +2,9 @@ build() { if (( fs_autodetect_failed )); then - MODULES=$(all_modules '/kernel/fs' | grep -v "nls") + add_all_modules -f 'nls' '/kernel/fs' else - MODULES=$(checked_modules '/kernel/fs' | grep -v "nls") + add_checked_modules -f 'nls' '/kernel/fs' fi } |