summaryrefslogtreecommitdiff
path: root/target/linux/patches/4.9.94/alpha-remove-coff.patch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2018-04-18 06:29:23 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2018-04-21 17:39:31 +0100
commitb9184a07a902ddea8258e5825397b0b43f138ab6 (patch)
tree124dd031367372c252b33c94d5f01a17013f3114 /target/linux/patches/4.9.94/alpha-remove-coff.patch
parent5af48dfb5855e2e54d9c4dd1973ac8096c85c74b (diff)
linux: bump kernel versions
Diffstat (limited to 'target/linux/patches/4.9.94/alpha-remove-coff.patch')
-rw-r--r--target/linux/patches/4.9.94/alpha-remove-coff.patch43
1 files changed, 43 insertions, 0 deletions
diff --git a/target/linux/patches/4.9.94/alpha-remove-coff.patch b/target/linux/patches/4.9.94/alpha-remove-coff.patch
new file mode 100644
index 000000000..176db3c88
--- /dev/null
+++ b/target/linux/patches/4.9.94/alpha-remove-coff.patch
@@ -0,0 +1,43 @@
+diff -Nur linux-4.9.71.orig/arch/alpha/boot/tools/objstrip.c linux-4.9.71/arch/alpha/boot/tools/objstrip.c
+--- linux-4.9.71.orig/arch/alpha/boot/tools/objstrip.c 2017-12-20 10:07:34.000000000 +0100
++++ linux-4.9.71/arch/alpha/boot/tools/objstrip.c 2017-12-30 21:23:09.114510547 +0100
+@@ -191,38 +191,8 @@
+ prog_name, (long) elf_phdr->p_vaddr,
+ elf_phdr->p_vaddr + fil_size, offset);
+ }
+- } else
+-#endif
+- {
+- aout = (struct exec *) buf;
+-
+- if (!(aout->fh.f_flags & COFF_F_EXEC)) {
+- fprintf(stderr, "%s: %s is not in executable format\n",
+- prog_name, inname);
+- exit(1);
+- }
+-
+- if (aout->fh.f_opthdr != sizeof(aout->ah)) {
+- fprintf(stderr, "%s: %s has unexpected optional header size\n",
+- prog_name, inname);
+- exit(1);
+- }
+-
+- if (N_MAGIC(*aout) != OMAGIC) {
+- fprintf(stderr, "%s: %s is not an OMAGIC file\n",
+- prog_name, inname);
+- exit(1);
+- }
+- offset = N_TXTOFF(*aout);
+- fil_size = aout->ah.tsize + aout->ah.dsize;
+- mem_size = fil_size + aout->ah.bsize;
+-
+- if (verbose) {
+- fprintf(stderr, "%s: extracting %#016lx-%#016lx (at %lx)\n",
+- prog_name, aout->ah.text_start,
+- aout->ah.text_start + fil_size, offset);
+- }
+ }
++#endif
+
+ if (lseek(fd, offset, SEEK_SET) != offset) {
+ perror("lseek");