diff options
Diffstat (limited to 'board/manroland')
| -rw-r--r-- | board/manroland/hmi1001/config.mk | 11 | ||||
| -rw-r--r-- | board/manroland/mucmc52/config.mk | 11 | ||||
| -rw-r--r-- | board/manroland/uc100/config.mk | 4 | ||||
| -rw-r--r-- | board/manroland/uc101/config.mk | 11 | 
4 files changed, 20 insertions, 17 deletions
| diff --git a/board/manroland/hmi1001/config.mk b/board/manroland/hmi1001/config.mk index 8ccf33e15..b5a7125cf 100644 --- a/board/manroland/hmi1001/config.mk +++ b/board/manroland/hmi1001/config.mk @@ -24,19 +24,20 @@  #  # INKA 4X0 board:  # -#	Valid values for TEXT_BASE are: +#	Valid values for CONFIG_SYS_TEXT_BASE are:  #  #	0xFFE00000   boot high  #  #	0x00100000   boot from RAM (for testing only)  # -ifndef TEXT_BASE +ifndef CONFIG_SYS_TEXT_BASE  ## Standard: boot high -TEXT_BASE = 0xFFF00000 +CONFIG_SYS_TEXT_BASE = 0xFFF00000  ## For testing: boot from RAM -#TEXT_BASE = 0x00100000 +#CONFIG_SYS_TEXT_BASE = 0x00100000  endif -PLATFORM_CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE) -I$(TOPDIR)/board +PLATFORM_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) \ +	-I$(TOPDIR)/board  LDSCRIPT := $(SRCTREE)/arch/powerpc/cpu/mpc5xxx/u-boot-customlayout.lds diff --git a/board/manroland/mucmc52/config.mk b/board/manroland/mucmc52/config.mk index 685072833..cb2218fce 100644 --- a/board/manroland/mucmc52/config.mk +++ b/board/manroland/mucmc52/config.mk @@ -27,19 +27,20 @@  #  # MUCMC52 board:  # -#	Valid values for TEXT_BASE are: +#	Valid values for CONFIG_SYS_TEXT_BASE are:  #  #	0xFFE00000   boot high  #  #	0x00100000   boot from RAM (for testing only)  # -ifndef TEXT_BASE +ifndef CONFIG_SYS_TEXT_BASE  ## Standard: boot high -TEXT_BASE = 0xFFF00000 +CONFIG_SYS_TEXT_BASE = 0xFFF00000  ## For testing: boot from RAM -#TEXT_BASE = 0x00100000 +#CONFIG_SYS_TEXT_BASE = 0x00100000  endif -PLATFORM_CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE) -I$(TOPDIR)/board +PLATFORM_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) \ +	-I$(TOPDIR)/board  LDSCRIPT := $(SRCTREE)/arch/powerpc/cpu/mpc5xxx/u-boot.lds diff --git a/board/manroland/uc100/config.mk b/board/manroland/uc100/config.mk index a65a8ba2c..4308eedc5 100644 --- a/board/manroland/uc100/config.mk +++ b/board/manroland/uc100/config.mk @@ -25,5 +25,5 @@  # UC100 boards  # -#TEXT_BASE = 0x40000000 -TEXT_BASE = 0x40700000 +#CONFIG_SYS_TEXT_BASE = 0x40000000 +CONFIG_SYS_TEXT_BASE = 0x40700000 diff --git a/board/manroland/uc101/config.mk b/board/manroland/uc101/config.mk index 8ccf33e15..b5a7125cf 100644 --- a/board/manroland/uc101/config.mk +++ b/board/manroland/uc101/config.mk @@ -24,19 +24,20 @@  #  # INKA 4X0 board:  # -#	Valid values for TEXT_BASE are: +#	Valid values for CONFIG_SYS_TEXT_BASE are:  #  #	0xFFE00000   boot high  #  #	0x00100000   boot from RAM (for testing only)  # -ifndef TEXT_BASE +ifndef CONFIG_SYS_TEXT_BASE  ## Standard: boot high -TEXT_BASE = 0xFFF00000 +CONFIG_SYS_TEXT_BASE = 0xFFF00000  ## For testing: boot from RAM -#TEXT_BASE = 0x00100000 +#CONFIG_SYS_TEXT_BASE = 0x00100000  endif -PLATFORM_CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE) -I$(TOPDIR)/board +PLATFORM_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) \ +	-I$(TOPDIR)/board  LDSCRIPT := $(SRCTREE)/arch/powerpc/cpu/mpc5xxx/u-boot-customlayout.lds |