summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2003-11-16 16:26:35 +0000
committerManuel Novoa III <mjn3@codepoet.org>2003-11-16 16:26:35 +0000
commitf6552f749d672154866d7b82f4edba2321b80b97 (patch)
tree590c3506a00e4bedb174726a46da25b9a5954035 /extra
parent9f77c8c4934538ef7bc6964d8a7e6ac0945c8447 (diff)
Patch from Jeffrey Baitis <baitisj@evolution.com> for mips arch tuning.
Diffstat (limited to 'extra')
-rw-r--r--extra/Configs/Config.mips36
1 files changed, 36 insertions, 0 deletions
diff --git a/extra/Configs/Config.mips b/extra/Configs/Config.mips
index 777c23869..273e8743d 100644
--- a/extra/Configs/Config.mips
+++ b/extra/Configs/Config.mips
@@ -20,3 +20,39 @@ config ARCH_LDFLAGS
config LIBGCC_CFLAGS
string
+choice
+ prompt "Target Processor Architecture"
+ default CONFIG_MIPS_ISA_1
+ help
+ This selects the instruction set architecture of your MIPS CPU. This
+ information is used for optimizing purposes. To build a library that
+ will run on any MIPS CPU, you can specify "Generic (MIPS I)" here.
+ If you pick anything other than "Generic (MIPS I)," there is no
+ guarantee that uClibc will even run on anything other than the
+ selected processor type.
+
+ You should probably select the MIPS ISA that best matches the
+ CPU you will be using on your device. uClibc will be tuned
+ for that architecture.
+
+ If you don't know what to do, choose "Generic (MIPS I)"
+
+config CONFIG_MIPS_ISA_1
+ bool "Generic (MIPS I)"
+
+config CONFIG_MIPS_ISA_2
+ bool "MIPS II"
+
+config CONFIG_MIPS_ISA_3
+ bool "MIPS III"
+
+config CONFIG_MIPS_ISA_4
+ bool "MIPS IV"
+
+config CONFIG_MIPS_ISA_MIPS32
+ bool "MIPS32"
+
+config CONFIG_MIPS_ISA_MIPS64
+ bool "MIPS64"
+
+endchoice