summaryrefslogtreecommitdiff
path: root/util/mainboard
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2019-09-24 11:14:39 -0700
committerPatrick Georgi <pgeorgi@google.com>2019-09-25 12:56:13 +0000
commitd1a4a7a7fa0f64931b94fd8a784b35546235f893 (patch)
treeec9a1789708c390ef21715d13af551853d8118d1 /util/mainboard
parentd6d416cc96cc69301f11133a839e0caae97d1e91 (diff)
downloadcoreboot-d1a4a7a7fa0f64931b94fd8a784b35546235f893.tar.xz
util/mb/google/hatch: Update kconfig.py to not select SOC_INTEL_COMETLAKE
Now that SOC_INTEL_COMETLAKE is selected by default in Kconfig, utility to create a new variant does not need to do that anymore in Kconfig.name Change-Id: If68bcf14e2e0812d4f4dcb99371c65790154ff62 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35563 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org> Reviewed-by: Andrew McRae <amcrae@chromium.org> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Diffstat (limited to 'util/mainboard')
-rwxr-xr-xutil/mainboard/google/hatch/kconfig.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/util/mainboard/google/hatch/kconfig.py b/util/mainboard/google/hatch/kconfig.py
index 8b54b75c51..ecc24eeb49 100755
--- a/util/mainboard/google/hatch/kconfig.py
+++ b/util/mainboard/google/hatch/kconfig.py
@@ -149,7 +149,6 @@ def add_to_Kconfig_name(variant_name):
print('\tbool "-> ' + capitalized + '"', file=outfile)
print('\tselect BOARD_GOOGLE_BASEBOARD_HATCH', file=outfile)
print('\tselect BOARD_ROMSIZE_KB_16384', file=outfile)
- print('\tselect SOC_INTEL_COMETLAKE', file=outfile)
if __name__ == '__main__':