init.lds.S 369 B

12345678910111213141516171819202122232425
  1. /*
  2. * linker script for simple init.elf
  3. *
  4. * Copyright (c) 2005-2011 Analog Device Inc.
  5. *
  6. * Licensed under the GPL-2 or later.
  7. */
  8. #include <config.h>
  9. #include <asm/blackfin.h>
  10. #undef ALIGN
  11. #undef ENTRY
  12. OUTPUT_ARCH(bfin)
  13. MEMORY
  14. {
  15. l1_code : ORIGIN = L1_INST_SRAM, LENGTH = L1_INST_SRAM_SIZE
  16. }
  17. ENTRY(_start)
  18. SECTIONS
  19. {
  20. .text.l1 : { *(.text .text.*) } >l1_code
  21. }