ENTRY(_start) PHDRS { all PT_LOAD; } SECTIONS { .text 0x7C00: { lboot.o(.text) *(.text, .rodata*) } :all .data : { *(.data) . = ALIGN(4K); lboot.o(.data.bootboot) } :all _bss_start = .; .bss (NOLOAD) : { *(.bss, COMMON) } :all _bss_end = .; }