summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/uclibc.org/about.html2
-rw-r--r--extra/Configs/Config.cris18
2 files changed, 11 insertions, 9 deletions
diff --git a/docs/uclibc.org/about.html b/docs/uclibc.org/about.html
index 73bc02c8e..51f261b39 100644
--- a/docs/uclibc.org/about.html
+++ b/docs/uclibc.org/about.html
@@ -30,7 +30,7 @@ you plan to burn Linux into the system's firmware...
uClibc is maintained by <a href=
"http://codepoet.org/andersen/erik/erik.html">Erik Andersen</a>
and is licensed under the
-<a href="http://www.gnu.org/copyleft/lgpl.html">GNU LIBRARY GENERAL PUBLIC LICENSE</a>
+<a href="http://www.gnu.org/copyleft/lesser.html">GNU LESSER GENERAL PUBLIC LICENSE</a>
. This license allows you to make closed source commercial applications using
uClibc. (Please consider sharing some of the money you make ;-). You do not need
to give away all your source code just because you use uClibc and/or run on Linux.
diff --git a/extra/Configs/Config.cris b/extra/Configs/Config.cris
index c8fc23e73..f6e2e3c05 100644
--- a/extra/Configs/Config.cris
+++ b/extra/Configs/Config.cris
@@ -3,23 +3,20 @@
# see extra/config/Kconfig-language.txt
#
-config HAVE_ELF
- bool
- default y
-
config TARGET_ARCH
default "cris"
+config FORCE_OPTIONS_FOR_ARCH
+ bool
+ default y
+ select ARCH_LITTLE_ENDIAN
+
config ARCH_CFLAGS
string
config LIBGCC_CFLAGS
string
-config ARCH_SUPPORTS_LITTLE_ENDIAN
- bool
- default y
-
choice
prompt "Target Architecture Type"
default CONFIG_CRIS
@@ -29,9 +26,14 @@ choice
These are the possible settings:
- CRIS Generic support for Axis' CRIS architecture.
+ - CRISv32 Support for Axis' CRISv32 architecture.
config CONFIG_CRIS
select ARCH_HAS_MMU
bool "CRIS"
+config CONFIG_CRISV32
+ select ARCH_HAS_MMU
+ bool "CRISv32"
+
endchoice