From: Jeff Kirsher Date: Wed, 30 Mar 2011 01:25:21 +0000 (-0700) Subject: drivers/net/ethernet: Add ethernet dir and config option X-Git-Tag: firefly_0821_release~3680^2~4273^2~563^2~9 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c1abc95b157fe4574919942018af143203ecca8e;p=firefly-linux-kernel-4.4.55.git drivers/net/ethernet: Add ethernet dir and config option This is the initial patch to organize the drivers/net directory structure and networking device driver config options. This patch does the following: - add drivers/net/ethernet/Kconfig - integrate the new files into the existing config Signed-off-by: Jeff Kirsher --- diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 8d0314dbd946..5b95796942db 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -193,6 +193,8 @@ source "drivers/net/phy/Kconfig" # Ethernet # +source "drivers/net/ethernet/Kconfig" + menuconfig NET_ETHERNET bool "Ethernet (10 or 100Mbit)" depends on !UML diff --git a/drivers/net/Makefile b/drivers/net/Makefile index e1eca2ab505e..670b5141f0d7 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile @@ -1,5 +1,5 @@ # -# Makefile for the Linux network (ethercard) device drivers. +# Makefile for the Linux network device drivers. # obj-$(CONFIG_MII) += mii.o diff --git a/drivers/net/ethernet/Kconfig b/drivers/net/ethernet/Kconfig new file mode 100644 index 000000000000..d59e4f2aa93f --- /dev/null +++ b/drivers/net/ethernet/Kconfig @@ -0,0 +1,14 @@ +# +# Ethernet LAN device configuration +# + +menuconfig ETHERNET + bool "Ethernet driver support" + depends on NET + default y + ---help--- + This section contains all the Ethernet device drivers. + +if ETHERNET + +endif # ETHERNET diff --git a/drivers/net/ethernet/Makefile b/drivers/net/ethernet/Makefile new file mode 100644 index 000000000000..0d21dda32038 --- /dev/null +++ b/drivers/net/ethernet/Makefile @@ -0,0 +1,3 @@ +# +# Makefile for the Linux network Ethernet device drivers. +#