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

Commit 88491d81 authored by Jeff Kirsher's avatar Jeff Kirsher
Browse files

drivers/net: Kconfig & Makefile cleanup



The is does a general cleanup of the drivers/net/ Kconfig and
Makefile.  This patch create a "core" option and places all
the networking core drivers into this option (default is yes
for this option).  In addition, it alphabitizes the Kconfig
driver options.

As a side cleanup, found that the arcnet, token ring, and PHY
Kconfig options were a tri-state option and should have been
a bool option.

Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 330278cd
Loading
Loading
Loading
Loading
+137 −130
Original line number Original line Diff line number Diff line
@@ -25,18 +25,32 @@ menuconfig NETDEVICES
# that for each of the symbols.
# that for each of the symbols.
if NETDEVICES
if NETDEVICES


config IFB
config NET_CORE
	tristate "Intermediate Functional Block support"
	default y
	depends on NET_CLS_ACT
	bool "Network core driver support"
	---help---
	---help---
	  This is an intermediate driver that allows sharing of
	  You can say N here if you do not intend to use any of the
	  resources.
	  networking core drivers (i.e. VLAN, bridging, bonding, etc.)

if NET_CORE

config BONDING
	tristate "Bonding driver support"
	depends on INET
	depends on IPV6 || IPV6=n
	---help---
	  Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet
	  Channels together. This is called 'Etherchannel' by Cisco,
	  'Trunking' by Sun, 802.3ad by the IEEE, and 'Bonding' in Linux.

	  The driver supports multiple bonding modes to allow for both high
	  performance and high availability operation.

	  Refer to <file:Documentation/networking/bonding.txt> for more
	  information.

	  To compile this driver as a module, choose M here: the module
	  To compile this driver as a module, choose M here: the module
	  will be called ifb.  If you want to use more than one ifb
	  will be called bonding.
	  device at a time, you need to compile this driver as a module.
	  Instead of 'ifb', the devices will then be called 'ifb0',
	  'ifb1' etc.
	  Look at the iproute2 documentation directory for usage etc


config DUMMY
config DUMMY
	tristate "Dummy net driver support"
	tristate "Dummy net driver support"
@@ -57,23 +71,59 @@ config DUMMY
	  Instead of 'dummy', the devices will then be called 'dummy0',
	  Instead of 'dummy', the devices will then be called 'dummy0',
	  'dummy1' etc.
	  'dummy1' etc.


config BONDING
config EQUALIZER
	tristate "Bonding driver support"
	tristate "EQL (serial line load balancing) support"
	depends on INET
	depends on IPV6 || IPV6=n
	---help---
	---help---
	  Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet
	  If you have two serial connections to some other computer (this
	  Channels together. This is called 'Etherchannel' by Cisco,
	  usually requires two modems and two telephone lines) and you use
	  'Trunking' by Sun, 802.3ad by the IEEE, and 'Bonding' in Linux.
	  SLIP (the protocol for sending Internet traffic over telephone
	  lines) or PPP (a better SLIP) on them, you can make them behave like
	  one double speed connection using this driver.  Naturally, this has
	  to be supported at the other end as well, either with a similar EQL
	  Linux driver or with a Livingston Portmaster 2e.


	  The driver supports multiple bonding modes to allow for both high
	  Say Y if you want this and read
	  performance and high availability operation.
	  <file:Documentation/networking/eql.txt>.  You may also want to read
	  section 6.2 of the NET-3-HOWTO, available from
	  <http://www.tldp.org/docs.html#howto>.


	  Refer to <file:Documentation/networking/bonding.txt> for more
	  To compile this driver as a module, choose M here: the module
	  information.
	  will be called eql.  If unsure, say N.

config NET_FC
	bool "Fibre Channel driver support"
	depends on SCSI && PCI
	help
	  Fibre Channel is a high speed serial protocol mainly used to connect
	  large storage devices to the computer; it is compatible with and
	  intended to replace SCSI.

	  If you intend to use Fibre Channel, you need to have a Fibre channel
	  adaptor card in your computer; say Y here and to the driver for your
	  adaptor below. You also should have said Y to "SCSI support" and
	  "SCSI generic support".


