-ENTRY(_u_start)
+ENTRY(_start)
SECTIONS {
. = 0x400000;
-}
\ No newline at end of file
+
+ .text BLOCK(4K) : {
+ *(.text)
+ }
+
+ .data BLOCK(4K) : {
+ *(.data)
+ }
+
+ .ro.data BLOCK(4K) : {
+ *(.ro.data)
+ }
+
+ .bss BLOCK(4K) : {
+ *(.bss)
+ }
+}