diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-15 20:19:16 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-15 20:19:16 -0400 |
commit | 69bb0f15996ff36161ef9db400286997189f04ab (patch) | |
tree | a3fe81c2156baecf0713ead5a37e9b5a01ff7b81 /src/sys/arch/amd64/conf/GENERIC | |
parent | 00aac70b23d3fb72ea0e5878a5edfc3a098f422f (diff) |
kern/amd64: i8042: Add option to poll keyboard
Some hardware may not work too well with the i8042 and interrupts, as a
mitigation, we've added an option to poll instead of using interrupts
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/arch/amd64/conf/GENERIC')
-rw-r--r-- | src/sys/arch/amd64/conf/GENERIC | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sys/arch/amd64/conf/GENERIC b/src/sys/arch/amd64/conf/GENERIC index 93919d8..f402941 100644 --- a/src/sys/arch/amd64/conf/GENERIC +++ b/src/sys/arch/amd64/conf/GENERIC @@ -2,3 +2,7 @@ // as a method. Some firmware (e.g., on some laptops) // may not handle these well and hang. option I8042_REBOOT yes + +// Controls if the i8042 should be polled +// rather than dependent on interrupts +option I8042_POLL no |