2016-12-06 17:17:01 +08:00
|
|
|
# Kconfig - Ethernet drivers configuration options
|
2015-10-27 07:38:13 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015 Intel Corporation
|
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2015-10-27 07:38:13 +08:00
|
|
|
#
|
|
|
|
|
2016-12-20 18:30:40 +08:00
|
|
|
menu "Ethernet Drivers"
|
2018-12-28 02:10:14 +08:00
|
|
|
depends on NET_L2_ETHERNET
|
2016-12-20 18:30:40 +08:00
|
|
|
|
2018-10-05 20:14:58 +08:00
|
|
|
module = ETHERNET
|
|
|
|
module-dep = LOG
|
|
|
|
module-str = Log level for Ethernet driver
|
|
|
|
module-help = Sets log level for Ethernet Device Drivers.
|
2018-07-09 17:51:28 +08:00
|
|
|
source "subsys/net/Kconfig.template.log_config.net"
|
2016-05-08 03:50:27 +08:00
|
|
|
|
2016-11-19 06:22:05 +08:00
|
|
|
config ETH_INIT_PRIORITY
|
2018-08-14 22:19:20 +08:00
|
|
|
int "Ethernet driver init priority"
|
2016-11-19 06:22:05 +08:00
|
|
|
default 80
|
|
|
|
help
|
|
|
|
Ethernet device driver initialization priority.
|
|
|
|
Do not mess with it unless you know what you are doing.
|
|
|
|
Note that the priority needs to be lower than the net stack
|
|
|
|
so that it can start before the networking sub-system.
|
|
|
|
|
2016-07-09 03:52:03 +08:00
|
|
|
source "drivers/ethernet/Kconfig.enc28j60"
|
2017-01-03 04:03:19 +08:00
|
|
|
source "drivers/ethernet/Kconfig.mcux"
|
2016-12-06 17:17:01 +08:00
|
|
|
source "drivers/ethernet/Kconfig.dw"
|
2018-07-31 17:44:34 +08:00
|
|
|
source "drivers/ethernet/Kconfig.e1000"
|
2016-12-24 10:58:38 +08:00
|
|
|
source "drivers/ethernet/Kconfig.sam_gmac"
|
2017-06-23 19:03:51 +08:00
|
|
|
source "drivers/ethernet/Kconfig.stm32_hal"
|
2019-01-11 00:52:13 +08:00
|
|
|
source "drivers/ethernet/Kconfig.smsc911x"
|
2018-02-21 22:18:35 +08:00
|
|
|
source "drivers/ethernet/Kconfig.native_posix"
|
2018-09-19 17:51:47 +08:00
|
|
|
source "drivers/ethernet/Kconfig.stellaris"
|
2016-12-20 18:30:40 +08:00
|
|
|
|
2018-12-28 02:10:14 +08:00
|
|
|
endmenu # "Ethernet Drivers"
|