1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/EN7526G_3.18Kernel_SDK/bootrom/ld.script
2024-07-22 01:58:46 -03:00

49 lines
860 B
Plaintext
Executable File

/*OUTPUT_FORMAT("elf32-tradbigmips")
OUTPUT_ARCH(mips)*/
ENTRY(__start)
SECTIONS
{
/* Read-only sections, merged into text segment: */
. = 0xbfc00000;
.init : { *(.init) } =0
.text :
{
_ftext = . ;
*(.text)
*(.rodata)
*(.rodata1)
/* .gnu.warning sections are handled specially by elf32.em. */
*(.gnu.warning)
} =0
.data :
{
_fdata = . ;
*(.data)
/* Align the lzma decompressor on page boundaries. */
. = ALIGN(4);
__lzma_start = .;
*(.lzma)
__lzma_end = .;
. = ALIGN(4);
/* Align the initial ramdisk image (INITRD) on page boundaries. */
. = ALIGN(4);
__boot_start = .;
*(.initrd)
__boot_end = .;
. = ALIGN(4);
CONSTRUCTORS
}
__bss_start = .;
_fbss = .;
.sbss : { *(.sbss) *(.scommon) }
.bss :
{
*(.bss)
*(COMMON)
}
}