ENTRY (start) SECTIONS { . = 0x80100000; .text : { *(.text*) *(.rodata*) } .init : { early_initcalls_start = .; *(.earlyinitcalls*) early_initcalls_end = .; initcalls_start = .; *(.driversubsysinitcalls*) *(.deviceinitcalls*) initcalls_end = .; } .data : { *(.data*) } .bss : { *(.bss*) *(COMMON*) } kernel_end = .; }