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