diff options
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2011-06-25 18:34:07 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2011-06-25 18:52:24 +0200 |
commit | 18eb47e46e0630638011e05cd549ec5d8e0bf490 (patch) | |
tree | e2a43724c79587c43f53fa6047bca09a2316d877 /install/usbinput | |
parent | ead707165e3b084b814ae924e6d206720f414031 (diff) | |
download | mkinitcpio-18eb47e46e0630638011e05cd549ec5d8e0bf490.tar.gz mkinitcpio-18eb47e46e0630638011e05cd549ec5d8e0bf490.tar.xz |
Fix some install hooks due recent change in all_modules()
[fw]
Avoid inclusion of kernel/sound/firewire
[pcmcia]
Avoid inclusion of kernel/sound/pcmcia
[usb] and [usbinput]
Avoid inclusion of ignored modules (via grep cmd)
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
Diffstat (limited to 'install/usbinput')
-rw-r--r-- | install/usbinput | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/usbinput b/install/usbinput index a90cd15..e4bf27e 100644 --- a/install/usbinput +++ b/install/usbinput @@ -2,7 +2,7 @@ build() { - MODULES=" $(checked_modules "/usb/host" | grep -ve "_cs" -e "sl811-hcd" -e "isp116x-hcd") " + MODULES=" $(checked_modules "/usb/host" | grep -ve "_cs" -e "sl811_hcd" -e "isp116x_hcd") " MODULES=" $(echo ${MODULES}) $(all_modules "/hid/hid-") " MODULES=$(echo ${MODULES}) #trim whitespace |