mb/clevo/cml-u/Kconfig: Use BOARD_CLEVO_L140CU_BASE
To make the L140CU able to be selected by other OEMs, use BOARD_CLEVO_L140CU_BASE for OEM independent options. BOARD_CLEVO_L140CU represents the standard Clevo mainboard without any OEM modifications, while BOARD_CLEVO_L140CU_BASE is used for the baseboard. Change-Id: Iee82eadebfc851619dbb64de09283c5ee55a499f Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/52241 Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
4e29e2f14b
commit
df5a6b36b8
|
@ -35,7 +35,7 @@ config MAINBOARD_PART_NUMBER
|
||||||
|
|
||||||
config MAINBOARD_VERSION
|
config MAINBOARD_VERSION
|
||||||
string
|
string
|
||||||
default "2.1A" if BOARD_CLEVO_L140CU
|
default "2.1A" if BOARD_CLEVO_L140CU_BASE
|
||||||
|
|
||||||
config DEVICETREE
|
config DEVICETREE
|
||||||
string
|
string
|
||||||
|
@ -43,7 +43,7 @@ config DEVICETREE
|
||||||
|
|
||||||
config CBFS_SIZE
|
config CBFS_SIZE
|
||||||
hex
|
hex
|
||||||
default 0xc00000 if BOARD_CLEVO_L140CU
|
default 0xc00000 if BOARD_CLEVO_L140CU_BASE
|
||||||
|
|
||||||
config CONSOLE_POST
|
config CONSOLE_POST
|
||||||
bool
|
bool
|
||||||
|
@ -55,11 +55,11 @@ config UART_FOR_CONSOLE
|
||||||
|
|
||||||
config MAX_CPUS
|
config MAX_CPUS
|
||||||
int
|
int
|
||||||
default 8 if BOARD_CLEVO_L140CU
|
default 8 if BOARD_CLEVO_L140CU_BASE
|
||||||
|
|
||||||
config DIMM_MAX
|
config DIMM_MAX
|
||||||
int
|
int
|
||||||
default 2 if BOARD_CLEVO_L140CU
|
default 2 if BOARD_CLEVO_L140CU_BASE
|
||||||
|
|
||||||
config DIMM_SPD_SIZE
|
config DIMM_SPD_SIZE
|
||||||
int
|
int
|
||||||
|
@ -71,7 +71,7 @@ config VGA_BIOS_ID
|
||||||
|
|
||||||
config TPM_PIRQ
|
config TPM_PIRQ
|
||||||
hex
|
hex
|
||||||
default 0x10 if BOARD_CLEVO_L140CU # GPP_A7/PIRQA#
|
default 0x10 if BOARD_CLEVO_L140CU_BASE # GPP_A7/PIRQA#
|
||||||
|
|
||||||
config POST_DEVICE
|
config POST_DEVICE
|
||||||
bool
|
bool
|
||||||
|
@ -79,7 +79,7 @@ config POST_DEVICE
|
||||||
|
|
||||||
config VARIANT_DIR
|
config VARIANT_DIR
|
||||||
string
|
string
|
||||||
default "l140cu" if BOARD_CLEVO_L140CU
|
default "l140cu" if BOARD_CLEVO_L140CU_BASE
|
||||||
|
|
||||||
config SEABIOS_PS2_TIMEOUT
|
config SEABIOS_PS2_TIMEOUT
|
||||||
int
|
int
|
||||||
|
|
Loading…
Reference in New Issue