diff options
author | Magnus Lilja <lilja.magnus@gmail.com> | 2009-06-13 20:50:00 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-06-21 16:18:12 +0200 |
commit | df81238b3e27a791da996a9208402ac8f40b9862 (patch) | |
tree | 7b5a7d7f508542d5152e8da44b760ebe035c23b3 /onenand_ipl/board | |
parent | 8096c51fd4e611ed666dbe77767e81af5d94fc7b (diff) | |
download | u-boot-imx-df81238b3e27a791da996a9208402ac8f40b9862.zip u-boot-imx-df81238b3e27a791da996a9208402ac8f40b9862.tar.gz u-boot-imx-df81238b3e27a791da996a9208402ac8f40b9862.tar.bz2 |
ARM1136: Introduce CONFIG_PRELOADER macro.
Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's
in start.S. In preparation for adding support for NAND SPL
the macro CONFIG_PRELOADER is introducted and replaces the
CONFIG_ONENAND_IPL in start.S.
Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
Diffstat (limited to 'onenand_ipl/board')
-rw-r--r-- | onenand_ipl/board/apollon/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/onenand_ipl/board/apollon/Makefile b/onenand_ipl/board/apollon/Makefile index f6c36ec..49a8e90 100644 --- a/onenand_ipl/board/apollon/Makefile +++ b/onenand_ipl/board/apollon/Makefile @@ -4,8 +4,8 @@ include $(TOPDIR)/onenand_ipl/board/$(BOARDDIR)/config.mk LDSCRIPT= $(TOPDIR)/onenand_ipl/board/$(BOARDDIR)/u-boot.onenand.lds LDFLAGS = -Bstatic -T $(LDSCRIPT) -Ttext $(TEXT_BASE) $(PLATFORM_LDFLAGS) -AFLAGS += -DCONFIG_ONENAND_IPL -CFLAGS += -DCONFIG_ONENAND_IPL +AFLAGS += -DCONFIG_PRELOADER -DCONFIG_ONENAND_IPL +CFLAGS += -DCONFIG_PRELOADER -DCONFIG_ONENAND_IPL OBJCFLAGS += --gap-fill=0x00 SOBJS := low_levelinit.o |