summaryrefslogtreecommitdiffstats
path: root/arch/mips64/config.in
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-01-17 23:32:45 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-01-17 23:32:45 +0000
commitbb382d1cd598a97151a0edf5ac26e36afb0a64ce (patch)
treefd9f0ca1b31e5af2faa0d7165e6fd0fbb5524ebf /arch/mips64/config.in
parentaf38bda129551834653720f277a920d7d284bd3d (diff)
- IOC3 driver now will panic when encountering a RX/TX PCI DMA error.
- IOC3 driver does no longer use GFP_DMA which given the _very_ small number of available GFP_DMA pages might have deadlocked the system. - First cut of Origin support. Last minute change: Do no longer use ARC memory / MD hub memory configuration information but klconfig.h stuff. Simpler, faster, shorter. - Zillions of MIPS64 fixes.
Diffstat (limited to 'arch/mips64/config.in')
-rw-r--r--arch/mips64/config.in29
1 files changed, 24 insertions, 5 deletions
diff --git a/arch/mips64/config.in b/arch/mips64/config.in
index 7ee2b2a42..85f28ad6e 100644
--- a/arch/mips64/config.in
+++ b/arch/mips64/config.in
@@ -1,4 +1,4 @@
-# $Id: config.in,v 1.8 1999/11/23 17:12:49 ralf Exp $
+# $Id: config.in,v 1.5 1999/12/04 03:59:00 ralf Exp $
#
# For a description of the syntax of this configuration file,
# see the Configure script.
@@ -13,18 +13,35 @@ endmenu
mainmenu_option next_comment
comment 'Machine selection'
bool 'Support for SGI IP22' CONFIG_SGI_IP22
+bool 'Support for SGI IP27' CONFIG_SGI_IP27
+if [ "$CONFIG_SGI_IP27" = "y" ]; then
+ bool ' IP27 N-Mode' CONFIG_SGI_SN0_N_MODE
+ #bool ' IP27 XXL' CONFIG_SGI_SN0_XXL
+fi
endmenu
#
# Select some configuration options automatically based on user selections
#
unset CONFIG_BOOT_ELF32
+unset CONFIG_BOOT_ELF64
unset CONFIG_ARC32
unset CONFIG_ARC64
+unset CONFIG_BOARD_SCACHE
+unset CONFIG_COHERENT_IO
+unset CONFIG_BINFMT_ELF32
if [ "$CONFIG_SGI_IP22" = "y" ]; then
define_bool CONFIG_BOOT_ELF32 y
define_bool CONFIG_ARC32 y
+ define_bool CONFIG_BOARD_SCACHE y
+ define_bool CONFIG_ARC_MEMORY y
+fi
+
+if [ "$CONFIG_SGI_IP27" = "y" ]; then
+ define_bool CONFIG_BOOT_ELF64 y
+ define_bool CONFIG_ARC64 y
+ define_bool CONFIG_COHERENT_IO y
fi
mainmenu_option next_comment
@@ -47,14 +64,16 @@ if [ "$CONFIG_CPU_R10000" = "y" ]; then
fi
bool 'Generate little endian code' CONFIG_CPU_LITTLE_ENDIAN
-define_bool CONFIG_BINFMT_AOUT n
-define_bool CONFIG_BINFMT_ELF y
-tristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISC
-
bool 'Networking support' CONFIG_NET
bool 'System V IPC' CONFIG_SYSVIPC
bool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCT
bool 'Sysctl support' CONFIG_SYSCTL
+tristate 'Kernel support for 64-bit ELF binaries' CONFIG_BINFMT_ELF
+bool 'Kernel support for Linux/MIPS 32-bit binary compatibility' CONFIG_MIPS32_COMPAT
+if [ "$CONFIG_MIPS32_COMPAT" = "y" ]; then
+ define_bool CONFIG_BINFMT_ELF32 y
+fi
+tristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISC
mainmenu_option next_comment
comment 'Loadable module support'