X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2Flinux%2Fgeneric%2Fimage%2Frelocate%2Floader.lds;fp=target%2Flinux%2Fgeneric%2Fimage%2Frelocate%2Floader.lds;h=98ca2093032fb7dc3315cf61d1ffb1511519b93e;hb=2c2c8636fbf00e9e82314b80fda544b439ddb2c2;hp=0000000000000000000000000000000000000000;hpb=5d268210b754237e73b1fce5415d283bcdbab6f9;p=openwrt-working-2016%2F.git diff --git a/target/linux/generic/image/relocate/loader.lds b/target/linux/generic/image/relocate/loader.lds new file mode 100644 index 0000000000..98ca209303 --- /dev/null +++ b/target/linux/generic/image/relocate/loader.lds @@ -0,0 +1,16 @@ +OUTPUT_ARCH(mips) +SECTIONS { + .text : { + _code_start = .; + *(.text) + *(.text.*) + *(.rodata) + *(.rodata.*) + *(.data) + *(.data.*) + } + + . = ALIGN(32); + + _code_end = .; +}