2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2019-10-01 22:08:36 +08:00
|
|
|
zephyr_include_directories(${ZEPHYR_BASE}/subsys/net/l2)
|
2018-03-28 22:05:01 +08:00
|
|
|
|
2017-10-27 21:43:34 +08:00
|
|
|
zephyr_sources_ifdef(CONFIG_ETH_SAM_GMAC
|
|
|
|
eth_sam_gmac.c
|
|
|
|
phy_sam_gmac.c
|
|
|
|
)
|
2018-09-19 17:51:47 +08:00
|
|
|
|
2019-11-30 04:34:31 +08:00
|
|
|
zephyr_sources_ifdef(CONFIG_ETH_GECKO
|
|
|
|
eth_gecko.c
|
|
|
|
phy_gecko.c
|
|
|
|
)
|
|
|
|
|
2019-10-01 22:08:36 +08:00
|
|
|
zephyr_sources_ifdef(CONFIG_ETH_STELLARIS eth_stellaris.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_ETH_E1000 eth_e1000.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_ETH_ENC28J60 eth_enc28j60.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_ETH_ENC424J600 eth_enc424j600.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_ETH_MCUX eth_mcux.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_ETH_SMSC911X eth_smsc911x.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_ETH_STM32_HAL eth_stm32_hal.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_ETH_LITEETH eth_liteeth.c)
|
2020-09-02 16:36:48 +08:00
|
|
|
zephyr_sources_ifdef(CONFIG_ETH_W5500 eth_w5500.c)
|
2020-03-26 22:21:48 +08:00
|
|
|
zephyr_sources_ifdef(CONFIG_DSA_KSZ8794 dsa_ksz8794.c)
|
2018-09-25 22:52:27 +08:00
|
|
|
|
|
|
|
if(CONFIG_ETH_NATIVE_POSIX)
|
|
|
|
zephyr_library()
|
2019-10-01 22:08:36 +08:00
|
|
|
zephyr_library_compile_definitions(
|
|
|
|
NO_POSIX_CHEATS
|
|
|
|
_BSD_SOURCE
|
|
|
|
_DEFAULT_SOURCE
|
|
|
|
)
|
2018-09-25 22:52:27 +08:00
|
|
|
zephyr_library_sources(
|
|
|
|
eth_native_posix.c
|
|
|
|
eth_native_posix_adapt.c
|
|
|
|
)
|
|
|
|
endif()
|