diff options
author | Michael Bacarella <michael.bacarella@gmail.com> | 2019-02-07 19:01:18 -0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-02-11 12:24:22 +0000 |
commit | 8ab17520700741b82fe5eff3b44a48f5bf86f57c (patch) | |
tree | 3deefb548ab6ef923925ace3816c8a4b6872b740 | |
parent | 0d25e5ac670d32f61e159cc6a2e9a68cd524d6a6 (diff) |
ec/lenovo/h8/Kconfig: increase ps2 kbd timeout from 3000 to 5000ms
On my Thinkpad T420 the default 3000ms SeaBIOS timeout is too short,
it takes nearly 5000ms for my keyboard to become ready.
Timing out before it's ready leads to pretty bad behavior: I cannot use
my keyboard at all to control SeaBIOS, nor the subsequent GRUB instance.
Linux is fine though, possibly because it does its own keyboard init.
Signed-off-by: Michael Bacarella <michael.bacarella@gmail.com>
Change-Id: Id1681bf3921c8b5dc124d4c4e9072f146f84f3a2
Reviewed-on: https://review.coreboot.org/c/31279
Reviewed-by: Alexander Couzens <lynxis@fe80.eu>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/ec/lenovo/h8/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ec/lenovo/h8/Kconfig b/src/ec/lenovo/h8/Kconfig index f9b0b14612..9df60de0e1 100644 --- a/src/ec/lenovo/h8/Kconfig +++ b/src/ec/lenovo/h8/Kconfig @@ -7,7 +7,7 @@ if EC_LENOVO_H8 config SEABIOS_PS2_TIMEOUT int depends on PAYLOAD_SEABIOS - default 3000 + default 5000 config H8_BEEP_ON_DEATH bool "Beep on fatal error" |