Back to home page

LXR

 
 

    


Warning, /bsps/powerpc/mpc55xxevb/start/linkcmds.mpc55xx is written in an unsupported language. File is not indexed.

0001 bsp_ram_start = ORIGIN (RAM);
0002 bsp_ram_size = LENGTH (RAM) + LENGTH (NOCACHE);
0003 bsp_ram_end = bsp_ram_start + bsp_ram_size;
0004 
0005 bsp_rom_start = ORIGIN (ROM);
0006 bsp_rom_size = LENGTH (ROM);
0007 bsp_rom_end = bsp_rom_start + bsp_rom_size;
0008 
0009 INCLUDE linkcmds.base
0010 
0011 SECTIONS {
0012         .work_bonus : {
0013                 /*
0014                  * This section will occupy the remaining RAM_EXT region and may
0015                  * contain parts of the RTEMS work space and heap.
0016                  */
0017                 bsp_section_work_bonus_begin = .;
0018                 . += ORIGIN (RAM_EXT) + LENGTH (RAM_EXT) - ABSOLUTE (.);
0019                 bsp_section_work_bonus_end = .;
0020         } > RAM_EXT AT > RAM_EXT
0021         bsp_section_work_bonus_size = bsp_section_work_bonus_end - bsp_section_work_bonus_begin;
0022 }