1
0
This repository has been archived on 2024-07-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2022-11-27 10:16:14 +00:00

20 lines
320 B
Makefile

# ROM version
ifdef BOOT_FROM_NAND
TEXT_BASE = 0xa0100000
else
ifeq ($(COMPRESSED_UBOOT),1)
TEXT_BASE = 0x80010000
BOOTSTRAP_TEXT_BASE = 0x9f000000
else
TEXT_BASE = 0x9f000000
endif
endif
# TEXT_BASE = 0xbf000000
# SDRAM version
# TEXT_BASE = 0x80000000
# RAM version
# TEXT_BASE = 0x83fc0000
# TEXT_BASE = 0x80100000