diff options
author | Morris Hsu <morris-hsu@quanta.corp-partner.google.com> | 2024-08-08 16:04:48 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-08-09 17:58:08 +0000 |
commit | b0be97b68bea00b1fc8f8e6089543fb429235951 (patch) | |
tree | d2afa6f6304a0ed5d6bb0cd7f298d2ef7614614b /src | |
parent | bfbc5cfcb2be562fc6fcf31dfcab9b648c9f81c7 (diff) |
mb/google/brox/jubilant: Add Fn key scancode
The Fn key on jubilant emits a scancode of 94 (0x5e).
BUG=b:324079605
TEST=Flash jubilant, boot to Linux kernel, and verify that KEY_FN is
generated when pressed using `evtest`.
Change-Id: I963b0aa85598097fea69ec34d1e79ec0bbec3db3
Signed-off-by: Morris Hsu <morris-hsu@quanta.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83821
Reviewed-by: Ren Kuo <ren.kuo@quanta.corp-partner.google.com>
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/google/brox/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/brox/Kconfig b/src/mainboard/google/brox/Kconfig index 5c44afc0e2..a1d284b553 100644 --- a/src/mainboard/google/brox/Kconfig +++ b/src/mainboard/google/brox/Kconfig @@ -1,7 +1,7 @@ ## SPDX-License-Identifier: GPL-2.0-only config ACPI_FNKEY_GEN_SCANCODE - default 94 if BOARD_GOOGLE_LOTSO + default 94 if (BOARD_GOOGLE_LOTSO || BOARD_GOOGLE_JUBILANT) config BOARD_GOOGLE_BROX_COMMON def_bool n |