summaryrefslogtreecommitdiffstats
path: root/arch/mips/config.in
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2001-03-24 03:10:57 +0000
committerRalf Baechle <ralf@linux-mips.org>2001-03-24 03:10:57 +0000
commit93f107ba6cceee2c35d207349976936da48393bc (patch)
treec33ea3d9e7e92245d6593b694cb514c8db5ff05d /arch/mips/config.in
parentf79c44e04169d10b07b53d4a524c8c41ea5504d5 (diff)
Add code to support the SB1 core, including mmu routines, processor
detection. This also tweaks cpu_probe() to use bits 15:8 of PRId as a company ID, as per the mips32/mips64 specs, and use bits 7:0 as the processor ID within the company. Patch from Justin with mods and some additional bits by me.
Diffstat (limited to 'arch/mips/config.in')
-rw-r--r--arch/mips/config.in58
1 files changed, 21 insertions, 37 deletions
diff --git a/arch/mips/config.in b/arch/mips/config.in
index 801b8c4c4..512789df6 100644
--- a/arch/mips/config.in
+++ b/arch/mips/config.in
@@ -200,6 +200,7 @@ choice 'CPU type' \
RM7000 CONFIG_CPU_RM7000 \
R52xx CONFIG_CPU_NEVADA \
R10000 CONFIG_CPU_R10000 \
+ SB1 CONFIG_CPU_SB1 \
MIPS32 CONFIG_CPU_MIPS32" R4x00
bool 'Override CPU Options' CONFIG_CPU_ADVANCED
@@ -341,53 +342,36 @@ if [ "$CONFIG_NET" = "y" ]; then
bool 'Network device support' CONFIG_NETDEVICES
if [ "$CONFIG_NETDEVICES" = "y" ]; then
-
- if [ "$CONFIG_SGI_IP22" != "y" -a \
- "$CONFIG_DECSTATION" != "y" -a \
- "$CONFIG_BAGET_MIPS" != "y" ]; then
-
- source drivers/net/Config.in
-
- if [ "$CONFIG_ATM" = "y" ]; then
- source drivers/atm/Config.in
- fi
- else
- tristate 'Dummy net driver support' CONFIG_DUMMY
- tristate 'SLIP (serial line) support' CONFIG_SLIP
- if [ "$CONFIG_SLIP" != "n" ]; then
- bool ' CSLIP compressed headers' CONFIG_SLIP_COMPRESSED
- bool ' Keepalive and linefill' CONFIG_SLIP_SMART
- fi
- tristate 'PPP (point-to-point) support' CONFIG_PPP
- if [ ! "$CONFIG_PPP" = "n" ]; then
- comment 'CCP compressors for PPP are only built as modules.'
- fi
+ source drivers/net/Config.in
+ if [ "$CONFIG_ATM" = "y" ]; then
+ source drivers/atm/Config.in
fi
fi
endmenu
fi
-if [ "$CONFIG_ISA" = "y" -o "$CONFIG_PCI" = "y" ]; then
- mainmenu_option next_comment
- comment 'ISDN subsystem'
+source net/ax25/Config.in
- if [ "$CONFIG_NET" != "n" ]; then
- tristate 'ISDN support' CONFIG_ISDN
- if [ "$CONFIG_ISDN" != "n" ]; then
- source drivers/isdn/Config.in
- fi
+source net/irda/Config.in
+
+mainmenu_option next_comment
+comment 'ISDN subsystem'
+if [ "$CONFIG_NET" != "n" ]; then
+ tristate 'ISDN support' CONFIG_ISDN
+ if [ "$CONFIG_ISDN" != "n" ]; then
+ source drivers/isdn/Config.in
fi
- endmenu
+fi
+endmenu
- mainmenu_option next_comment
- comment 'Old CD-ROM drivers (not SCSI, not IDE)'
+mainmenu_option next_comment
+comment 'Old CD-ROM drivers (not SCSI, not IDE)'
- bool 'Support non-SCSI/IDE/ATAPI drives' CONFIG_CD_NO_IDESCSI
- if [ "$CONFIG_CD_NO_IDESCSI" != "n" ]; then
- source drivers/cdrom/Config.in
- fi
- endmenu
+bool 'Support non-SCSI/IDE/ATAPI CDROM drives' CONFIG_CD_NO_IDESCSI
+if [ "$CONFIG_CD_NO_IDESCSI" != "n" ]; then
+ source drivers/cdrom/Config.in
fi
+endmenu
if [ "$CONFIG_DECSTATION" != "y" -a \
"$CONFIG_SGI_IP22" != "y" ]; then