diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2010-08-05 08:25:54 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-08-05 08:25:54 -0400 |
commit | f5e8abd6f1fdba3abf6675700069005e25531208 (patch) | |
tree | de4fa65fc539dae6683c537afb93c58ce4af0d56 /arch/mips | |
parent | 53e4345906703785d6d02bd1b418abe2e8c9ebc1 (diff) |
MIPS: BCM63xx: Migrate to new platform makefile style.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/Kbuild.platforms | 1 | ||||
-rw-r--r-- | arch/mips/Makefile | 7 | ||||
-rw-r--r-- | arch/mips/bcm63xx/Makefile | 2 | ||||
-rw-r--r-- | arch/mips/bcm63xx/Platform | 7 |
4 files changed, 8 insertions, 9 deletions
diff --git a/arch/mips/Kbuild.platforms b/arch/mips/Kbuild.platforms index e4c991efee91..c00aa348a432 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 += bcm47xx | 5 | platforms += bcm47xx |
6 | platforms += bcm63xx | ||
6 | platforms += cobalt | 7 | platforms += cobalt |
7 | platforms += dec | 8 | platforms += dec |
8 | platforms += jazz | 9 | platforms += jazz |
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index b855d066b82f..4cb60db6a44a 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
@@ -280,13 +280,6 @@ core-$(CONFIG_SIBYTE_BIGSUR) += arch/mips/sibyte/swarm/ | |||
280 | load-$(CONFIG_SIBYTE_BIGSUR) := 0xffffffff80100000 | 280 | load-$(CONFIG_SIBYTE_BIGSUR) := 0xffffffff80100000 |
281 | 281 | ||
282 | # | 282 | # |
283 | # Broadcom BCM63XX boards | ||
284 | # | ||
285 | core-$(CONFIG_BCM63XX) += arch/mips/bcm63xx/ | ||
286 | cflags-$(CONFIG_BCM63XX) += -I$(srctree)/arch/mips/include/asm/mach-bcm63xx/ | ||
287 | load-$(CONFIG_BCM63XX) := 0xffffffff80010000 | ||
288 | |||
289 | # | ||
290 | # Common TXx9 | 283 | # Common TXx9 |
291 | # | 284 | # |
292 | core-$(CONFIG_MACH_TX39XX) += arch/mips/txx9/generic/ | 285 | core-$(CONFIG_MACH_TX39XX) += arch/mips/txx9/generic/ |
diff --git a/arch/mips/bcm63xx/Makefile b/arch/mips/bcm63xx/Makefile index 00064b660809..6dfdc69928ac 100644 --- a/arch/mips/bcm63xx/Makefile +++ b/arch/mips/bcm63xx/Makefile | |||
@@ -3,5 +3,3 @@ obj-y += clk.o cpu.o cs.o gpio.o irq.o prom.o setup.o timer.o \ | |||
3 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | 3 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o |
4 | 4 | ||
5 | obj-y += boards/ | 5 | obj-y += boards/ |
6 | |||
7 | EXTRA_CFLAGS += -Werror | ||
diff --git a/arch/mips/bcm63xx/Platform b/arch/mips/bcm63xx/Platform new file mode 100644 index 000000000000..5f86b2fff6de --- /dev/null +++ b/arch/mips/bcm63xx/Platform | |||
@@ -0,0 +1,7 @@ | |||
1 | # | ||
2 | # Broadcom BCM63XX boards | ||
3 | # | ||
4 | platform-$(CONFIG_BCM63XX) += bcm63xx/ | ||
5 | cflags-$(CONFIG_BCM63XX) += \ | ||
6 | -I$(srctree)/arch/mips/include/asm/mach-bcm63xx/ | ||
7 | load-$(CONFIG_BCM63XX) := 0xffffffff80010000 | ||