blob: d76118f85b28b63fdd729c7ca15bb0cde6cda240 [file] [log] [blame]
Patrick Williamsde0582f2022-04-08 10:23:27 -05001From 5f6ed003f10ee0bd4a508d5f59129a29f0920dfc Mon Sep 17 00:00:00 2001
2From: Saul Wold <saul.wold@windriver.com>
3Date: Thu, 31 Mar 2022 11:21:45 -0700
4Subject: [PATCH] depmod: Ignore .debug directories
5
6The .debug/<module>.ko files do not have the correct symbol information
7since it's split away from the actual <module>.ko file. Just ignore it.
8
9Upstream-Status: Pending
10
11Signed-off-by: Saul Wold <saul.wold@windriver.com>
12---
13 modutils/depmod.c | 3 +++
14 1 file changed, 3 insertions(+)
15
16diff --git a/modutils/depmod.c b/modutils/depmod.c
17index bb42bbe..aa5a2de 100644
18--- a/modutils/depmod.c
19+++ b/modutils/depmod.c
20@@ -43,6 +43,9 @@ static int FAST_FUNC parse_module(struct recursive_state *state,
21 /* Arbitrary. Was sb->st_size, but that breaks .gz etc */
22 size_t len = (64*1024*1024 - 4096);
23
Andrew Geissler6aa7eec2023-03-03 12:41:14 -060024+ if (strstr(fname, ".debug") != NULL)
Patrick Williamsde0582f2022-04-08 10:23:27 -050025+ return TRUE;
26+
27 if (strrstr(fname, ".ko") == NULL)
28 return TRUE;
29
30--
312.31.1
32