diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-05-02 16:33:34 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-05-02 16:33:34 +0000 |
commit | a09235eca6c3c16fcafbd64765d8ec3047388ee0 (patch) | |
tree | f2235bb2c3cb1c2591ade3b14ff190a562001038 /target/linux/uml/patches-2.6.30/006-uml_libc_link_errors.patch | |
parent | e6bf527f827f606f7106666c4811ccf35b6de238 (diff) | |
download | mtk-20170518-a09235eca6c3c16fcafbd64765d8ec3047388ee0.zip mtk-20170518-a09235eca6c3c16fcafbd64765d8ec3047388ee0.tar.gz mtk-20170518-a09235eca6c3c16fcafbd64765d8ec3047388ee0.tar.bz2 |
target/uml: bump to 2.6.32.12
SVN-Revision: 21301
Diffstat (limited to 'target/linux/uml/patches-2.6.30/006-uml_libc_link_errors.patch')
-rw-r--r-- | target/linux/uml/patches-2.6.30/006-uml_libc_link_errors.patch | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/target/linux/uml/patches-2.6.30/006-uml_libc_link_errors.patch b/target/linux/uml/patches-2.6.30/006-uml_libc_link_errors.patch deleted file mode 100644 index d729a05..0000000 --- a/target/linux/uml/patches-2.6.30/006-uml_libc_link_errors.patch +++ /dev/null @@ -1,50 +0,0 @@ ---- a/arch/um/kernel/dyn.lds.S -+++ b/arch/um/kernel/dyn.lds.S -@@ -54,8 +54,21 @@ SECTIONS - .rela.got : { *(.rela.got) } - .rel.bss : { *(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*) } - .rela.bss : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) } -- .rel.plt : { *(.rel.plt) } -- .rela.plt : { *(.rela.plt) } -+ /* Deal with multilib libc */ -+ .rel.plt : -+ { -+ *(.rel.plt) -+ PROVIDE_HIDDEN (__rel_iplt_start = .); -+ *(.rel.iplt) -+ PROVIDE_HIDDEN (__rel_iplt_end = .); -+ } -+ .rela.plt : -+ { -+ *(.rela.plt) -+ PROVIDE_HIDDEN (__rela_iplt_start = .); -+ *(.rela.iplt) -+ PROVIDE_HIDDEN (__rela_iplt_end = .); -+ } - .init : { - KEEP (*(.init)) - } =0x90909090 ---- a/arch/um/kernel/uml.lds.S -+++ b/arch/um/kernel/uml.lds.S -@@ -39,6 +39,21 @@ SECTIONS - *(.gnu.warning) - *(.gnu.linkonce.t*) - } -+ /* Deal with multilib libc */ -+ .rel.plt : -+ { -+ *(.rel.plt) -+ PROVIDE_HIDDEN (__rel_iplt_start = .); -+ *(.rel.iplt) -+ PROVIDE_HIDDEN (__rel_iplt_end = .); -+ } -+ .rela.plt : -+ { -+ *(.rela.plt) -+ PROVIDE_HIDDEN (__rela_iplt_start = .); -+ *(.rela.iplt) -+ PROVIDE_HIDDEN (__rela_iplt_end = .); -+ } - - . = ALIGN(PAGE_SIZE); - .syscall_stub : { |