summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/Configure.help49
-rw-r--r--Makefile6
-rw-r--r--arch/mips/kernel/traps.c4
-rw-r--r--include/asm-arm/floppy.h1
4 files changed, 53 insertions, 7 deletions
diff --git a/Documentation/Configure.help b/Documentation/Configure.help
index 408c2bc88..356becf1e 100644
--- a/Documentation/Configure.help
+++ b/Documentation/Configure.help
@@ -1224,6 +1224,17 @@ CONFIG_ALGOR_P4032
board uses the R4300 and a R5230 CPUs. For more information about
this board see http://www.algor.co.uk.
+Support for BAGET MIPS series
+CONFIG_BAGET_MIPS
+ This enables support for the Baget, a Russian embedded system. For
+ more details about the Baget see the Linux/MIPS FAQ on
+ http://www.linux.sgi.com.
+
+Support for DECstations
+CONFIG_DECSTATION
+ This enables support for DEC's MIPS based workstations. For details
+ see the Linux/MIPS FAQ on http://www.linux.sgi.com.
+
IDE card support
CONFIG_BLK_DEV_IDE_CARDS
On Acorn systems, enable this if you wish to use an IDE interface
@@ -1258,6 +1269,16 @@ CONFIG_OLIVETTI_M700
http://lena.fnet.fr/ (To browse the WWW, you need to have access to
a machine on the Internet that has a program like lynx or netscape).
+MIPS JAZZ onboard SONIC Ethernet support
+CONFIG_MIPS_JAZZ_SONIC
+ This is the driver for the onboard card of of MIPS Magnum 4000,
+ Acer PICA, Olivetti M700-10 and a few other identical OEM systems.
+
+MIPS JAZZ FAS216 SCSI support
+CONFIG_JAZZ_ESP
+ This is the driver for the onboard SCSI hostadapter of MIPS Magnum 4000,
+ Acer PICA, Olivetti M700-10 and a few other identical OEM systems.
+
CPU type
CONFIG_CPU_R3000
Give the type of your machine's MIPS CPU. For this question, it
@@ -1522,6 +1543,15 @@ CONFIG_SERIAL_MULTIPORT
servicing. Say Y here to enable the serial driver to take advantage
of those special I/O ports.
+Support for SGI Indy
+CONFIG_SGI
+ Enable this if you want to compile a kernel for an Silicon Graphics
+ Indy workstation.
+
+SGI PROM Console Support
+CONFIG_SGI_PROM_CONSOLE
+ Enable this if you want to use the PROMs for console I/O.
+
SGI Zilog85C30 serial support
CONFIG_SGI_SERIAL
If you want to use your SGI's built-in serial ports under Linux,
@@ -1534,6 +1564,25 @@ CONFIG_SGI_NEWPORT_GFX
/dev/graphics and /dev/gfx drivers into the kernel for supporting
virtualized access to your graphics hardware.
+SGI Newport Console support
+CONFIG_SGI_NEWPORT_CONSOLE
+ Enable this if you want the console on the Newport aka XL graphics
+ card of your Indy. Most people say Y here.
+
+SGI DS1286 RTC support
+CONFIG_SGI_DS1286
+ If you say Y here and create a character special file /dev/rtc with
+ major number 10 and minor number 135 using mknod ("man mknod"), you
+ will get access to the real time clock built into your computer.
+ Every SGI has such a clock built in. It reports status information
+ via the file /proc/rtc and its behaviour is set by various ioctls on
+ /dev/rtc.
+
+SGI Vino Video For Linux (EXPERIMENTAL)
+CONFIG_SGI_VIDEO_VINO
+ Support for the SGI Vino Video hardware which is part of the Newport
+ aka XL graphics card. Most people will say N here.
+
Support the Bell Technologies HUB6 card
CONFIG_HUB6
Say Y here to enable support in the dumb serial driver to support
diff --git a/Makefile b/Makefile
index 27299e75a..521c86367 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ AR =$(CROSS_COMPILE)ar
NM =$(CROSS_COMPILE)nm
STRIP =$(CROSS_COMPILE)strip
OBJCOPY =$(CROSS_COMPILE)objcopy
-OBJDUMP =$(CROSS_COMPILE)objdump
+OBJDUMP =$(CROSS_COMPILE)objdump
MAKE =make
GENKSYMS=/sbin/genksyms
@@ -195,10 +195,6 @@ ifeq ($(CONFIG_IRDA),y)
DRIVERS := $(DRIVERS) drivers/net/irda/irda_drivers.a
endif
-ifeq ($(CONFIG_TC),y)
-DRIVERS := $(DRIVERS) drivers/tc/tc.a
-endif
-
include arch/$(ARCH)/Makefile
.S.s:
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c
index b6c219169..757fbafc2 100644
--- a/arch/mips/kernel/traps.c
+++ b/arch/mips/kernel/traps.c
@@ -1,4 +1,4 @@
-/* $Id: traps.c,v 1.19 1999/05/01 22:40:38 ralf Exp $
+/* $Id: traps.c,v 1.20 1999/06/13 16:30:34 ralf Exp $
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
@@ -340,7 +340,7 @@ void do_tr(struct pt_regs *regs)
/*
* (A short test says that IRIX 5.3 sends SIGTRAP for all break
* insns, even for break codes that indicate arithmetic failures.
- * Wiered ...)
+ * Weird ...)
*/
force_sig(SIGTRAP, current);
}
diff --git a/include/asm-arm/floppy.h b/include/asm-arm/floppy.h
index 784ca78c4..9d9848644 100644
--- a/include/asm-arm/floppy.h
+++ b/include/asm-arm/floppy.h
@@ -32,6 +32,7 @@
#define fd_set_dma_mode(mode) set_dma_mode(FLOPPY_DMA, (mode))
#define fd_set_dma_addr(addr) set_dma_addr(FLOPPY_DMA, virt_to_bus((addr)))
#define fd_set_dma_count(len) set_dma_count(FLOPPY_DMA, (len))
+#define fd_cacheflush(addr,sz)
/* need to clean up dma.h */
#define DMA_FLOPPYDISK DMA_FLOPPY