config.mk 586 B

1234567891011121314151617181920
  1. #
  2. # AIT cam_enc_4xx board
  3. # cam_enc_4xx board has 1 bank of 256 MB DDR RAM
  4. # Physical Address: 8000'0000 to 9000'0000
  5. #
  6. # Linux Kernel is expected to be at 8000'8000, entry 8000'8000
  7. # (mem base + reserved)
  8. #
  9. UBL_CONFIG = $(SRCTREE)/board/$(BOARDDIR)/ublimage.cfg
  10. ifndef CONFIG_SPL_BUILD
  11. ALL-y += $(obj)u-boot.ubl
  12. else
  13. # as SPL_TEXT_BASE is not page-aligned, we need for some
  14. # linkers the -n flag (Do not page align data), to prevent
  15. # the following error message:
  16. # arm-linux-ld: u-boot-spl: Not enough room for program headers, try linking
  17. # with -N
  18. LDFLAGS_u-boot-spl += -n
  19. endif