/* |$|*file*kernel.ld*| |$|*noclean*| */ OUTPUT_FORMAT("binary") ENTRY(_start) SECTIONS { .text : { *(.text*) } .data : { *(.data*) } .bss : { *(.bss*) } .rodata : { *(.rodata*) } /* after sections and before final . = ALIGN(512); */ /*PROVIDE(_kernel_end = .);*/ }