summaryrefslogtreecommitdiffstats
path: root/arch/mips/config.in
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2001-02-22 04:12:11 +0000
committerRalf Baechle <ralf@linux-mips.org>2001-02-22 04:12:11 +0000
commitc884ada29ead83a2777c4097489dc4db26419624 (patch)
tree98bc5e293200d703cb6d9b47ab6f052dfaba0041 /arch/mips/config.in
parent95b2d612949328e196b54c7569324e22f98c6ec0 (diff)
Support for Phillips PDAs.
Diffstat (limited to 'arch/mips/config.in')
-rw-r--r--arch/mips/config.in25
1 files changed, 22 insertions, 3 deletions
diff --git a/arch/mips/config.in b/arch/mips/config.in
index 5b98968a0..4484bd651 100644
--- a/arch/mips/config.in
+++ b/arch/mips/config.in
@@ -31,6 +31,13 @@ if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
fi
bool 'Support for MIPS Atlas board' CONFIG_MIPS_ATLAS
bool 'Support for MIPS Malta board' CONFIG_MIPS_MALTA
+ bool 'Support for Philips Nino (EXPERIMENTAL)' CONFIG_NINO
+ if [ "$CONFIG_NINO" = "y" ]; then
+ choice 'Nino Model Number' \
+ "Model-300/301/302/319 CONFIG_NINO_4MB \
+ Model-200/210/312/320/325/350/390 CONFIG_NINO_8MB \
+ Model-500/510 CONFIG_NINO_16MB" CONFIG_NINO_8MB
+ fi
fi
bool 'Support for Mips Magnum 4000' CONFIG_MIPS_MAGNUM_4000
bool 'Support for Momentum Ocelot board' CONFIG_MOMENCO_OCELOT
@@ -185,6 +192,7 @@ comment 'CPU selection'
choice 'CPU type' \
"R3000 CONFIG_CPU_R3000 \
+ R3912 CONFIG_CPU_R3912 \
R6000 CONFIG_CPU_R6000 \
R4300 CONFIG_CPU_R4300 \
R4x00 CONFIG_CPU_R4X00 \
@@ -211,15 +219,23 @@ else
define_bool CONFIG_CPU_HAS_WB n
fi
else
- define_bool CONFIG_CPU_HAS_LLSC y
- define_bool CONFIG_CPU_HAS_WB n
+ if [ "$CONFIG_CPU_R3912" = "y" ]; then
+ define_bool CONFIG_CPU_HAS_LLSC n
+ define_bool CONFIG_CPU_HAS_WB n
+ else
+ define_bool CONFIG_CPU_HAS_LLSC y
+ define_bool CONFIG_CPU_HAS_WB n
+ fi
fi
fi
endmenu
mainmenu_option next_comment
comment 'General setup'
-if [ "$CONFIG_DECSTATION" = "y" -o "$CONFIG_DDB5074" = "y" -o "$CONFIG_DDB5476" = "y" ]; then
+if [ "$CONFIG_DECSTATION" = "y" -o \
+ "$CONFIG_DDB5074" = "y" -o \
+ "$CONFIG_DDB5476" = "y" -o \
+ "$CONFIG_NINO" = "y" ]; then
define_bool CONFIG_CPU_LITTLE_ENDIAN y
else
bool 'Generate little endian code' CONFIG_CPU_LITTLE_ENDIAN
@@ -484,6 +500,9 @@ fi
if [ "$CONFIG_SERIAL" = "y" ]; then
bool 'Remote GDB kernel debugging' CONFIG_REMOTE_DEBUG
fi
+if [ "$CONFIG_SERIAL" = "y" ]; then
+ bool 'Low-level debugging' CONFIG_LL_DEBUG
+fi
bool 'Magic SysRq key' CONFIG_MAGIC_SYSRQ
if [ "$CONFIG_SMP" != "y" ]; then
bool 'Run uncached' CONFIG_MIPS_UNCACHED