Messages in this thread Patch in this message |  | | Date | Wed, 14 Nov 2001 10:57:17 -0800 | From | Greg KH <> | Subject | Re: [kbuild-devel] CML 1.8.4 is available |
| |
On Wed, Nov 14, 2001 at 12:33:14PM -0500, Eric S. Raymond wrote: > > > > CONFIG_HOTPLUG_PCI > > CONFIG_HOTPLUG_PCI_COMPAQ > > CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM > > > > See the Config.in file in that directory for the dependencies they have > > on each other. > > OK, this wiull be in 1.8.6. I'm going to have to figure out why my coverage > tools didn't catch those three symbols.
Thanks. 2.4.15-pre4 didn't allow the user to select these options. The attached patch is necessary for them to show up. Perhaps this is the reason.
thanks,
greg k-h
diff --minimal -Nru a/arch/i386/config.in b/arch/i386/config.in --- a/arch/i386/config.in Mon Nov 12 11:34:30 2001 +++ b/arch/i386/config.in Mon Nov 12 11:34:30 2001 @@ -234,8 +234,10 @@ if [ "$CONFIG_HOTPLUG" = "y" ] ; then source drivers/pcmcia/Config.in + source drivers/hotplug/Config.in else define_bool CONFIG_PCMCIA n + define_bool CONFIG_HOTPLUG_PCI n fi bool 'System V IPC' CONFIG_SYSVIPC - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |