mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-26 21:52:20 +00:00

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: dd09eb0e2c
("EISA: Increase length of device names")
Signed-off-by: Kees Cook <kees@kernel.org>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Tested-by: Randy Dunlap <rdunlap@infradead.org>
Link: https://lore.kernel.org/r/20250423023743.work.350-kees@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21 lines
652 B
Makefile
21 lines
652 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for the Linux device tree
|
|
|
|
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,
|
|
# so leave it at the end of the list.
|
|
obj-${CONFIG_EISA_VIRTUAL_ROOT} += virtual_root.o
|
|
|
|
|
|
$(obj)/eisa-bus.o: $(obj)/devlist.h
|
|
|
|
quiet_cmd_eisaid = GEN $@
|
|
cmd_eisaid = sed -e '/^\#/D' -e 's/^\([[:alnum:]]\{7\}\) \+"\([^"]*\)"/EISA_DEVINFO ("\1", "\2"),/' $< > $@
|
|
|
|
clean-files := devlist.h
|
|
$(obj)/devlist.h: $(src)/eisa.ids include/linux/device.h FORCE
|
|
$(call if_changed,eisaid)
|