linux/common-config: fix crash kernel on i686

Following
ee94b00c1a/Documentation/admin-guide/kdump/kdump.rst (dump-capture-kernel-config-options-arch-dependent-i386-and-x86_64),
we need to set CONFIG_HIGHMEM4G as well (not CONFIG_HIGHMEM64G which we
already set).
This commit is contained in:
sternenseemann
2025-08-15 19:56:25 +02:00
parent 7e4fc16ae2
commit 39f89dc647

View File

@@ -111,6 +111,7 @@ let
# Enable crashkernel support
PROC_VMCORE = yes;
HIGHMEM4G = lib.mkIf (stdenv.hostPlatform.isx86 && stdenv.hostPlatform.is32bit) yes;
# Track memory leaks and performance issues related to allocations.
MEM_ALLOC_PROFILING = whenAtLeast "6.10" yes;