Blame


1 98601545 2023-02-18 continue SECTIONS
2 98601545 2023-02-18 continue {
3 98601545 2023-02-18 continue .text.boot : { *(.text.boot) }
4 98601545 2023-02-18 continue .text : { *(.text) }
5 8b3b29b7 2023-02-18 continue .rodata : { *(.rodata*) }
6 98601545 2023-02-18 continue .data : { *(.data) }
7 98601545 2023-02-18 continue . = ALIGN(32);
8 98601545 2023-02-18 continue bss_begin = .;
9 98601545 2023-02-18 continue .bss : { *(.bss*) }
10 98601545 2023-02-18 continue . = ALIGN(32);
11 98601545 2023-02-18 continue bss_end = .;
12 98601545 2023-02-18 continue /DISCARD/ : { *(.gnu*) *(.dynsym) *(.hash) *(.dynstr) *(.openbsd*) }
13 98601545 2023-02-18 continue }