2010-03-30 23:52:05 +02:00
|
|
|
/* INPUT(coreboot_ap.rom)*/
|
|
|
|
INCLUDE "ldoptions"
|
2010-02-19 20:59:03 +01:00
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
.apcrom . : {
|
|
|
|
_apcrom = .;
|
2010-03-30 23:52:05 +02:00
|
|
|
*(.text)
|
|
|
|
*(.rodata)
|
|
|
|
*(.rodata.*)
|
2010-02-19 20:59:03 +01:00
|
|
|
_eapcrom = .;
|
|
|
|
}
|
|
|
|
_iseg_apc = CONFIG_DCACHE_RAM_BASE;
|
|
|
|
_eiseg_apc = _iseg_apc + SIZEOF(.apcrom);
|
|
|
|
_liseg_apc = _apcrom;
|
|
|
|
_eliseg_apc = _eapcrom;
|
|
|
|
}
|