SECTIONS { . = 0x100000; .text : { *(.text) } .data : { *(.data) } .bss : { *(.bss) } } /* Align at page boundary. This is where the kernel memory manager starts allocating memory from. */ ld_kernel_end = ABSOLUTE(ALIGN(4096));