6aa31cc754
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@865 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
20 lines
No EOL
210 B
Text
20 lines
No EOL
210 B
Text
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x1000;
|
|
.text . : {
|
|
. = ALIGN(16);
|
|
_start = . ;
|
|
*(.rom.text);
|
|
*(.text)
|
|
. = ALIGN(16);
|
|
}
|
|
.data . : {
|
|
. = ALIGN(16);
|
|
*(.rom.data);
|
|
*(.data)
|
|
. = ALIGN(16);
|
|
}
|
|
} |