diff options
author | Felix Singer <felixsinger@posteo.net> | 2021-04-11 18:17:45 +0200 |
---|---|---|
committer | Michael Niewöhner <foss@mniewoehner.de> | 2021-04-19 14:08:34 +0000 |
commit | df5a6b36b81c2f7ee4663e92b2d3023a84bb1d6f (patch) | |
tree | d5d03d492112334e7a2033d4669b443909856258 | |
parent | 4e29e2f14bdbd77bf8498abe643e76c2c64cbb1a (diff) |
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>
-rw-r--r-- | src/mainboard/clevo/cml-u/Kconfig | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mainboard/clevo/cml-u/Kconfig b/src/mainboard/clevo/cml-u/Kconfig index 51ee8a94e3..17142f3242 100644 --- a/src/mainboard/clevo/cml-u/Kconfig +++ b/src/mainboard/clevo/cml-u/Kconfig @@ -35,7 +35,7 @@ config MAINBOARD_PART_NUMBER 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 DEVICETREE 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 UART_FOR_CONSOLE 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 VGA_BIOS_ID 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 POST_DEVICE config VARIANT_DIR string - default "l140cu" if BOARD_CLEVO_L140CU + default "l140cu" if BOARD_CLEVO_L140CU_BASE config SEABIOS_PS2_TIMEOUT int |