diff options
author | Aneesh V <aneesh@ti.com> | 2011-07-21 09:10:21 -0400 |
---|---|---|
committer | U-Boot <uboot@aari01-12.(none)> | 2011-08-03 12:49:20 +0200 |
commit | bcae72116257201d7288cb8c525a29aea4875b95 (patch) | |
tree | 27511a4f1475382047a803b50883416ae87b144c /arch/arm/cpu/armv7/omap4/Makefile | |
parent | 033ca72438635c68f3940216a550217b9e7f6417 (diff) | |
download | u-boot-imx-bcae72116257201d7288cb8c525a29aea4875b95.zip u-boot-imx-bcae72116257201d7288cb8c525a29aea4875b95.tar.gz u-boot-imx-bcae72116257201d7288cb8c525a29aea4875b95.tar.bz2 |
omap: add basic SPL support
- Provide alternate implementations of board_init_f()
board_init_r() for OMAP spl.
- Provide linker script
- Initialize global data
- Add serial console support
- Update CONFIG_SYS_TEXT_BASE to allow for SPL's bss and move
it to board config header from config.mk
Signed-off-by: Aneesh V <aneesh@ti.com>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'arch/arm/cpu/armv7/omap4/Makefile')
-rw-r--r-- | arch/arm/cpu/armv7/omap4/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/omap4/Makefile b/arch/arm/cpu/armv7/omap4/Makefile index e1ccd68..e7ee0b8 100644 --- a/arch/arm/cpu/armv7/omap4/Makefile +++ b/arch/arm/cpu/armv7/omap4/Makefile @@ -30,9 +30,12 @@ SOBJS += lowlevel_init.o COBJS += board.o COBJS += clocks.o COBJS += emif.o -COBJS += mem.o COBJS += sdram_elpida.o + +ifndef CONFIG_SPL_BUILD +COBJS += mem.o COBJS += sys_info.o +endif SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS)) |