diff options
Diffstat (limited to 'board/galaxy5200')
| -rw-r--r-- | board/galaxy5200/config.mk | 11 | 
1 files changed, 6 insertions, 5 deletions
| diff --git a/board/galaxy5200/config.mk b/board/galaxy5200/config.mk index c6398b26e..c46e51a72 100644 --- a/board/galaxy5200/config.mk +++ b/board/galaxy5200/config.mk @@ -24,7 +24,7 @@  #  # galaxy5200 board:  # -#	Valid values for TEXT_BASE are: +#	Valid values for CONFIG_SYS_TEXT_BASE are:  #  #	0xFFF00000   boot high (standard configuration)  #	0xFE000000   boot low @@ -34,12 +34,13 @@  sinclude $(TOPDIR)/board/$(BOARDDIR)/config.tmp  ifdef CONFIG_galaxy5200_LOWBOOT -TEXT_BASE = 0xFE000000 +CONFIG_SYS_TEXT_BASE = 0xFE000000  endif -ifndef TEXT_BASE +ifndef CONFIG_SYS_TEXT_BASE  ## Standard: boot high -TEXT_BASE = 0xFFF00000 +CONFIG_SYS_TEXT_BASE = 0xFFF00000  endif -PLATFORM_CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE) -I$(TOPDIR)/board +PLATFORM_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) \ +	-I$(TOPDIR)/board |