forked from Minki/linux
3a89eaa65d
The support for DSA Ethernet switch chips depends on TCP/IP networking, thus explicit that HAVE_NET_DSA depends on INET. DSA uses SWITCHDEV, thus select it instead of depending on it. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Tested-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: David S. Miller <davem@davemloft.net>
46 lines
984 B
Plaintext
46 lines
984 B
Plaintext
config HAVE_NET_DSA
|
|
def_bool y
|
|
depends on INET && NETDEVICES && !S390
|
|
|
|
# Drivers must select NET_DSA and the appropriate tagging format
|
|
|
|
config NET_DSA
|
|
tristate "Distributed Switch Architecture"
|
|
depends on HAVE_NET_DSA
|
|
select NET_SWITCHDEV
|
|
select PHYLIB
|
|
---help---
|
|
Say Y if you want to enable support for the hardware switches supported
|
|
by the Distributed Switch Architecture.
|
|
|
|
if NET_DSA
|
|
|
|
config NET_DSA_HWMON
|
|
bool "Distributed Switch Architecture HWMON support"
|
|
default y
|
|
depends on HWMON && !(NET_DSA=y && HWMON=m)
|
|
---help---
|
|
Say Y if you want to expose thermal sensor data on switches supported
|
|
by the Distributed Switch Architecture.
|
|
|
|
Some of those switches contain thermal sensors. This data is available
|
|
via the hwmon sysfs interface and exposes the onboard sensors.
|
|
|
|
# tagging formats
|
|
config NET_DSA_TAG_BRCM
|
|
bool
|
|
|
|
config NET_DSA_TAG_DSA
|
|
bool
|
|
|
|
config NET_DSA_TAG_EDSA
|
|
bool
|
|
|
|
config NET_DSA_TAG_TRAILER
|
|
bool
|
|
|
|
config NET_DSA_TAG_QCA
|
|
bool
|
|
|
|
endif
|