diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-03-17 11:55:59 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-03-17 11:55:59 +0000 |
commit | 9b60eb478ae4be622b4981058af6a1817539cddc (patch) | |
tree | 1405ce08f05d3f31c8562d56d4ec46e438018f42 /target/linux/uml/patches-2.6.32/006-uml_libc_link_errors.patch | |
parent | a2a18fe1ea24005bc93a06a7a882ee49672c3e50 (diff) | |
download | mtk-20170518-9b60eb478ae4be622b4981058af6a1817539cddc.zip mtk-20170518-9b60eb478ae4be622b4981058af6a1817539cddc.tar.gz mtk-20170518-9b60eb478ae4be622b4981058af6a1817539cddc.tar.bz2 |
remove support for old kernels
SVN-Revision: 30963
Diffstat (limited to 'target/linux/uml/patches-2.6.32/006-uml_libc_link_errors.patch')
-rw-r--r-- | target/linux/uml/patches-2.6.32/006-uml_libc_link_errors.patch | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/target/linux/uml/patches-2.6.32/006-uml_libc_link_errors.patch b/target/linux/uml/patches-2.6.32/006-uml_libc_link_errors.patch deleted file mode 100644 index 2adfe03..0000000 --- a/target/linux/uml/patches-2.6.32/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 -@@ -50,8 +50,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 -@@ -35,6 +35,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 : { |