diff options
-rw-r--r-- | install/keyboard | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/keyboard b/install/keyboard index e5fb61e..9f35089 100644 --- a/install/keyboard +++ b/install/keyboard @@ -7,7 +7,7 @@ build() { # As of 3.5, modaliases seem to be exported for HID # devices, so we can leverage autodetection. - IFS=.- read major minor _ <<<"$KERNELVERSION" + IFS=.- read -r major minor _ <<<"$KERNELVERSION" if (( major > 3 || (major == 3 && minor >= 5) )); then add_checked_modules '/hid/hid' else @@ -16,7 +16,7 @@ build() { add_module 'usbhid' - map add_checked_modules '/input/keyboard' '/input/serio' + add_checked_modules '/input/(serio|keyboard)' } help() { |