mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-13 20:09:14 +08:00
23 lines
383 B
Plaintext
23 lines
383 B
Plaintext
|
|
menu "Eth Configuration"
|
|
config ENABLE_FXMAC
|
|
bool
|
|
prompt "Use FXMAC"
|
|
default n
|
|
|
|
config ENABLE_FGMAC
|
|
bool
|
|
prompt "Use FGMAC"
|
|
default n
|
|
|
|
if ENABLE_FGMAC
|
|
source "$STANDALONE_DIR/drivers/eth/fgmac/Kconfig"
|
|
endif
|
|
|
|
if ENABLE_FXMAC
|
|
source "$STANDALONE_DIR/drivers/eth/fxmac/Kconfig"
|
|
endif
|
|
|
|
endmenu
|
|
|