config.mk 483 B

123456789101112131415161718192021222324
  1. #
  2. # Author: Grzegorz Bernacki, Semihalf, gjb@semihalf.com
  3. #
  4. #
  5. # digsyMTC board:
  6. #
  7. # Valid values for TEXT_BASE are:
  8. #
  9. # 0xFFF00000 boot high (standard configuration)
  10. # 0xFE000000 boot low
  11. # 0x00100000 boot from RAM (for testing only)
  12. #
  13. sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp
  14. ifndef TEXT_BASE
  15. ## Standard: boot high
  16. TEXT_BASE = 0xFFF00000
  17. ## For testing: boot from RAM
  18. # TEXT_BASE = 0x00100000
  19. endif
  20. PLATFORM_CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE) -I$(TOPDIR)/board