summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-12-28 16:47:37 -0700
committerCommit Bot <commit-bot@chromium.org>2020-12-30 21:58:10 +0000
commitc1834d87f64c06760905656ac01ac4585a96ee07 (patch)
treea5d3e8fa18793dbe3c92a3042b6c30caaab0544c
parent04f8523d0c737f976e101aebd5f1229273d85764 (diff)
downloadchrome-ec-c1834d87f64c06760905656ac01ac4585a96ee07.tar.gz
zephyr: Rename the top-level Kconfig
Update PLATFORM_EC to refer to the shim since that is really what it is brining in. Once we actually have code on the Zephyr side then perhaps we can introduce a distinction here, but that is not the current goal. Also use Chromium OS EC consistently. BUG=b:176449230 BRANCH=none TEST=ninja -C /tmp/z/vol/build-ro menuconfig See that the naming appears Signed-off-by: Simon Glass <sjg@chromium.org> Change-Id: I11aefa5ba224b22a5bb91c4a4ed146ad5b0c500c Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2606570 Reviewed-by: Keith Short <keithshort@chromium.org>
-rw-r--r--zephyr/Kconfig9
1 files changed, 7 insertions, 2 deletions
diff --git a/zephyr/Kconfig b/zephyr/Kconfig
index 90af23f3a8..c7d5f84c9d 100644
--- a/zephyr/Kconfig
+++ b/zephyr/Kconfig
@@ -14,12 +14,17 @@ config HAS_TEST_TASKS
endif # ZTEST
menuconfig PLATFORM_EC
- bool "Enable building code from the platform/ec Zephyr module"
+ bool "Chromium OS EC shim"
imply PRINTK
imply SHELL
help
The platform/ec Zephyr module allows some code from the
- existing Chrome OS EC project to be "shimmed" into Zephyr.
+ existing Chromium OS EC project to be "shimmed" into Zephyr. With
+ this it is possible to use the existing code base within Zephyr.
+
+ Once we manage to get a platform fully running with Zephyr we will
+ progressively upstream components and turn off the shim for each
+ one until eventually all code is on the Zephyr side.
if PLATFORM_EC