mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] scripts/mod/modpost: For CentOS 7/old binutils compatibility
@ 2025-07-28 16:19 Haoran lee
  2025-08-07 10:51 ` Nicolas Schier
  0 siblings, 1 reply; 5+ messages in thread
From: Haoran lee @ 2025-07-28 16:19 UTC (permalink / raw)
  To: masahiroy; +Cc: nathan, nicolas.schier, linux-kbuild, linux-kernel

From fcf92a8a85884b383872fb435fef008fc794c3bb Mon Sep 17 00:00:00 2001
From: houranled <leegit@163.com>
Date: Mon, 28 Jul 2025 23:54:57 +0800
Subject: [PATCH] CentOS 7 / old binutils compatibility

Signed-off-by: Haoran Lee <470658536@qq.com>
---
 scripts/mod/modpost.c | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index 5ca7c268294e..216647e2f301 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -30,6 +30,32 @@
 
 #define MODULE_NS_PREFIX "module:"
 
+/* CentOS 7 / old binutils compatibility */
+#ifndef R_ARM_MOVW_ABS_NC
+#define R_ARM_MOVW_ABS_NC       43
+#endif
+#ifndef R_ARM_MOVT_ABS
+#define R_ARM_MOVT_ABS          44
+#endif
+#ifndef R_ARM_THM_MOVW_ABS_NC
+#define R_ARM_THM_MOVW_ABS_NC   47
+#endif
+#ifndef R_ARM_THM_MOVT_ABS
+#define R_ARM_THM_MOVT_ABS      48
+#endif
+#ifndef R_ARM_CALL
+#define R_ARM_CALL              28
+#endif
+#ifndef R_ARM_JUMP24
+#define R_ARM_JUMP24            29
+#endif
+#ifndef R_ARM_THM_JUMP19
+#define R_ARM_THM_JUMP19        51
+#endif
+#ifndef R_ARM_THM_JUMP24
+#define R_ARM_THM_JUMP24        30
+#endif
+
 static bool module_enabled;
 /* Are we using CONFIG_MODVERSIONS? */
 static bool modversions;
-- 
2.43.0


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-08-08  3:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-07-28 16:19 [PATCH] scripts/mod/modpost: For CentOS 7/old binutils compatibility Haoran lee
2025-08-07 10:51 ` Nicolas Schier
2025-08-07 16:22   ` Nathan Chancellor
2025-08-07 18:55     ` Nicolas Schier
2025-08-08  3:06   ` Haoran lee

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®