[uClibc-cvs] uClibc/extra/Configs Config.sh, 1.48, 1.49 Config.alpha, 1.17, 1.18 Config.cris, 1.11, 1.12 Config.i386, 1.38, 1.39 Config.in.arch, 1.13, 1.14 Config.in, 1.43, 1.44 Config.powerpc, 1.34, 1.35

Erik Andersen andersen at uclibc.org
Fri Jan 16 13:43:04 UTC 2004


Update of /var/cvs/uClibc/extra/Configs
In directory nail:/home/andersen/CVS/uClibc/extra/Configs

Modified Files:
	Config.sh Config.alpha Config.cris Config.i386 Config.in.arch 
	Config.in Config.powerpc 
Log Message:
s/UCLIBC_HAS_MMU/ARCH_HAS_MMU/g


Index: Config.in.arch
===================================================================
RCS file: /var/cvs/uClibc/extra/Configs/Config.in.arch,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- Config.in.arch	16 Jan 2004 13:38:10 -0000	1.13
+++ Config.in.arch	16 Jan 2004 13:43:01 -0000	1.14
@@ -23,7 +23,7 @@
 	bool
 	default n
 
-config UCLIBC_HAS_MMU
+config ARCH_HAS_MMU
 	bool "Target CPU has a memory management unit (MMU)"
 	default y
 	depends !ARCH_HAS_NO_MMU
@@ -100,12 +100,12 @@
 
 config UCLIBC_UCLINUX_BROKEN_MUNMAP
 	bool
-	depends on !UCLIBC_HAS_MMU
+	depends on !ARCH_HAS_MMU
 	default y
 
 config EXCLUDE_BRK
 	bool
-	depends on !UCLIBC_HAS_MMU
+	depends on !ARCH_HAS_MMU
 	default y
 
 config C_SYMBOL_PREFIX

Index: Config.powerpc
===================================================================
RCS file: /var/cvs/uClibc/extra/Configs/Config.powerpc,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- Config.powerpc	16 Jan 2004 13:38:10 -0000	1.34
+++ Config.powerpc	16 Jan 2004 13:43:01 -0000	1.35
@@ -8,7 +8,7 @@
 
 config HAVE_ELF
 	bool
-	select UCLIBC_HAS_MMU
+	select ARCH_HAS_MMU
 	default y
 
 config ARCH_SUPPORTS_BIG_ENDIAN

Index: Config.cris
===================================================================
RCS file: /var/cvs/uClibc/extra/Configs/Config.cris,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- Config.cris	16 Jan 2004 13:38:10 -0000	1.11
+++ Config.cris	16 Jan 2004 13:43:01 -0000	1.12
@@ -34,7 +34,7 @@
 		- CRIS  Generic support for Axis' CRIS architecture.
 
 config CONFIG_CRIS
-	select UCLIBC_HAS_MMU
+	select ARCH_HAS_MMU
 	bool "CRIS"
 
 endchoice

Index: Config.alpha
===================================================================
RCS file: /var/cvs/uClibc/extra/Configs/Config.alpha,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- Config.alpha	16 Jan 2004 13:38:10 -0000	1.17
+++ Config.alpha	16 Jan 2004 13:43:01 -0000	1.18
@@ -4,7 +4,7 @@
 #
 
 config HAVE_ELF
-	select UCLIBC_HAS_MMU
+	select ARCH_HAS_MMU
 	select HAVE_NO_SHARED
 	select ARCH_HAS_NO_LDSO
 	select HAS_NO_THREADS

Index: Config.sh
===================================================================
RCS file: /var/cvs/uClibc/extra/Configs/Config.sh,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- Config.sh	16 Jan 2004 13:38:10 -0000	1.48
+++ Config.sh	16 Jan 2004 13:43:01 -0000	1.49
@@ -53,16 +53,16 @@
 	bool "SH2"
 
 config CONFIG_SH3
-	select UCLIBC_HAS_MMU
+	select ARCH_HAS_MMU
 	bool "SH3"
 
 config CONFIG_SH4
-	select UCLIBC_HAS_MMU
+	select ARCH_HAS_MMU
 	select FORCE_SHAREABLE_TEXT_SEGMENTS
 	bool "SH4"
 
 config CONFIG_SH5
-	select UCLIBC_HAS_MMU
+	select ARCH_HAS_MMU
 	select UCLIBC_HAS_LFS
 	bool "SH5"
 

Index: Config.in
===================================================================
RCS file: /var/cvs/uClibc/extra/Configs/Config.in,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- Config.in	2 Jan 2004 23:34:12 -0000	1.43
+++ Config.in	16 Jan 2004 13:43:01 -0000	1.44
@@ -312,8 +312,8 @@
 
 choice
 	prompt "Malloc Implementation"
-	default MALLOC if ! UCLIBC_HAS_MMU
-	default MALLOC_STANDARD if UCLIBC_HAS_MMU
+	default MALLOC if ! ARCH_HAS_MMU
+	default MALLOC_STANDARD if ARCH_HAS_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
@@ -342,7 +342,7 @@
 
 config MALLOC_STANDARD
 	bool "malloc-standard"
-	depends on UCLIBC_HAS_MMU
+	depends on ARCH_HAS_MMU
 
 endchoice
 

Index: Config.i386
===================================================================
RCS file: /var/cvs/uClibc/extra/Configs/Config.i386,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- Config.i386	16 Jan 2004 13:38:10 -0000	1.38
+++ Config.i386	16 Jan 2004 13:43:01 -0000	1.39
@@ -5,7 +5,7 @@
 
 config HAVE_ELF
 	bool
-	select UCLIBC_HAS_MMU
+	select ARCH_HAS_MMU
 	default y
 
 config TARGET_ARCH




More information about the uClibc-cvs mailing list