diff options
author | Chander Kashyap <chander.kashyap@linaro.org> | 2012-02-05 23:01:48 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-02-12 10:11:30 +0100 |
commit | 81e352032ccbf00e756083adc70d418a6ea80b14 (patch) | |
tree | 6407b97408426da3727004b532b5db3b925b1a7e /board/samsung/smdk5250/Makefile | |
parent | 0aee53baccd29a3153ba04403ace4159248d95db (diff) |
EXYNOS: SMDK5250: Add MMC SPL support
This patch adds support for MMC SPL booting.
Signed-off-by: Chander Kashyap <chander.kashyap@linaro.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board/samsung/smdk5250/Makefile')
-rw-r--r-- | board/samsung/smdk5250/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/board/samsung/smdk5250/Makefile b/board/samsung/smdk5250/Makefile index 80e8be32d0..226db1f1f1 100644 --- a/board/samsung/smdk5250/Makefile +++ b/board/samsung/smdk5250/Makefile @@ -29,7 +29,14 @@ SOBJS := lowlevel_init.o COBJS := clock_init.o COBJS += dmc_init.o COBJS += tzpc_init.o + +ifndef CONFIG_SPL_BUILD COBJS += smdk5250.o +endif + +ifdef CONFIG_SPL_BUILD +COBJS += mmc_boot.o +endif SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS)) |