Skip to content

Commit 9ff2c7b

Browse files
committed
fix: Add keyboard drivers to CI guest kernels
Firecracker supports sending a CTRL+ALT+DEL event to the guest, to trigger a reboot, and we had an integration test for this. However, the integration test was broken (see #5050), and actually, our guest kernels dont have the necessary drivers compiled in to actually receive the CTRL+ALT+DEL. Fix this by actually enabling the relavant Kconfigs. We don't re-build the artifacts just yet, as it'll happen anyway in a few days when we branch off the next release. Suggested-by: Riccardo Mancini <[email protected]> Signed-off-by: Patrick Roy <[email protected]>
1 parent 57ea620 commit 9ff2c7b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

resources/guest_configs/ci.config

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,10 @@ CONFIG_SQUASHFS_ZSTD=y
55
# aarch64 only TBD split into a separate file
66
CONFIG_DEVMEM=y
77
# CONFIG_ARM64_ERRATUM_3194386 is not set
8+
# Needed for CTRL+ALT+DEL support
9+
CONFIG_SERIO=y
10+
CONFIG_SERIO_I8042=y
11+
CONFIG_SERIO_LIBPS2=y
12+
CONFIG_SERIO_GSCPS2=y
13+
CONFIG_KEYBOARD_ATKBD=y
14+
CONFIG_INPUT_KEYBOARD=y

0 commit comments

Comments
 (0)