mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 14:36:03 +01:00
If CONFIG_SYS_SKIP_UART_INIT is enabled, calculate the current baud rate and update the "console" environment variable. Signed-off-by: Jim Liu <JJLIU0@nuvoton.com>
27 lines
434 B
Plaintext
27 lines
434 B
Plaintext
if TARGET_POLEG
|
|
|
|
config SYS_BOARD
|
|
default "poleg_evb"
|
|
|
|
config SYS_VENDOR
|
|
default "nuvoton"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "poleg"
|
|
|
|
choice
|
|
prompt "Target board select"
|
|
default TARGET_POLEG_EVB
|
|
|
|
config TARGET_POLEG_EVB
|
|
bool "Poleg EVB"
|
|
help
|
|
poleg EVB is Nuvoton evaluation board for NPCM750 SoC,
|
|
supports general functions of Basebase Management
|
|
Controller(BMC).
|
|
|
|
endchoice
|
|
|
|
source "board/nuvoton/common/Kconfig"
|
|
endif
|