rte_nb85e_cb.ld 542 B

12345678910111213141516171819202122
  1. /* Linker script for the Midas labs RTE-NB85E-CB evaluation board
  2. (CONFIG_RTE_CB_NB85E). */
  3. MEMORY {
  4. LOW : ORIGIN = 0x0, LENGTH = 0x00100000
  5. /* 1MB of SRAM This memory is mirrored 4 times. */
  6. SRAM : ORIGIN = SRAM_ADDR, LENGTH = SRAM_SIZE
  7. /* 16MB of SDRAM. */
  8. SDRAM : ORIGIN = SDRAM_ADDR, LENGTH = SDRAM_SIZE
  9. }
  10. #ifdef CONFIG_RTE_CB_NB85E_KSRAM
  11. # define KRAM SRAM
  12. #else
  13. # define KRAM SDRAM
  14. #endif
  15. SECTIONS {
  16. .intv : { INTV_CONTENTS } > LOW
  17. .sram : { RAMK_KRAM_CONTENTS } > KRAM
  18. .root : { ROOT_FS_CONTENTS } > SDRAM
  19. }