diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2016-08-10 22:27:46 +0200 |
---|---|---|
committer | Alexander Couzens <lynxis@fe80.eu> | 2016-10-13 14:59:16 +0200 |
commit | 1190e9cf42e4534c9335698cda4f642e0c3eec99 (patch) | |
tree | 1f59768978ff940c4607b371f656ff1339dce544 /src/mainboard | |
parent | 62f4dad88db2640d829c41e787c1c94fd40469ff (diff) |
x60,t60: do not add etc/ps2-keyboard-spinup for non-seabios payloads
Regardless of the payload chosen a file etc/ps2-keyboard-spinup
is added to cbfs. With this fix this file is only added to cbfs when
seabios is choses as a payload.
Change-Id: I37cf4c998856db2d297356776752643dba46a8f8
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/16146
Tested-by: build bot (Jenkins)
Reviewed-by: Alexander Couzens <lynxis@fe80.eu>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/lenovo/t60/Kconfig | 1 | ||||
-rw-r--r-- | src/mainboard/lenovo/x60/Kconfig | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/t60/Kconfig b/src/mainboard/lenovo/t60/Kconfig index 52eeda3d38..8e1ee1e70b 100644 --- a/src/mainboard/lenovo/t60/Kconfig +++ b/src/mainboard/lenovo/t60/Kconfig @@ -52,6 +52,7 @@ config MAX_CPUS config SEABIOS_PS2_TIMEOUT int + depends on PAYLOAD_SEABIOS default 3000 endif diff --git a/src/mainboard/lenovo/x60/Kconfig b/src/mainboard/lenovo/x60/Kconfig index ab4b58eaf3..eecaf6407e 100644 --- a/src/mainboard/lenovo/x60/Kconfig +++ b/src/mainboard/lenovo/x60/Kconfig @@ -59,6 +59,7 @@ config MAX_CPUS config SEABIOS_PS2_TIMEOUT int + depends on PAYLOAD_SEABIOS default 3000 endif |