/****************************************************************************/ /* Definition of the base addresses for all vsegs used by the GIET_VM */ /****************************************************************************/ INCLUDE giet_vsegs.ld /****************************************************************************/ /* Grouping sections into virtual segment for boot code and data */ /****************************************************************************/ SECTIONS { . = seg_boot_code_base; seg_boot_code : { *(.boot) *(.text) *(.rodata) *(.rodata.*) *(.data) *(.lit8) *(.lit4) *(.sdata) *(.bss) *(COMMON) *(.sbss) *(.scommon) } }