config MII
	tristate "Generic Media Independent Interface device support"
	help
	  Most ethernet controllers have MII transceiver either as an external
	  or internal device.  It is safe to say Y or M here even if your
	  ethernet card lacks MII.

source "drivers/ieee802154/Kconfig"

config IFB
	tristate "Intermediate Functional Block support"
	depends on NET_CLS_ACT
	---help---
	  This is an intermediate driver that allows sharing of
	  resources.
	  To compile this driver as a module, choose M here: the module
	  To compile this driver as a module, choose M here: the module
	  will be called bonding.
	  will be called ifb.  If you want to use more than one ifb
	  device at a time, you need to compile this driver as a module.
	  Instead of 'ifb', the devices will then be called 'ifb0',
	  'ifb1' etc.
	  Look at the iproute2 documentation directory for usage etc


config MACVLAN
config MACVLAN
	tristate "MAC-VLAN support (EXPERIMENTAL)"
	tristate "MAC-VLAN support (EXPERIMENTAL)"
@@ -102,24 +152,46 @@ config MACVTAP
	  To compile this driver as a module, choose M here: the module
	  To compile this driver as a module, choose M here: the module
	  will be called macvtap.
	  will be called macvtap.


config EQUALIZER
config NETCONSOLE
	tristate "EQL (serial line load balancing) support"
	tristate "Network console logging support"
	---help---
	---help---
	  If you have two serial connections to some other computer (this
	If you want to log kernel messages over the network, enable this.
	  usually requires two modems and two telephone lines) and you use
	See <file:Documentation/networking/netconsole.txt> for details.
	  SLIP (the protocol for sending Internet traffic over telephone
	  lines) or PPP (a better SLIP) on them, you can make them behave like
	  one double speed connection using this driver.  Naturally, this has
	  to be supported at the other end as well, either with a similar EQL
	  Linux driver or with a Livingston Portmaster 2e.


	  Say Y if you want this and read
config NETCONSOLE_DYNAMIC
	  <file:Documentation/networking/eql.txt>.  You may also want to read
	bool "Dynamic reconfiguration of logging targets"
	  section 6.2 of the NET-3-HOWTO, available from
	depends on NETCONSOLE && SYSFS && CONFIGFS_FS && \
	  <http://www.tldp.org/docs.html#howto>.
			!(NETCONSOLE=y && CONFIGFS_FS=m)
	help
	  This option enables the ability to dynamically reconfigure target
	  parameters (interface, IP addresses, port numbers, MAC addresses)
	  at runtime through a userspace interface exported using configfs.
	  See <file:Documentation/networking/netconsole.txt> for details.


	  To compile this driver as a module, choose M here: the module
config NETPOLL
	  will be called eql.  If unsure, say N.
	def_bool NETCONSOLE

config NETPOLL_TRAP
	bool "Netpoll traffic trapping"
	default n
	depends on NETPOLL

config NET_POLL_CONTROLLER
	def_bool NETPOLL

config RIONET
	tristate "RapidIO Ethernet over messaging driver support"
	depends on RAPIDIO

config RIONET_TX_SIZE
	int "Number of outbound queue entries"
	depends on RIONET
	default "128"

config RIONET_RX_SIZE
	int "Number of inbound queue entries"
	depends on RIONET
	default "128"


config TUN
config TUN
	tristate "Universal TUN/TAP device driver support"
	tristate "Universal TUN/TAP device driver support"
@@ -151,6 +223,28 @@ config VETH
	  When one end receives the packet it appears on its pair and vice
	  When one end receives the packet it appears on its pair and vice
	  versa.
	  versa.


config VIRTIO_NET
	tristate "Virtio network driver (EXPERIMENTAL)"
	depends on EXPERIMENTAL && VIRTIO
	---help---
	  This is the virtual network driver for virtio.  It can be used with
	  lguest or QEMU based VMMs (like KVM or Xen).  Say Y or M.

