Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <jeffrey.t.kirsher@intel.com>

+20 -1
+2
drivers/net/Kconfig
··· 193 193 # Ethernet 194 194 # 195 195 196 + source "drivers/net/ethernet/Kconfig" 197 + 196 198 menuconfig NET_ETHERNET 197 199 bool "Ethernet (10 or 100Mbit)" 198 200 depends on !UML
+1 -1
drivers/net/Makefile
··· 1 1 # 2 - # Makefile for the Linux network (ethercard) device drivers. 2 + # Makefile for the Linux network device drivers. 3 3 # 4 4 5 5 obj-$(CONFIG_MII) += mii.o
+14
drivers/net/ethernet/Kconfig
··· 1 + # 2 + # Ethernet LAN device configuration 3 + # 4 + 5 + menuconfig ETHERNET 6 + bool "Ethernet driver support" 7 + depends on NET 8 + default y 9 + ---help--- 10 + This section contains all the Ethernet device drivers. 11 + 12 + if ETHERNET 13 + 14 + endif # ETHERNET
+3
drivers/net/ethernet/Makefile
··· 1 + # 2 + # Makefile for the Linux network Ethernet device drivers. 3 + #