Use the generic GPIO api for bcm947xx and ar7 (for now), thanks to Gabor Juhos
[openwrt.git] / target / linux / adm5120-2.6 / image / lzma-loader / src / loader.lds.in
index 20f2ea9..8c1bb9b 100644 (file)
@@ -1,17 +1,27 @@
 OUTPUT_ARCH(mips)
-ENTRY(startup)
 SECTIONS {
-       . = TEXT_START;
        .text : {
+               _code_start = .;
                *(.text)
+               *(.text.*)
                *(.rodata)
+               *(.rodata.*)
+               _code_end = .;
        }
 
        .data : {
                *(.data)
+               *(.data.*)
        }
 
        .bss : {
                *(.bss)
+               *(.bss.*)
        }
+
+       . = ALIGN(16);
+       . = . + 8192;
+       _stack = .;
+
+       workspace = .;
 }
This page took 0.022412 seconds and 4 git commands to generate.