]> git.pld-linux.org Git - packages/kernel.git/blobdiff - kernel-small_fixes.patch
- up to 4.15.8
[packages/kernel.git] / kernel-small_fixes.patch
index 81d01fa5d8010ed2deeb2a05f0564b6b4925f757..d4b603499b05f64e51b96e527678c26a94700ef8 100644 (file)
                                exit
                        fi
                done
-
-; kernel-orc.patch
-Index: linux-2.6/tools/objtool/orc_dump.c
-===================================================================
---- linux-2.6.orig/tools/objtool/orc_dump.c
-+++ linux-2.6/tools/objtool/orc_dump.c
-@@ -76,7 +76,8 @@ int orc_dump(const char *_objname)
-       int fd, nr_entries, i, *orc_ip = NULL, orc_size = 0;
-       struct orc_entry *orc = NULL;
-       char *name;
--      unsigned long nr_sections, orc_ip_addr = 0;
-+      size_t nr_sections;
-+      Elf64_Addr orc_ip_addr = 0;
-       size_t shstrtab_idx;
-       Elf *elf;
-       Elf_Scn *scn;
-@@ -187,10 +188,10 @@ int orc_dump(const char *_objname)
-                               return -1;
-                       }
--                      printf("%s+%lx:", name, rela.r_addend);
-+                      printf("%s+%llx:", name, (unsigned long long)rela.r_addend);
-               } else {
--                      printf("%lx:", orc_ip_addr + (i * sizeof(int)) + orc_ip[i]);
-+                      printf("%llx:", (unsigned long long)(orc_ip_addr + (i * sizeof(int)) + orc_ip[i]));
-               }
-Index: linux-2.6/tools/objtool/Makefile
-===================================================================
---- linux-2.6.orig/tools/objtool/Makefile
-+++ linux-2.6/tools/objtool/Makefile
-@@ -7,8 +7,9 @@ ARCH := x86
- endif
- # always use the host compiler
--CC = gcc
--LD = ld
-+CC = $(HOSTCC)
-+HOSTLD ?= ld
-+LD = $(HOSTLD)
- AR = ar
- ifeq ($(srctree),)
This page took 0.059001 seconds and 4 git commands to generate.