kernel: fix dependency on non-existent symbol
authorStijn Tintel <[email protected]>
Wed, 26 Nov 2025 18:55:40 +0000 (20:55 +0200)
committerStijn Tintel <[email protected]>
Wed, 26 Nov 2025 19:08:01 +0000 (21:08 +0200)
KERNEL_ARM64_CONTPTE depends on KERNEL_ARM64 which does not exist. Fix
it by depending on aarch64 instead.

Fixes: e9799d2dd4b0 ("kernel: add KERNEL_ARM64_CONTPTE")
Signed-off-by: Stijn Tintel <[email protected]>
config/Config-kernel.in

index 86a7804f96ac911a360591bead82111ab3768d27..e03d6ce08605c5dc02afda54ad47d56af1dac059 100644 (file)
@@ -602,7 +602,7 @@ endchoice
 
 config KERNEL_ARM64_CONTPTE
        bool "Compile the kernel with Contiguous PTE mappings for user memory"
-       depends on KERNEL_ARM64
+       depends on aarch64
        depends on KERNEL_TRANSPARENT_HUGEPAGE
        depends on !LINUX_6_6
        default y