diff options
Diffstat (limited to 'arch/mips/Makefile')
-rw-r--r-- | arch/mips/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 654b1ad39f05..f2dfd404550c 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
@@ -145,8 +145,6 @@ cflags-$(CONFIG_CPU_NEVADA) += $(call cc-option,-march=rm5200,-march=r5000) \ | |||
145 | -Wa,--trap | 145 | -Wa,--trap |
146 | cflags-$(CONFIG_CPU_RM7000) += $(call cc-option,-march=rm7000,-march=r5000) \ | 146 | cflags-$(CONFIG_CPU_RM7000) += $(call cc-option,-march=rm7000,-march=r5000) \ |
147 | -Wa,--trap | 147 | -Wa,--trap |
148 | cflags-$(CONFIG_CPU_RM9000) += $(call cc-option,-march=rm9000,-march=r5000) \ | ||
149 | -Wa,--trap | ||
150 | cflags-$(CONFIG_CPU_SB1) += $(call cc-option,-march=sb1,-march=r5000) \ | 148 | cflags-$(CONFIG_CPU_SB1) += $(call cc-option,-march=sb1,-march=r5000) \ |
151 | -Wa,--trap | 149 | -Wa,--trap |
152 | cflags-$(CONFIG_CPU_R8000) += -march=r8000 -Wa,--trap | 150 | cflags-$(CONFIG_CPU_R8000) += -march=r8000 -Wa,--trap |
@@ -173,9 +171,9 @@ endif | |||
173 | # | 171 | # |
174 | # Firmware support | 172 | # Firmware support |
175 | # | 173 | # |
176 | libs-$(CONFIG_ARC) += arch/mips/fw/arc/ | 174 | libs-$(CONFIG_FW_ARC) += arch/mips/fw/arc/ |
177 | libs-$(CONFIG_CFE) += arch/mips/fw/cfe/ | 175 | libs-$(CONFIG_FW_CFE) += arch/mips/fw/cfe/ |
178 | libs-$(CONFIG_SNIPROM) += arch/mips/fw/sni/ | 176 | libs-$(CONFIG_FW_SNIPROM) += arch/mips/fw/sni/ |
179 | libs-y += arch/mips/fw/lib/ | 177 | libs-y += arch/mips/fw/lib/ |
180 | 178 | ||
181 | # | 179 | # |
@@ -192,6 +190,10 @@ endif | |||
192 | # | 190 | # |
193 | include $(srctree)/arch/mips/Kbuild.platforms | 191 | include $(srctree)/arch/mips/Kbuild.platforms |
194 | 192 | ||
193 | ifdef CONFIG_PHYSICAL_START | ||
194 | load-y = $(CONFIG_PHYSICAL_START) | ||
195 | endif | ||
196 | |||
195 | cflags-y += -I$(srctree)/arch/mips/include/asm/mach-generic | 197 | cflags-y += -I$(srctree)/arch/mips/include/asm/mach-generic |
196 | drivers-$(CONFIG_PCI) += arch/mips/pci/ | 198 | drivers-$(CONFIG_PCI) += arch/mips/pci/ |
197 | 199 | ||