soc/amd/common/block/simnow: Add SimNow Kconfig options
Add option for mainboards to target builds for SimNow. Signed-off-by: Fred Reitberger <reitbergerfred@gmail.com> Change-Id: Id765437b69f1bc3a9f9d7858edcd27e687d5a7f3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/73164 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
parent
16e210863f
commit
e299d04cd9
|
@ -0,0 +1,24 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
|
config SOC_AMD_COMMON_BLOCK_SIMNOW_SUPPORTED
|
||||||
|
bool
|
||||||
|
help
|
||||||
|
Select this for mainboards that are supported by SimNow
|
||||||
|
|
||||||
|
config SOC_AMD_COMMON_BLOCK_SIMNOW_BUILD
|
||||||
|
bool "Build for SimNow"
|
||||||
|
default n
|
||||||
|
depends on SOC_AMD_COMMON_BLOCK_SIMNOW_SUPPORTED
|
||||||
|
select CONSOLE_AMD_SIMNOW
|
||||||
|
help
|
||||||
|
Select this option when building for SimNow
|
||||||
|
|
||||||
|
if SOC_AMD_COMMON_BLOCK_SIMNOW_BUILD
|
||||||
|
|
||||||
|
config POST_IO
|
||||||
|
default n
|
||||||
|
|
||||||
|
config CONSOLE_SERIAL
|
||||||
|
default n
|
||||||
|
|
||||||
|
endif
|
Loading…
Reference in New Issue