diff options
Diffstat (limited to 'board/phytec')
| -rw-r--r-- | board/phytec/pcm030/config.mk | 9 | 
1 files changed, 5 insertions, 4 deletions
| diff --git a/board/phytec/pcm030/config.mk b/board/phytec/pcm030/config.mk index 92fecc63c..73bb0c144 100644 --- a/board/phytec/pcm030/config.mk +++ b/board/phytec/pcm030/config.mk @@ -24,7 +24,7 @@  #  # phyCORE-MPC5200B tiny board:  # -#	Valid values for TEXT_BASE are: +#	Valid values for CONFIG_SYS_TEXT_BASE are:  #  #	0xFFF00000   boot high (standard configuration)  #	0xFF000000   boot low @@ -33,9 +33,10 @@  sinclude $(TOPDIR)/board/$(BOARDDIR)/config.tmp -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 |