diff options
author | Shane McDonald <mcdonald.shane@gmail.com> | 2010-06-03 06:34:06 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-08-05 08:25:48 -0400 |
commit | 82baa6b0829b810329dd72a31cd5721cba05488a (patch) | |
tree | c86667dfe8c9c7e58a2cb468063ec65773a32eb3 | |
parent | 4300a92e9b3794caee33a8f3985ad883db1b4650 (diff) |
MIPS: PMC-Sierra: Move board Makefile parts to their own Platform file
Signed-off-by: Shane McDonald <mcdonald.shane@gmail.com>
To: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/1354/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/Kbuild.platforms | 1 | ||||
-rw-r--r-- | arch/mips/Makefile | 15 | ||||
-rw-r--r-- | arch/mips/pmc-sierra/Platform | 14 |
3 files changed, 15 insertions, 15 deletions
diff --git a/arch/mips/Kbuild.platforms b/arch/mips/Kbuild.platforms index 9b6e8d71d4c6..c074ee2455b0 100644 --- a/arch/mips/Kbuild.platforms +++ b/arch/mips/Kbuild.platforms | |||
@@ -5,6 +5,7 @@ platforms += ar7 | |||
5 | platforms += cobalt | 5 | platforms += cobalt |
6 | platforms += loongson | 6 | platforms += loongson |
7 | platforms += mipssim | 7 | platforms += mipssim |
8 | platforms += pmc-sierra | ||
8 | platforms += sgi-ip27 | 9 | platforms += sgi-ip27 |
9 | platforms += vr41xx | 10 | platforms += vr41xx |
10 | 11 | ||
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 84fe05a687a4..e83a88d62868 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
@@ -222,21 +222,6 @@ load-$(CONFIG_MIPS_MALTA) += 0xffffffff80100000 | |||
222 | all-$(CONFIG_MIPS_MALTA) := $(COMPRESSION_FNAME).bin | 222 | all-$(CONFIG_MIPS_MALTA) := $(COMPRESSION_FNAME).bin |
223 | 223 | ||
224 | # | 224 | # |
225 | # PMC-Sierra MSP SOCs | ||
226 | # | ||
227 | core-$(CONFIG_PMC_MSP) += arch/mips/pmc-sierra/msp71xx/ | ||
228 | cflags-$(CONFIG_PMC_MSP) += -I$(srctree)/arch/mips/include/asm/pmc-sierra/msp71xx \ | ||
229 | -mno-branch-likely | ||
230 | load-$(CONFIG_PMC_MSP) += 0xffffffff80100000 | ||
231 | |||
232 | # | ||
233 | # PMC-Sierra Yosemite | ||
234 | # | ||
235 | core-$(CONFIG_PMC_YOSEMITE) += arch/mips/pmc-sierra/yosemite/ | ||
236 | cflags-$(CONFIG_PMC_YOSEMITE) += -I$(srctree)/arch/mips/include/asm/mach-yosemite | ||
237 | load-$(CONFIG_PMC_YOSEMITE) += 0xffffffff80100000 | ||
238 | |||
239 | # | ||
240 | # LASAT platforms | 225 | # LASAT platforms |
241 | # | 226 | # |
242 | core-$(CONFIG_LASAT) += arch/mips/lasat/ | 227 | core-$(CONFIG_LASAT) += arch/mips/lasat/ |
diff --git a/arch/mips/pmc-sierra/Platform b/arch/mips/pmc-sierra/Platform new file mode 100644 index 000000000000..f092f2524c5f --- /dev/null +++ b/arch/mips/pmc-sierra/Platform | |||
@@ -0,0 +1,14 @@ | |||
1 | # | ||
2 | # PMC-Sierra MSP SOCs | ||
3 | # | ||
4 | platform-$(CONFIG_PMC_MSP) += pmc-sierra/msp71xx/ | ||
5 | cflags-$(CONFIG_PMC_MSP) += -I$(srctree)/arch/mips/include/asm/pmc-sierra/msp71xx \ | ||
6 | -mno-branch-likely | ||
7 | load-$(CONFIG_PMC_MSP) += 0xffffffff80100000 | ||
8 | |||
9 | # | ||
10 | # PMC-Sierra Yosemite | ||
11 | # | ||
12 | platform-$(CONFIG_PMC_YOSEMITE) += pmc-sierra/yosemite/ | ||
13 | cflags-$(CONFIG_PMC_YOSEMITE) += -I$(srctree)/arch/mips/include/asm/mach-yosemite | ||
14 | load-$(CONFIG_PMC_YOSEMITE) += 0xffffffff80100000 | ||