summaryrefslogtreecommitdiffstats
path: root/install/mmc
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2012-05-11 23:21:36 +0200
committerDave Reisner <dreisner@archlinux.org>2012-05-18 15:39:04 +0200
commitb7c1887306c1067984b5e5b564f25a12631b8162 (patch)
tree9c8320a2f99da70ce539d744e3c047f22a0ca33b /install/mmc
parent261b731e8fb918309f2740b5262d9678378491fa (diff)
downloadmkinitcpio-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/mmc')
-rw-r--r--install/mmc7
1 files changed, 3 insertions, 4 deletions
diff --git a/install/mmc b/install/mmc
index fb89239..60068df 100644
--- a/install/mmc
+++ b/install/mmc
@@ -1,10 +1,9 @@
#!/bin/bash
build() {
- MODULES=$(checked_modules "/mmc")
-
- if [[ $MODULES ]]; then
- MODULES+=" tifm_7xx1 mmc_block"
+ if add_checked_modules '/mmc'; then
+ add_module 'tifm_7xx1'
+ add_module 'mmc_block'
fi
}