diff options
Diffstat (limited to 'src/arch/ppc')
-rw-r--r-- | src/arch/ppc/init/ldscript.lb | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/arch/ppc/init/ldscript.lb b/src/arch/ppc/init/ldscript.lb index a8ad86f1c0..63a32b735d 100644 --- a/src/arch/ppc/init/ldscript.lb +++ b/src/arch/ppc/init/ldscript.lb @@ -26,7 +26,7 @@ OUTPUT_FORMAT("elf32-powerpc") ENTRY(_start) TARGET(binary) -INPUT(linuxbios_payload) +INPUT(linuxbios_ram.rom) SECTIONS { /* @@ -63,7 +63,7 @@ SECTIONS *(.text); *(.rom.data); *(.rodata); - *(EXCLUDE_FILE(linuxbios_payload) .data); + *(EXCLUDE_FILE(linuxbios_ram.rom) .data); . = ALIGN(16); _erom = .; } @@ -71,21 +71,21 @@ SECTIONS _elrom = LOADADDR(.rom) + SIZEOF(.rom); /* - * Payload is LinuxBIOS proper. + * Ram is the LinuxBIOS code that runs from RAM. */ - .payload . : { - _payload = . ; - linuxbios_payload(*) - _epayload = . ; + .ram . : { + _ram = . ; + linuxbios_ram.rom(*) + _eram = . ; } /* - * Absolute location of where payload will be relocated in RAM. + * Absolute location of where LinuxBIOS will be relocated in RAM. */ _iseg = _RAMBASE; - _eiseg = _iseg + SIZEOF(.payload); - _liseg = _payload; - _eliseg = _epayload; + _eiseg = _iseg + SIZEOF(.ram); + _liseg = _ram; + _eliseg = _eram; /DISCARD/ : { *(.comment) |