https://bugzilla.novell.com/show_bug.cgi?id=586172 https://bugzilla.novell.com/show_bug.cgi?id=586172#c24 Michal Marek <mmarek@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW InfoProvider|stefan-r-nvbz@s5r6.in-berli | |n.de | --- Comment #24 from Michal Marek <mmarek@novell.com> 2010-09-13 20:26:02 UTC --- The blacklisting should not be necessary with recent kernel and module-init-tools, because we have modules.order. But I can see the problem now: drivers/Makefile has: obj-$(CONFIG_FIREWIRE) += firewire/ obj-y += ieee1394/ so with CONFIG_FIREWIRE=m, modules.order will not be able to see the ordering between these two. The following patch should fix that, I'll do a testbuild and submit it upstream: From: Michal Marek <mmarek@suse.cz> Date: Mon, 13 Sep 2010 22:20:01 +0200 Subject: [PATCH] firewire: Always descend into drivers/firewire Put the firewire/ subdir to obj-y, so that the ordering between drivers/firewire/ and drivers/ieee1394/ is preserved in modules.order. Without this patch, a CONFIG_FIREWIRE=m CONFIG_IEEE1394=m build would result in drivers/ieee1394/ being preferred. Signed-off-by: Michal Marek <mmarek@suse.cz> diff --git a/drivers/Makefile b/drivers/Makefile index f42a030..d329e51 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -49,7 +49,7 @@ obj-$(CONFIG_SPI) += spi/ obj-y += net/ obj-$(CONFIG_ATM) += atm/ obj-$(CONFIG_FUSION) += message/ -obj-$(CONFIG_FIREWIRE) += firewire/ +obj-y += firewire/ obj-y += ieee1394/ obj-$(CONFIG_UIO) += uio/ obj-y += cdrom/ -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.