Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d5950b43 authored by Sam Ravnborg's avatar Sam Ravnborg Committed by David S. Miller
Browse files

[NET]: add a top-level Networking menu to *config



Create a new top-level menu named "Networking" thus moving
net related options and protocol selection way from the drivers
menu and up on the top-level where they belong.

To implement this all architectures has to source "net/Kconfig" before
drivers/*/Kconfig in their Kconfig file. This change has been
implemented for all architectures.

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 under the new
networking menu item.

Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0b7f22aa
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -596,6 +596,8 @@ source "fs/Kconfig.binfmt"

endmenu

source "net/Kconfig"

source "drivers/Kconfig"

source "fs/Kconfig"
+3 −1
Original line number Diff line number Diff line
@@ -700,6 +700,8 @@ config APM

endmenu

source "net/Kconfig"

menu "Device Drivers"

source "drivers/base/Kconfig"
@@ -732,7 +734,7 @@ source "drivers/ieee1394/Kconfig"

source "drivers/message/i2o/Kconfig"

source "net/Kconfig"
source "drivers/net/Kconfig"

source "drivers/isdn/Kconfig"

+3 −1
Original line number Diff line number Diff line
@@ -183,6 +183,8 @@ source "mm/Kconfig"

endmenu

source "net/Kconfig"

source "drivers/base/Kconfig"

source "drivers/parport/Kconfig"
@@ -193,7 +195,7 @@ source "drivers/block/Kconfig"

source "drivers/md/Kconfig"

source "net/Kconfig"
source "drivers/net/Kconfig"

source "drivers/ide/Kconfig"

+3 −1
Original line number Diff line number Diff line
@@ -122,6 +122,8 @@ source arch/cris/arch-v10/Kconfig

endmenu

source "net/Kconfig"

# bring in ETRAX built-in drivers
menu "Drivers for built-in interfaces"
source arch/cris/arch-v10/drivers/Kconfig
@@ -149,7 +151,7 @@ source "drivers/ieee1394/Kconfig"

source "drivers/message/i2o/Kconfig"

source "net/Kconfig"
source "drivers/net/Kconfig"

source "drivers/isdn/Kconfig"

+2 −0
Original line number Diff line number Diff line
@@ -346,6 +346,8 @@ source "fs/Kconfig.binfmt"

endmenu

source "net/Kconfig"

source "drivers/Kconfig"

source "fs/Kconfig"
Loading