diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-01-21 17:56:36 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-01-21 17:56:36 +0000 |
commit | 3df65d1e2441abe881c35376f916f68cd9023a9b (patch) | |
tree | 6ba971a5c0df52ea0c05ca5275c6d1f32d4e3ab6 /sys-boot/gnu-efi/files | |
parent | New ebuild for gnu-efi with patches from Debian. Thanks to Matt Anderson in ... (diff) | |
download | historical-3df65d1e2441abe881c35376f916f68cd9023a9b.tar.gz historical-3df65d1e2441abe881c35376f916f68cd9023a9b.tar.bz2 historical-3df65d1e2441abe881c35376f916f68cd9023a9b.zip |
New ebuild for gnu-efi with patches from Debian. Thanks to Matt Anderson in bug 38875
Diffstat (limited to 'sys-boot/gnu-efi/files')
-rw-r--r-- | sys-boot/gnu-efi/files/digest-gnu-efi-3.0a | 1 | ||||
-rw-r--r-- | sys-boot/gnu-efi/files/gnu-efi-3.0a-lds.patch | 55 |
2 files changed, 56 insertions, 0 deletions
diff --git a/sys-boot/gnu-efi/files/digest-gnu-efi-3.0a b/sys-boot/gnu-efi/files/digest-gnu-efi-3.0a new file mode 100644 index 000000000000..c0e9f5fd2a56 --- /dev/null +++ b/sys-boot/gnu-efi/files/digest-gnu-efi-3.0a @@ -0,0 +1 @@ +MD5 0f613e693cbc3f35ff1863ac23954baf gnu-efi-3.0a.tar.gz 119079 diff --git a/sys-boot/gnu-efi/files/gnu-efi-3.0a-lds.patch b/sys-boot/gnu-efi/files/gnu-efi-3.0a-lds.patch new file mode 100644 index 000000000000..f16efdbcfcff --- /dev/null +++ b/sys-boot/gnu-efi/files/gnu-efi-3.0a-lds.patch @@ -0,0 +1,55 @@ +--- gnu-efi-3.0a.orig/gnuefi/elf_ia32_efi.lds ++++ gnu-efi-3.0a/gnuefi/elf_ia32_efi.lds +@@ -17,6 +17,7 @@ + *(.rodata*) + *(.data) + *(.data1) ++ *(.data.*) + *(.sdata) + *(.got.plt) + *(.got) +@@ -34,8 +35,13 @@ + .rel : + { + *(.rel.data) ++ *(.rel.data.*) + *(.rel.got) + *(.rel.stab) ++ *(.data.rel.ro.local) ++ *(.data.rel.local) ++ *(.data.rel.ro) ++ *(.data.rel*) + } + . = ALIGN(4096); + .dynsym : { *(.dynsym) } +@@ -46,4 +52,9 @@ + { + *(.rel.reloc) + } ++ .ignored : ++ { ++ *(.eh_frame) ++ } + } ++ +--- gnu-efi-3.0a.orig/gnuefi/elf_ia64_efi.lds ++++ gnu-efi-3.0a/gnuefi/elf_ia64_efi.lds +@@ -28,8 +28,7 @@ + { + *(.rodata*) + *(.ctors) +- *(.data) +- *(.data1) ++ *(.data*) + *(.gnu.linkonce.d*) + *(.plabel) /* data whose relocs we want to ignore */ + *(.IA_64.unwind) +@@ -48,7 +47,7 @@ + .rela : + { + *(.rela.text) +- *(.rela.data) ++ *(.rela.data*) + *(.rela.sdata) + *(.rela.got) + *(.rela.gnu.linkonce.d*) |