blob: 6021cec014cd7fe74edee74f76053ae581399314 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001OUTPUT_ARCH(mips)
2ENTRY(@ENTRY@)
3SECTIONS
4{
5 /* Read-only sections, merged into text segment: */
6 . = @LOADADDR@;
7 .text :
8 {
9 _ftext = . ;
10 *(.text.entry)
11 *(.text)
12 *(.rodata)
13 lzma_start = .;
14 kernel.o
15 lzma_end = .;
16 } =0
17
18 .reginfo : { *(.reginfo) }
19
20 .bss :
21 {
22 *(.bss)
23 }
24}