rt-thread/bsp/phytium/libraries/standalone/drivers/eth/Kconfig

23 lines
383 B
Plaintext
Raw Normal View History

menu "Eth Configuration"
config ENABLE_FXMAC
bool
prompt "Use FXMAC"
default n
2023-01-09 10:14:23 +08:00
config ENABLE_FGMAC
bool
prompt "Use FGMAC"
2023-01-09 10:14:23 +08:00
default n
if ENABLE_FGMAC
source "$STANDALONE_DIR/drivers/eth/fgmac/Kconfig"
endif
if ENABLE_FXMAC
source "$STANDALONE_DIR/drivers/eth/fxmac/Kconfig"
endif
2023-01-09 10:14:23 +08:00
endmenu