-
Notifications
You must be signed in to change notification settings - Fork 721
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
supports for kernel 5.10, prior to 1.6.9 release Signed-off-by: Khem Raj <[email protected]>
- Loading branch information
Showing
3 changed files
with
7 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,10 +17,8 @@ Signed-off-by: Mingli Yu <[email protected]> | |
Makefile | 45 +++++++++++++++++++++++---------------------- | ||
1 file changed, 23 insertions(+), 22 deletions(-) | ||
|
||
Index: git/Makefile | ||
=================================================================== | ||
--- git.orig/Makefile | ||
+++ git/Makefile | ||
--- a/Makefile | ||
+++ b/Makefile | ||
@@ -8,12 +8,6 @@ ifeq ($(strip $CC),) | ||
CC = gcc | ||
endif | ||
|
@@ -79,7 +77,7 @@ Index: git/Makefile | |
+ -DRELEASE_DATE='"$(DATE)"' | ||
+ | ||
SRC_BASE = makedumpfile.c makedumpfile.h diskdump_mod.h sadump_mod.h sadump_info.h | ||
SRC_PART = print_info.c dwarf_info.c elf_info.c erase_info.c sadump_info.c cache.c tools.c | ||
SRC_PART = print_info.c dwarf_info.c elf_info.c erase_info.c sadump_info.c cache.c tools.c printk.c | ||
OBJ_PART=$(patsubst %.c,%.o,$(SRC_PART)) | ||
@@ -52,12 +53,12 @@ OBJ_ARCH=$(patsubst %.c,%.o,$(SRC_ARCH)) | ||
|
||
|
@@ -104,7 +102,7 @@ Index: git/Makefile | |
+CFLAGS_COMMON += -DUSESNAPPY | ||
endif | ||
|
||
LIBS := -lpthread $(LIBS) | ||
LIBS := $(LIBS) -lpthread | ||
@@ -90,14 +91,14 @@ LIBS := $(LIBS) $(call try-run,\ | ||
all: makedumpfile | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,10 +28,8 @@ Signed-off-by: Mingli Yu <[email protected]> | |
arch/ppc64.c | 38 ++------------------------------------ | ||
1 file changed, 2 insertions(+), 36 deletions(-) | ||
|
||
Index: git/arch/ppc64.c | ||
=================================================================== | ||
--- git.orig/arch/ppc64.c | ||
+++ git/arch/ppc64.c | ||
--- a/arch/ppc64.c | ||
+++ b/arch/ppc64.c | ||
@@ -462,44 +462,6 @@ ppc64_vtop_level4(unsigned long vaddr) | ||
return paddr; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters