mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
461cca7997
Fix totally blank console at boot, clock value must be decimal,
as for the 30Mhz external crystal.
Fixes: 26e5944ec9
("stmark2: Migrate CONFIG_SYS_EXTRA_OPTIONS to Kconfig")
Signed-off-by: Angelo Dureghello <angelo@kernel-space.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
29 lines
360 B
Text
29 lines
360 B
Text
if TARGET_STMARK2
|
|
|
|
config CF_SBF
|
|
def_bool y
|
|
|
|
config EXTRA_CLOCK
|
|
def_bool y
|
|
|
|
config SERIAL_BOOT
|
|
def_bool y
|
|
depends on CF_SBF
|
|
|
|
config SYS_INPUT_CLKSRC
|
|
int "External crystal clock"
|
|
default 30000000
|
|
|
|
config SYS_CPU
|
|
default "mcf5445x"
|
|
|
|
config SYS_BOARD
|
|
default "stmark2"
|
|
|
|
config SYS_VENDOR
|
|
default "sysam"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "stmark2"
|
|
|
|
endif
|