endif # NET_CORE

config SUNGEM_PHY
	tristate

source "drivers/net/arcnet/Kconfig"

source "drivers/atm/Kconfig"

source "drivers/net/caif/Kconfig"

source "drivers/net/ethernet/Kconfig"

source "drivers/net/fddi/Kconfig"

config NET_SB1000
config NET_SB1000
	tristate "General Instruments Surfboard 1000"
	tristate "General Instruments Surfboard 1000"
	depends on PNP
	depends on PNP
@@ -175,52 +269,26 @@ config NET_SB1000


	  If you don't have this card, of course say N.
	  If you don't have this card, of course say N.


source "drivers/net/arcnet/Kconfig"

config MII
	tristate "Generic Media Independent Interface device support"
	help
	  Most ethernet controllers have MII transceiver either as an external
	  or internal device.  It is safe to say Y or M here even if your
	  ethernet card lacks MII.

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


config SUNGEM_PHY
	tristate

#
#	Ethernet
#

source "drivers/net/ethernet/Kconfig"

source "drivers/net/fddi/Kconfig"

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


source "drivers/net/ppp/Kconfig"

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


source "drivers/s390/net/Kconfig"

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


source "drivers/net/usb/Kconfig"

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


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


source "drivers/net/usb/Kconfig"

source "drivers/net/ppp/Kconfig"

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


source "drivers/atm/Kconfig"

source "drivers/ieee802154/Kconfig"

source "drivers/s390/net/Kconfig"

source "drivers/net/caif/Kconfig"

config XEN_NETDEV_FRONTEND
config XEN_NETDEV_FRONTEND
	tristate "Xen network device frontend driver"
	tristate "Xen network device frontend driver"
	depends on XEN
	depends on XEN
@@ -260,67 +328,6 @@ config XEN_NETDEV_BACKEND
	  compile this driver as a module, chose M here: the module
	  compile this driver as a module, chose M here: the module
	  will be called xen-netback.
	  will be called xen-netback.


config RIONET
	tristate "RapidIO Ethernet over messaging driver support"
	depends on RAPIDIO

config RIONET_TX_SIZE
	int "Number of outbound queue entries"
	depends on RIONET
	default "128"

config RIONET_RX_SIZE
	int "Number of inbound queue entries"
	depends on RIONET
	default "128"

config NET_FC
	bool "Fibre Channel driver support"
	depends on SCSI && PCI
	help
	  Fibre Channel is a high speed serial protocol mainly used to connect
	  large storage devices to the computer; it is compatible with and
	  intended to replace SCSI.

	  If you intend to use Fibre Channel, you need to have a Fibre channel
	  adaptor card in your computer; say Y here and to the driver for your
	  adaptor below. You also should have said Y to "SCSI support" and
	  "SCSI generic support".

config NETCONSOLE
	tristate "Network console logging support"
	---help---
	If you want to log kernel messages over the network, enable this.
	See <file:Documentation/networking/netconsole.txt> for details.

config NETCONSOLE_DYNAMIC
	bool "Dynamic reconfiguration of logging targets"
	depends on NETCONSOLE && SYSFS && CONFIGFS_FS && \
			!(NETCONSOLE=y && CONFIGFS_FS=m)
	help
	  This option enables the ability to dynamically reconfigure target
	  parameters (interface, IP addresses, port numbers, MAC addresses)
	  at runtime through a userspace interface exported using configfs.
	  See <file:Documentation/networking/netconsole.txt> for details.

config NETPOLL
	def_bool NETCONSOLE

config NETPOLL_TRAP
	bool "Netpoll traffic trapping"
	default n
	depends on NETPOLL

config NET_POLL_CONTROLLER
	def_bool NETPOLL

config VIRTIO_NET
	tristate "Virtio network driver (EXPERIMENTAL)"
	depends on EXPERIMENTAL && VIRTIO
	---help---
	  This is the virtual network driver for virtio.  It can be used with
	  lguest or QEMU based VMMs (like KVM or Xen).  Say Y or M.

