Michael Niewöhner has submitted this change. ( https://review.coreboot.org/c/coreboot/+/52241 )
Change subject: mb/clevo/cml-u/Kconfig: Use BOARD_CLEVO_L140CU_BASE ......................................................................
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 --- M src/mainboard/clevo/cml-u/Kconfig 1 file changed, 6 insertions(+), 6 deletions(-)
Approvals: build bot (Jenkins): Verified Michael Niewöhner: Looks good to me, approved
diff --git a/src/mainboard/clevo/cml-u/Kconfig b/src/mainboard/clevo/cml-u/Kconfig index 51ee8a9..17142f3 100644 --- a/src/mainboard/clevo/cml-u/Kconfig +++ b/src/mainboard/clevo/cml-u/Kconfig @@ -35,7 +35,7 @@
config MAINBOARD_VERSION string - default "2.1A" if BOARD_CLEVO_L140CU + default "2.1A" if BOARD_CLEVO_L140CU_BASE
config DEVICETREE string @@ -43,7 +43,7 @@
config CBFS_SIZE hex - default 0xc00000 if BOARD_CLEVO_L140CU + default 0xc00000 if BOARD_CLEVO_L140CU_BASE
config CONSOLE_POST bool @@ -55,11 +55,11 @@
config MAX_CPUS int - default 8 if BOARD_CLEVO_L140CU + default 8 if BOARD_CLEVO_L140CU_BASE
config DIMM_MAX int - default 2 if BOARD_CLEVO_L140CU + default 2 if BOARD_CLEVO_L140CU_BASE
config DIMM_SPD_SIZE int @@ -71,7 +71,7 @@
config TPM_PIRQ hex - default 0x10 if BOARD_CLEVO_L140CU # GPP_A7/PIRQA# + default 0x10 if BOARD_CLEVO_L140CU_BASE # GPP_A7/PIRQA#
config POST_DEVICE bool @@ -79,7 +79,7 @@
config VARIANT_DIR string - default "l140cu" if BOARD_CLEVO_L140CU + default "l140cu" if BOARD_CLEVO_L140CU_BASE
config SEABIOS_PS2_TIMEOUT int