diff options
-rw-r--r-- | arch/mips/Kbuild.platforms | 1 | ||||
-rw-r--r-- | arch/mips/Makefile | 8 | ||||
-rw-r--r-- | arch/mips/dec/Makefile | 2 | ||||
-rw-r--r-- | arch/mips/dec/Platform | 8 |
4 files changed, 9 insertions, 10 deletions
diff --git a/arch/mips/Kbuild.platforms b/arch/mips/Kbuild.platforms index 7973bb085496..0ba692c1017a 100644 --- a/arch/mips/Kbuild.platforms +++ b/arch/mips/Kbuild.platforms | |||
@@ -3,6 +3,7 @@ | |||
3 | platforms += alchemy | 3 | platforms += alchemy |
4 | platforms += ar7 | 4 | platforms += ar7 |
5 | platforms += cobalt | 5 | platforms += cobalt |
6 | platforms += dec | ||
6 | platforms += jazz | 7 | platforms += jazz |
7 | platforms += loongson | 8 | platforms += loongson |
8 | platforms += mipssim | 9 | platforms += mipssim |
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index f714c8513515..efaae8578ee7 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
@@ -192,14 +192,6 @@ endif | |||
192 | include $(srctree)/arch/mips/Kbuild.platforms | 192 | include $(srctree)/arch/mips/Kbuild.platforms |
193 | 193 | ||
194 | # | 194 | # |
195 | # DECstation family | ||
196 | # | ||
197 | core-$(CONFIG_MACH_DECSTATION) += arch/mips/dec/ | ||
198 | cflags-$(CONFIG_MACH_DECSTATION)+= -I$(srctree)/arch/mips/include/asm/mach-dec | ||
199 | libs-$(CONFIG_MACH_DECSTATION) += arch/mips/dec/prom/ | ||
200 | load-$(CONFIG_MACH_DECSTATION) += 0xffffffff80040000 | ||
201 | |||
202 | # | ||
203 | # Wind River PPMC Board (4KC + GT64120) | 195 | # Wind River PPMC Board (4KC + GT64120) |
204 | # | 196 | # |
205 | core-$(CONFIG_WR_PPMC) += arch/mips/gt64120/wrppmc/ | 197 | core-$(CONFIG_WR_PPMC) += arch/mips/gt64120/wrppmc/ |
diff --git a/arch/mips/dec/Makefile b/arch/mips/dec/Makefile index c530208ee154..9eb2f9c036aa 100644 --- a/arch/mips/dec/Makefile +++ b/arch/mips/dec/Makefile | |||
@@ -8,5 +8,3 @@ obj-y := ecc-berr.o int-handler.o ioasic-irq.o kn01-berr.o \ | |||
8 | obj-$(CONFIG_PROM_CONSOLE) += promcon.o | 8 | obj-$(CONFIG_PROM_CONSOLE) += promcon.o |
9 | obj-$(CONFIG_TC) += tc.o | 9 | obj-$(CONFIG_TC) += tc.o |
10 | obj-$(CONFIG_CPU_HAS_WB) += wbflush.o | 10 | obj-$(CONFIG_CPU_HAS_WB) += wbflush.o |
11 | |||
12 | EXTRA_CFLAGS += -Werror | ||
diff --git a/arch/mips/dec/Platform b/arch/mips/dec/Platform new file mode 100644 index 000000000000..3adbcbd95db1 --- /dev/null +++ b/arch/mips/dec/Platform | |||
@@ -0,0 +1,8 @@ | |||
1 | # | ||
2 | # DECstation family | ||
3 | # | ||
4 | platform-$(CONFIG_MACH_DECSTATION) = dec/ | ||
5 | cflags-$(CONFIG_MACH_DECSTATION) += \ | ||
6 | -I$(srctree)/arch/mips/include/asm/mach-dec | ||
7 | libs-$(CONFIG_MACH_DECSTATION) += arch/mips/dec/prom/ | ||
8 | load-$(CONFIG_MACH_DECSTATION) += 0xffffffff80040000 | ||