OSDN Git Service

update MMU config options to utilize USE_MMU instead of HAS_MMU
authorMike Frysinger <vapier@gentoo.org>
Sun, 19 Feb 2006 09:52:00 +0000 (09:52 -0000)
committerMike Frysinger <vapier@gentoo.org>
Sun, 19 Feb 2006 09:52:00 +0000 (09:52 -0000)
extra/Configs/Config.in
extra/Configs/Config.in.arch

index d39104b..6c77b59 100644 (file)
@@ -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
 
index a8fc45d..f5c31b2 100644 (file)
@@ -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