summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Zieba <robertzieba@google.com>2022-05-31 10:06:38 -0600
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-06-02 16:00:11 +0000
commitbc8dd35b3a0d5b24ca5df78ab9b308f2cf480a03 (patch)
tree90557a1d5384f8eae282d9ca15e6a1c26e0b58c9
parent030d9058d426a94ef46c9963f1ed005987ec6193 (diff)
downloadchrome-ec-bc8dd35b3a0d5b24ca5df78ab9b308f2cf480a03.tar.gz
zephyr: Remove cros_fwid from version output
Currently the ec version output prints the value of cros_fwid. However, this string isn't set up for zephyr and is in the process of being deprecated. This commit disables the Zephyr Kconfig for this feature by default. This is done instead of removing it to pass a CQ test that will fail because it identifies `CONFIG_CROS_FWID_VERSION` as an orphan config. Example EC console output: ``` 22-05-26 13:07:39.852 Chip: Nuvoton npcx9m3f 00160207 22-05-26 13:07:39.855 Board: 2 22-05-26 13:07:39.855 RO: skyrim_v3.1.49995-ec:15e362,os: 22-05-26 13:07:39.858 RW: skyrim_v3.1.49995-ec:15e362,os: 22-05-26 13:07:39.860 Build: skyrim_v3.1.49995-ec:15e362,os:<...> 22-05-26 13:07:39.868 2022-05-26 13:04:44 <...> ``` BRANCH=none BUG=b:232468323 TEST=Ran version command Signed-off-by: Robert Zieba <robertzieba@google.com> Change-Id: Ic80efaec46f67b971ccdde0441538545d3321d20 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3671455 Reviewed-by: Diana Z <dzigterman@chromium.org>
-rw-r--r--zephyr/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/zephyr/Kconfig b/zephyr/Kconfig
index 4170225255..6e17b9ed13 100644
--- a/zephyr/Kconfig
+++ b/zephyr/Kconfig
@@ -268,7 +268,7 @@ config PLATFORM_EC_CONSOLE_CMD_SHMEM
config PLATFORM_EC_CROS_FWID_VERSION
bool "Include CrOS FWID version"
- default y
+ default n
help
Include Chrome OS FWID in version output. The CrOS FWID will be common
across OS, AP firmware and EC firmware when built together.