diff options
| author | Shiji Yang | 2025-11-27 09:39:05 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-11-27 12:38:17 +0000 |
| commit | de1b8012fe3a208e45fa8213fe4a46dbcc0b8da4 (patch) | |
| tree | 59c1d4f0925d9d0dc299fe7751edd2cac0003a9e | |
| parent | cc88cf5b653bd3c33d611465417d96ae8940a7dc (diff) | |
| download | openwrt-de1b8012fe3a208e45fa8213fe4a46dbcc0b8da4.tar.gz | |
generic: add missing symbol ARM64_CONTPTE
Add the missing symbol to fix build halt on aarch64 targets:
```
Contiguous PTE mappings for user memory (ARM64_CONTPTE) [Y/n/?] (NEW) make[7]: *** [scripts/kconfig/Makefile:85: syncconfig] Error 1
make[6]: *** [Makefile:686: syncconfig] Error 2
```
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
Link: https://github.com/openwrt/openwrt/pull/20954
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | target/linux/generic/config-6.12 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/generic/config-6.12 b/target/linux/generic/config-6.12 index dbf4fe49dd..2b96eb286c 100644 --- a/target/linux/generic/config-6.12 +++ b/target/linux/generic/config-6.12 @@ -339,6 +339,7 @@ CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 # CONFIG_ARM64_AMU_EXTN is not set # CONFIG_ARM64_BTI is not set CONFIG_ARM64_CNP=y +# CONFIG_ARM64_CONTPTE is not set # CONFIG_ARM64_E0PD is not set # CONFIG_ARM64_EPAN is not set # CONFIG_ARM64_ERRATUM_1024718 is not set |