zhugengyu 1537544f6a
[bsp/phytium] add phytium bsp to support e2000 bootup with smp (#6566)
add phytium board (E2000) bsp
support usart
support SMP with demo
2022-11-10 09:22:48 -05:00

23 lines
394 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