Linux Hardening
 help / color / mirror / Atom feed
* [PATCH] EISA: Move devlist.h out of obj to always
@ 2025-04-23  2:37 Kees Cook
  2025-04-23  3:50 ` Randy Dunlap
  0 siblings, 1 reply; 7+ messages in thread
From: Kees Cook @ 2025-04-23  2:37 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Kees Cook, Randy Dunlap, Alejandro Colomar, linux-kernel,
	linux-hardening

I put devlist.h into the wrong Makefile macro ("obj") to get it included
in "targets". Put it into "always" so nothing tries to link against it.
Solves CONFIG_EISA=y i386 build failure:

ld: vmlinux.a: member drivers/eisa/devlist.h in archive is not an object

Reported-by: Randy Dunlap <rdunlap@infradead.org>
Closes: https://lore.kernel.org/all/4a8ba1d0-d2d9-41f8-abf1-d45ec8996d10@infradead.org
Fixes: dd09eb0e2cc4 ("EISA: Increase length of device names")
Signed-off-by: Kees Cook <kees@kernel.org>
---
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Alejandro Colomar <alx@kernel.org>
---
 drivers/eisa/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/eisa/Makefile b/drivers/eisa/Makefile
index f0d6cf7d1f32..552bd9478340 100644
--- a/drivers/eisa/Makefile
+++ b/drivers/eisa/Makefile
@@ -1,7 +1,8 @@
 # SPDX-License-Identifier: GPL-2.0
 # Makefile for the Linux device tree
 
-obj-$(CONFIG_EISA)	        += devlist.h eisa-bus.o
+always-$(CONFIG_EISA)		+= devlist.h
+obj-$(CONFIG_EISA)	        += eisa-bus.o
 obj-${CONFIG_EISA_PCI_EISA}     += pci_eisa.o
 
 # virtual_root.o should be the last EISA root device to initialize,
-- 
2.34.1


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

end of thread, other threads:[~2025-05-07  5:00 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-23  2:37 [PATCH] EISA: Move devlist.h out of obj to always Kees Cook
2025-04-23  3:50 ` Randy Dunlap
2025-05-06 15:54   ` Randy Dunlap
2025-05-06 18:51     ` Kees Cook
2025-05-06 19:17       ` Randy Dunlap
2025-05-07  5:00         ` Greg Kroah-Hartman
2025-05-07  2:05     ` Kees Cook

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