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/usbinput | |
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/usbinput')
-rw-r--r-- | install/usbinput | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/install/usbinput b/install/usbinput index f89d0bd..f427600 100644 --- a/install/usbinput +++ b/install/usbinput @@ -1,8 +1,9 @@ #!/bin/bash build() { - MODULES=" $(checked_modules "/usb/host" | grep -ve "_cs" -e "sl811_hcd" -e "isp116x_hcd")" - MODULES+=" $(all_modules "/hid/hid-") usbhid?" + add_checked_modules -f '(_cs|sl811_hcd|isp116x_hcd)' '/usb/host' + add_all_modules '/hid/hid-' + add_module 'usbhid?' } help() { |