summaryrefslogtreecommitdiffstats
path: root/install/usbinput
blob: f89d0bdc89d32fd7c0c1dcf769bdb27f30b818c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

build() {
    MODULES=" $(checked_modules "/usb/host" | grep -ve "_cs" -e "sl811_hcd" -e "isp116x_hcd")"
    MODULES+=" $(all_modules "/hid/hid-") usbhid?"
}

help() {
    cat <<HELPEOF
This hook loads the necessary modules for an usb input device.  Detection
will take place at runtime. To minimize the modules in the image, add the
autodetect hook too.
HELPEOF
}

# vim: set ft=sh ts=4 sw=4 et: