/****************************************************************************/ /* 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.*) } . = seg_boot_data_base; seg_boot_data : { *(.wdata) } }