aboutsummaryrefslogtreecommitdiff
path: root/src/arch/i386/init/ldscript_apc.lb
blob: 1e79c0aa6fafb861f508d5ec24b285db5320686a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* INPUT(coreboot_ap.rom)*/
INCLUDE "ldoptions"
SECTIONS
{
        .apcrom . : {
                _apcrom = .;
		*(.text)
		*(.rodata)
		*(.rodata.*)
                _eapcrom = .;
        }
        _iseg_apc = CONFIG_DCACHE_RAM_BASE;
        _eiseg_apc = _iseg_apc + SIZEOF(.apcrom);
        _liseg_apc = _apcrom;
        _eliseg_apc = _eapcrom;
}