config VMXNET3
config VMXNET3
	tristate "VMware VMXNET3 ethernet driver"
	tristate "VMware VMXNET3 ethernet driver"
	depends on PCI && INET
	depends on PCI && INET
+28 −36
Original line number Original line Diff line number Diff line
@@ -2,40 +2,38 @@
# Makefile for the Linux network device drivers.
# Makefile for the Linux network device drivers.
#
#


obj-$(CONFIG_MII) += mii.o
obj-$(CONFIG_MDIO) += mdio.o
obj-$(CONFIG_PHYLIB) += phy/
obj-$(CONFIG_CAN) += can/
obj-$(CONFIG_BONDING) += bonding/
obj-$(CONFIG_VMXNET3) += vmxnet3/

#
#
# link order important here
# Networking Core Drivers
#
#
obj-$(CONFIG_RIONET) += rionet.o
obj-$(CONFIG_BONDING) += bonding/

#
# end link order section
#

obj-$(CONFIG_NET) += Space.o loopback.o
obj-$(CONFIG_NET_SB1000) += sb1000.o

obj-$(CONFIG_XEN_NETDEV_FRONTEND) += xen-netfront.o
obj-$(CONFIG_XEN_NETDEV_BACKEND) += xen-netback/

obj-$(CONFIG_DUMMY) += dummy.o
obj-$(CONFIG_DUMMY) += dummy.o
obj-$(CONFIG_EQUALIZER) += eql.o
obj-$(CONFIG_IFB) += ifb.o
obj-$(CONFIG_IFB) += ifb.o
obj-$(CONFIG_MACVLAN) += macvlan.o
obj-$(CONFIG_MACVLAN) += macvlan.o
obj-$(CONFIG_MACVTAP) += macvtap.o
obj-$(CONFIG_MACVTAP) += macvtap.o
obj-$(CONFIG_EQUALIZER) += eql.o
obj-$(CONFIG_MII) += mii.o
obj-$(CONFIG_MDIO) += mdio.o
obj-$(CONFIG_NET) += Space.o loopback.o
obj-$(CONFIG_NETCONSOLE) += netconsole.o
obj-$(CONFIG_PHYLIB) += phy/
obj-$(CONFIG_RIONET) += rionet.o
obj-$(CONFIG_TUN) += tun.o
obj-$(CONFIG_TUN) += tun.o
obj-$(CONFIG_VETH) += veth.o
obj-$(CONFIG_VETH) += veth.o
obj-$(CONFIG_VIRTIO_NET) += virtio_net.o


#
# Networking Drivers
#
obj-$(CONFIG_ARCNET) += arcnet/
obj-$(CONFIG_DEV_APPLETALK) += appletalk/
obj-$(CONFIG_DEV_APPLETALK) += appletalk/
obj-$(CONFIG_CAIF) += caif/
obj-$(CONFIG_CAN) += can/
obj-$(CONFIG_ETRAX_ETHERNET) += cris/
obj-$(CONFIG_ETHERNET) += ethernet/
obj-$(CONFIG_ETHERNET) += ethernet/
obj-$(CONFIG_FDDI) += fddi/
obj-$(CONFIG_FDDI) += fddi/
obj-$(CONFIG_HIPPI) += hippi/
obj-$(CONFIG_HIPPI) += hippi/
obj-$(CONFIG_HAMRADIO) += hamradio/
obj-$(CONFIG_IRDA) += irda/
obj-$(CONFIG_PLIP) += plip/
obj-$(CONFIG_PLIP) += plip/
onj-$(CONFIG_PPP) += ppp/
onj-$(CONFIG_PPP) += ppp/
obj-$(CONFIG_PPP_ASYNC) += ppp/
obj-$(CONFIG_PPP_ASYNC) += ppp/
@@ -48,9 +46,17 @@ obj-$(CONFIG_PPPOL2TP) += ppp/
obj-$(CONFIG_PPTP) += ppp/
obj-$(CONFIG_PPTP) += ppp/
onj-$(CONFIG_SLIP) += slip/
onj-$(CONFIG_SLIP) += slip/
obj-$(CONFIG_SLHC) += slip/
obj-$(CONFIG_SLHC) += slip/
obj-$(CONFIG_NET_SB1000) += sb1000.o
onj-$(CONFIG_SLIP) += slip/
obj-$(CONFIG_SUNGEM_PHY) += sungem_phy.o
obj-$(CONFIG_TR) += tokenring/
obj-$(CONFIG_TR) += tokenring/
obj-$(CONFIG_WAN) += wan/
obj-$(CONFIG_WAN) += wan/
obj-$(CONFIG_ARCNET) += arcnet/
obj-$(CONFIG_WLAN) += wireless/
obj-$(CONFIG_WIMAX) += wimax/

