]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
x86: coreboot: Use vendor in the Kconfig
authorSimon Glass <sjg@chromium.org>
Sun, 27 Jun 2021 23:51:07 +0000 (17:51 -0600)
committerBin Meng <bmeng.cn@gmail.com>
Thu, 15 Jul 2021 11:50:21 +0000 (19:50 +0800)
Use VENDOR_COREBOOT instead of TARGET_COREBOOT so we can have multiple
coreboot boards, sharing options. Only SYS_CONFIG_NAME needs to be
defined TARGET_COREBOOT.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
arch/x86/cpu/coreboot/Kconfig
board/coreboot/coreboot/Kconfig

index 497d6284ac19ddd6cec8752ddb3fae1db9f7b245..b97c27790419f5018158db9b43838e353b6a6716 100644 (file)
@@ -1,4 +1,4 @@
-if TARGET_COREBOOT
+if VENDOR_COREBOOT
 
 config SYS_COREBOOT
        bool
index 5bd6465d989f0b0e006871addf04aac7fabf928c..05e9b3b6f7564e33cade537f3935d3c25b9b99c6 100644 (file)
@@ -1,4 +1,4 @@
-if TARGET_COREBOOT
+if VENDOR_COREBOOT
 
 config SYS_BOARD
        default "coreboot"
@@ -9,9 +9,6 @@ config SYS_VENDOR
 config SYS_SOC
        default "coreboot"
 
-config SYS_CONFIG_NAME
-       default "coreboot"
-
 config SYS_TEXT_BASE
        default 0x01110000
 
@@ -31,4 +28,11 @@ config SYS_CAR_SIZE
        help
          This option specifies the board specific Cache-As-RAM (CAR) size.
 
+endif  # CONFIG_VENDOR_COREBOOT
+
+if TARGET_COREBOOT
+
+config SYS_CONFIG_NAME
+       default "coreboot"
+
 endif