mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2025-12-10 08:44:39 +01:00
kernel: fix dependency on non-existent symbol
KERNEL_ARM64_CONTPTE depends on KERNEL_ARM64 which does not exist. Fix
it by depending on aarch64 instead.
Fixes: e9799d2dd4 ("kernel: add KERNEL_ARM64_CONTPTE")
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
This commit is contained in:
parent
2418ff90d9
commit
e6b35fef99
1 changed files with 1 additions and 1 deletions
|
|
@ -602,7 +602,7 @@ endchoice
|
||||||
|
|
||||||
config KERNEL_ARM64_CONTPTE
|
config KERNEL_ARM64_CONTPTE
|
||||||
bool "Compile the kernel with Contiguous PTE mappings for user memory"
|
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 KERNEL_TRANSPARENT_HUGEPAGE
|
||||||
depends on !LINUX_6_6
|
depends on !LINUX_6_6
|
||||||
default y
|
default y
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue