diff options
Diffstat (limited to 'arch/arm/Makefile')
-rw-r--r-- | arch/arm/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index 59c1ce858fc8..b87aed028eef 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile | |||
@@ -173,7 +173,7 @@ machine-$(CONFIG_ARCH_RPC) := rpc | |||
173 | machine-$(CONFIG_ARCH_S3C2410) := s3c2410 s3c2400 s3c2412 s3c2416 s3c2440 s3c2443 | 173 | machine-$(CONFIG_ARCH_S3C2410) := s3c2410 s3c2400 s3c2412 s3c2416 s3c2440 s3c2443 |
174 | machine-$(CONFIG_ARCH_S3C24A0) := s3c24a0 | 174 | machine-$(CONFIG_ARCH_S3C24A0) := s3c24a0 |
175 | machine-$(CONFIG_ARCH_S3C64XX) := s3c64xx | 175 | machine-$(CONFIG_ARCH_S3C64XX) := s3c64xx |
176 | machine-$(CONFIG_ARCH_S5P6440) := s5p6440 | 176 | machine-$(CONFIG_ARCH_S5P64X0) := s5p64x0 |
177 | machine-$(CONFIG_ARCH_S5P6442) := s5p6442 | 177 | machine-$(CONFIG_ARCH_S5P6442) := s5p6442 |
178 | machine-$(CONFIG_ARCH_S5PC100) := s5pc100 | 178 | machine-$(CONFIG_ARCH_S5PC100) := s5pc100 |
179 | machine-$(CONFIG_ARCH_S5PV210) := s5pv210 | 179 | machine-$(CONFIG_ARCH_S5PV210) := s5pv210 |
@@ -183,6 +183,7 @@ machine-$(CONFIG_ARCH_SHARK) := shark | |||
183 | machine-$(CONFIG_ARCH_SHMOBILE) := shmobile | 183 | machine-$(CONFIG_ARCH_SHMOBILE) := shmobile |
184 | machine-$(CONFIG_ARCH_STMP378X) := stmp378x | 184 | machine-$(CONFIG_ARCH_STMP378X) := stmp378x |
185 | machine-$(CONFIG_ARCH_STMP37XX) := stmp37xx | 185 | machine-$(CONFIG_ARCH_STMP37XX) := stmp37xx |
186 | machine-$(CONFIG_ARCH_TCC8K) := tcc8k | ||
186 | machine-$(CONFIG_ARCH_TEGRA) := tegra | 187 | machine-$(CONFIG_ARCH_TEGRA) := tegra |
187 | machine-$(CONFIG_ARCH_U300) := u300 | 188 | machine-$(CONFIG_ARCH_U300) := u300 |
188 | machine-$(CONFIG_ARCH_U8500) := ux500 | 189 | machine-$(CONFIG_ARCH_U8500) := ux500 |
@@ -202,6 +203,7 @@ plat-$(CONFIG_ARCH_MXC) := mxc | |||
202 | plat-$(CONFIG_ARCH_OMAP) := omap | 203 | plat-$(CONFIG_ARCH_OMAP) := omap |
203 | plat-$(CONFIG_ARCH_S3C64XX) := samsung | 204 | plat-$(CONFIG_ARCH_S3C64XX) := samsung |
204 | plat-$(CONFIG_ARCH_STMP3XXX) := stmp3xxx | 205 | plat-$(CONFIG_ARCH_STMP3XXX) := stmp3xxx |
206 | plat-$(CONFIG_ARCH_TCC_926) := tcc | ||
205 | plat-$(CONFIG_PLAT_IOP) := iop | 207 | plat-$(CONFIG_PLAT_IOP) := iop |
206 | plat-$(CONFIG_PLAT_NOMADIK) := nomadik | 208 | plat-$(CONFIG_PLAT_NOMADIK) := nomadik |
207 | plat-$(CONFIG_PLAT_ORION) := orion | 209 | plat-$(CONFIG_PLAT_ORION) := orion |
@@ -245,13 +247,14 @@ ifeq ($(FASTFPE),$(wildcard $(FASTFPE))) | |||
245 | FASTFPE_OBJ :=$(FASTFPE)/ | 247 | FASTFPE_OBJ :=$(FASTFPE)/ |
246 | endif | 248 | endif |
247 | 249 | ||
248 | # If we have a machine-specific directory, then include it in the build. | ||
249 | core-y += arch/arm/kernel/ arch/arm/mm/ arch/arm/common/ | ||
250 | core-y += $(machdirs) $(platdirs) | ||
251 | core-$(CONFIG_FPE_NWFPE) += arch/arm/nwfpe/ | 250 | core-$(CONFIG_FPE_NWFPE) += arch/arm/nwfpe/ |
252 | core-$(CONFIG_FPE_FASTFPE) += $(FASTFPE_OBJ) | 251 | core-$(CONFIG_FPE_FASTFPE) += $(FASTFPE_OBJ) |
253 | core-$(CONFIG_VFP) += arch/arm/vfp/ | 252 | core-$(CONFIG_VFP) += arch/arm/vfp/ |
254 | 253 | ||
254 | # If we have a machine-specific directory, then include it in the build. | ||
255 | core-y += arch/arm/kernel/ arch/arm/mm/ arch/arm/common/ | ||
256 | core-y += $(machdirs) $(platdirs) | ||
257 | |||
255 | drivers-$(CONFIG_OPROFILE) += arch/arm/oprofile/ | 258 | drivers-$(CONFIG_OPROFILE) += arch/arm/oprofile/ |
256 | 259 | ||
257 | libs-y := arch/arm/lib/ $(libs-y) | 260 | libs-y := arch/arm/lib/ $(libs-y) |