obj-$(CONFIG_VMXNET3) += vmxnet3/
obj-$(CONFIG_XEN_NETDEV_FRONTEND) += xen-netfront.o
obj-$(CONFIG_XEN_NETDEV_BACKEND) += xen-netback/


obj-$(CONFIG_USB_CATC)          += usb/
obj-$(CONFIG_USB_CATC)          += usb/
obj-$(CONFIG_USB_KAWETH)        += usb/
obj-$(CONFIG_USB_KAWETH)        += usb/
@@ -61,17 +67,3 @@ obj-$(CONFIG_USB_USBNET) += usb/
obj-$(CONFIG_USB_ZD1201)        += usb/
obj-$(CONFIG_USB_ZD1201)        += usb/
obj-$(CONFIG_USB_IPHETH)        += usb/
obj-$(CONFIG_USB_IPHETH)        += usb/
obj-$(CONFIG_USB_CDC_PHONET)   += usb/
obj-$(CONFIG_USB_CDC_PHONET)   += usb/

obj-$(CONFIG_WLAN) += wireless/
obj-$(CONFIG_HAMRADIO) += hamradio/
obj-$(CONFIG_IRDA) += irda/
obj-$(CONFIG_ETRAX_ETHERNET) += cris/

obj-$(CONFIG_NETCONSOLE) += netconsole.o

obj-$(CONFIG_VIRTIO_NET) += virtio_net.o

obj-$(CONFIG_WIMAX) += wimax/
obj-$(CONFIG_CAIF) += caif/

obj-$(CONFIG_SUNGEM_PHY) += sungem_phy.o
+1 −1
Original line number Original line Diff line number Diff line
@@ -4,7 +4,7 @@


menuconfig ARCNET
menuconfig ARCNET
	depends on NETDEVICES && (ISA || PCI || PCMCIA)
	depends on NETDEVICES && (ISA || PCI || PCMCIA)
	tristate "ARCnet support"
	bool "ARCnet support"
	---help---
	---help---
	  If you have a network card of this type, say Y and check out the
	  If you have a network card of this type, say Y and check out the
	  (arguably) beautiful poetry in
	  (arguably) beautiful poetry in
+1 −1
Original line number Original line Diff line number Diff line
@@ -3,7 +3,7 @@
#
#


menuconfig PHYLIB
menuconfig PHYLIB
	tristate "PHY Device support and infrastructure"
	bool "PHY Device support and infrastructure"
	depends on !S390
	depends on !S390
	depends on NETDEVICES
	depends on NETDEVICES
	help
	help
+1 −1
Original line number Original line Diff line number Diff line
@@ -4,7 +4,7 @@


# So far, we only have PCI, ISA, and MCA token ring devices
# So far, we only have PCI, ISA, and MCA token ring devices
menuconfig TR
menuconfig TR
	tristate "Token Ring driver support"
	bool "Token Ring driver support"
	depends on NETDEVICES && !UML
	depends on NETDEVICES && !UML
	depends on (PCI || ISA || MCA || CCW || PCMCIA)
	depends on (PCI || ISA || MCA || CCW || PCMCIA)
	select LLC
	select LLC