1_START = DEFINED(_START) ? _START : 0x9000000;
2SECTIONS
3{
4  . = _START;
5  .text : {*(.text)}
6  /DISCARD/ : {*(*)}
7}
8