mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-08 11:36:21 -04:00
12 lines
258 B
Makefile
12 lines
258 B
Makefile
#
|
|
# image should be loaded at 0x01000000
|
|
#
|
|
|
|
TEXT_BASE = 0x01000000
|
|
|
|
ifneq ($(OBJTREE),$(SRCTREE))
|
|
# We are building u-boot in a separate directory, use generated
|
|
# .lds script from OBJTREE directory.
|
|
LDSCRIPT := $(OBJTREE)/board/$(BOARDDIR)/u-boot.lds
|
|
endif
|