The patch titled Use menuconfig objects: netdev has been added to the -mm tree. Its filename is use-menuconfig-objects-netdev.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Use menuconfig objects: netdev From: Jan Engelhardt <jengelh@xxxxxxxxxxxxxxx> Use menuconfigs instead of menus, so the whole menu can be disabled at once instead of going through all options. Signed-off-by: Jan Engelhardt <jengelh@xxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/net/Kconfig | 16 ++++++++++++---- 1 files changed, 12 insertions(+), 4 deletions(-) diff -puN drivers/net/Kconfig~use-menuconfig-objects-netdev drivers/net/Kconfig --- a/drivers/net/Kconfig~use-menuconfig-objects-netdev +++ a/drivers/net/Kconfig @@ -1951,8 +1951,12 @@ endmenu # Gigabit Ethernet # -menu "Ethernet (1000 Mbit)" +menuconfig NETDEV_1000 + bool "Ethernet (1000 Mbit)" depends on !UML + default y + +if NETDEV_1000 config ACENIC tristate "Alteon AceNIC/3Com 3C985/NetGear GA620 Gigabit support" @@ -2381,14 +2385,18 @@ config ATL1 To compile this driver as a module, choose M here. The module will be called atl1. -endmenu +endif # NETDEV_1000 # # 10 Gigabit Ethernet # -menu "Ethernet (10000 Mbit)" +menuconfig NETDEV_10000 + bool "Ethernet (10000 Mbit)" depends on !UML + default y + +if NETDEV_10000 config CHELSIO_T1 tristate "Chelsio 10Gb Ethernet support" @@ -2582,7 +2590,7 @@ config VIOC shared by up to 16 virtual network interfaces (VNICs). See <file:Documentation/networking/vioc.txt> for more information -endmenu +endif # NETDEV_10000 source "drivers/net/tokenring/Kconfig" _ Patches currently in -mm which might be from jengelh@xxxxxxxxxxxxxxx are git-kbuild.patch remove-artificial-software-max_loop-limit.patch fix-kevents-childs-priority-greediness.patch vt-allow-for-the-palette-to-be-exposed-and-changed-via-sysfs.patch vt-add-color-support-to-the-underline-and-italic-attributes.patch vt-expose-system-wide-utf-8-default-setting-via-sysfs.patch use-menuconfig-objects-acpi.patch use-menuconfig-objects-libata.patch use-menuconfig-objects-block-layer.patch use-menuconfig-objects-connector.patch use-menuconfig-objects-crypto.patch use-menuconfig-objects-crypto-hw.patch use-menuconfig-objects-dccp.patch use-menuconfig-objects-i2o.patch use-menuconfig-objects-ide.patch use-menuconfig-objects-mtd.patch use-menuconfig-objects-ipvs.patch use-menuconfig-objects-sctp.patch use-menuconfig-objects-tipc.patch use-menuconfig-objects-arcnet.patch use-menuconfig-objects-phy.patch use-menuconfig-objects-toeknring.patch use-menuconfig-objects-netdev.patch use-menuconfig-objects-oldcd.patch use-menuconfig-objects-parport.patch use-menuconfig-objects-pcihotplug.patch use-menuconfig-objects-pcmcia.patch use-menuconfig-objects-pnp.patch use-menuconfig-objects-w1.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html