net: restructure kconfig for net/ Restructure Networking menu structure creating a separate menu just before Device Drivers. Device drivers for ordinary NIC's are still to be found in the Device Drivers section, but Bluetooth, IrDA and ax25 are located with their corresponding menu entries.
This patch simply creates the new menu entry - additional patches will rearrange Kconfig structure inside networking. Signed-off-by: Sam Ravnborg <[EMAIL PROTECTED]> --- --- commit de2bd8894633a5ab3944c9fa42580bfee5c81f44 tree 731bd4b284aa6b2bcea9e89d44c5291bf431f520 parent 19f7241a3b087bbf4dd107c979608fdb56c83a09 author Sam Ravnborg <[EMAIL PROTECTED](none)> Wed, 06 Jul 2005 15:21:50 +0200 committer Sam Ravnborg <[EMAIL PROTECTED](none)> Wed, 06 Jul 2005 15:21:50 +0200 drivers/Kconfig | 4 +++- drivers/net/Kconfig | 3 +++ net/Kconfig | 10 +++++----- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/drivers/Kconfig b/drivers/Kconfig --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -1,5 +1,7 @@ # drivers/Kconfig +source "net/Kconfig" + menu "Device Drivers" source "drivers/base/Kconfig" @@ -28,7 +30,7 @@ source "drivers/message/i2o/Kconfig" source "drivers/macintosh/Kconfig" -source "net/Kconfig" +source "drivers/net/Kconfig" source "drivers/isdn/Kconfig" diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -3,6 +3,8 @@ # Network device configuration # +menu "Network device support" + config NETDEVICES depends on NET bool "Network device support" @@ -2547,3 +2549,4 @@ config NETCONSOLE If you want to log kernel messages over the network, enable this. See <file:Documentation/networking/netconsole.txt> for details. +endmenu diff --git a/net/Kconfig b/net/Kconfig --- a/net/Kconfig +++ b/net/Kconfig @@ -2,7 +2,7 @@ # Network configuration # -menu "Networking support" +menu "Networking" config NET bool "Networking support" @@ -10,7 +10,9 @@ config NET Unless you really know what you are doing, you should say Y here. The reason is that some programs need kernel networking support even when running on a stand-alone machine that isn't connected to any - other computer. If you are upgrading from an older kernel, you + other computer. + + If you are upgrading from an older kernel, you should consider updating your networking tools too because changes in the kernel and the tools often go hand in hand. The tools are contained in the package net-tools, the location and version number @@ -640,7 +642,5 @@ source "net/irda/Kconfig" source "net/bluetooth/Kconfig" -source "drivers/net/Kconfig" - -endmenu +endmenu # Networking - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html