summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extra/Configs/Config.in6
-rw-r--r--extra/Configs/Config.in.arch4
2 files changed, 5 insertions, 5 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in
index d39104b71..6c77b5949 100644
--- a/extra/Configs/Config.in
+++ b/extra/Configs/Config.in
@@ -378,8 +378,8 @@ config UCLIBC_HAS_LFS
choice
prompt "Malloc Implementation"
- default MALLOC if ! ARCH_HAS_MMU
- default MALLOC_STANDARD if ARCH_HAS_MMU
+ default MALLOC if ! ARCH_USE_MMU
+ default MALLOC_STANDARD if ARCH_USE_MMU
help
"malloc" use mmap for all allocations and so works very well on MMU-less
systems that do not support the brk() system call. It is pretty smart
@@ -411,7 +411,7 @@ config MALLOC_SIMPLE
config MALLOC_STANDARD
bool "malloc-standard"
- depends on ARCH_HAS_MMU
+ depends on ARCH_USE_MMU
endchoice
diff --git a/extra/Configs/Config.in.arch b/extra/Configs/Config.in.arch
index a8fc45d27..f5c31b276 100644
--- a/extra/Configs/Config.in.arch
+++ b/extra/Configs/Config.in.arch
@@ -118,12 +118,12 @@ config KERNEL_SOURCE
config UCLIBC_UCLINUX_BROKEN_MUNMAP
bool
- depends on !ARCH_HAS_MMU
+ depends on !ARCH_USE_MMU
default y
config EXCLUDE_BRK
bool
- depends on !ARCH_HAS_MMU
+ depends on !ARCH_USE_MMU
default y
config HAVE_DOT_CONFIG