b6407a85f0
Update to the latest upstream commit 47216437e79a ("Fix "net" command on kernel configured with CONFIG_IPV6=m") Resolves: rhbz#2166880 Resolves: rhbz#2161133 Resolves: rhbz#2158721 Resolves: rhbz#2156904 Resolves: rhbz#2156898 Resolves: rhbz#2156892 Resolves: rhbz#2156889 Resolves: rhbz#2156885 Resolves: rhbz#2152619 Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
41 lines
1.1 KiB
Diff
41 lines
1.1 KiB
Diff
From 792730b32cb15b59af2833cfd6819b8408b20e89 Mon Sep 17 00:00:00 2001
|
|
From: "Chunguang.Xu" <chunguang.xu@shopee.com>
|
|
Date: Thu, 25 Aug 2022 12:07:20 +0800
|
|
Subject: [PATCH 36/89] Add debian/ubuntu vmlinux location to default search
|
|
dirs
|
|
|
|
Now crash cannot find debian/ubuntu kernel vmlinux, we need to
|
|
explicitly specify the path to vmlinux. Try to add the debian
|
|
vmlinux location to default search directories.
|
|
|
|
Signed-off-by: Chunguang Xu <chunguang.xu@shopee.com>
|
|
Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
|
|
---
|
|
filesys.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/filesys.c b/filesys.c
|
|
index a863f04eb250..c2ea78de821d 100644
|
|
--- a/filesys.c
|
|
+++ b/filesys.c
|
|
@@ -319,7 +319,7 @@ match_proc_version(void)
|
|
|
|
#define CREATE 1
|
|
#define DESTROY 0
|
|
-#define DEFAULT_SEARCHDIRS 5
|
|
+#define DEFAULT_SEARCHDIRS 6
|
|
#define EXTRA_SEARCHDIRS 5
|
|
|
|
static char **
|
|
@@ -336,6 +336,7 @@ build_searchdirs(int create, int *preferred)
|
|
"/boot/",
|
|
"/boot/efi/redhat",
|
|
"/boot/efi/EFI/redhat",
|
|
+ "/usr/lib/debug/boot/",
|
|
"/",
|
|
NULL
|
|
};
|
|
--
|
|
2.37.1
|
|
|