From d5eb84c195677657cd2b6ca65d82362f6208316e Mon Sep 17 00:00:00 2001 From: Anurag Pateriya Date: Mon, 8 Jun 2026 11:45:55 +0530 Subject: [PATCH] arm64: defconfig: Enable CONFIG_PANIC_ON_OOPS Enable panic-on-oops so the kernel halts immediately on an oops rather than continuing in a potentially inconsistent state. This ensures that test runs produce a clean crash dump and reboot instead of silently limping along after a bug, making failures easier to detect and triage. Signed-off-by: Anurag Pateriya --- arch/arm64/configs/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index 7a76efbc380d3..96819333e42cc 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -1995,3 +1995,4 @@ CONFIG_CORESIGHT_STM=m CONFIG_CORESIGHT_CPU_DEBUG=m CONFIG_CORESIGHT_CTI=m CONFIG_MEMTEST=y +CONFIG_PANIC_ON_OOPS=y