summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabio Baltieri <fabiobaltieri@google.com>2021-02-23 12:11:05 +0000
committerCommit Bot <commit-bot@chromium.org>2021-02-23 13:33:03 +0000
commitd12c7a6c24fee895d16372036c95b1dda2590cad (patch)
tree64d136cabd875cc2d635eaaf748ddb2499544dba
parent0a32e6fdfd8e24a8f3d512bec9b30fa0bcae6c44 (diff)
downloadchrome-ec-d12c7a6c24fee895d16372036c95b1dda2590cad.tar.gz
zephyr: flag CONFIG_STACK_SIZE as ECOS specific
This is used in core/ specific architecture code, makes no sense for Zephyr, add it to the list of configs we don't care about. BRANCH=none BUG=b:177604307 TEST=build and run Change-Id: I9a4da34fb5a01c0bd96531b673b8b43038d0dcfa Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2712966 Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--zephyr/shim/include/config_chip.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/zephyr/shim/include/config_chip.h b/zephyr/shim/include/config_chip.h
index 9c40654d13..54466f8236 100644
--- a/zephyr/shim/include/config_chip.h
+++ b/zephyr/shim/include/config_chip.h
@@ -59,6 +59,7 @@
#undef CONFIG_I2C_MULTI_PORT_CONTROLLER /* Not required by I2C shim */
#undef CONFIG_IRQ_COUNT /* Only used by Chromium EC core drivers */
#undef CONFIG_LTO /* Link time optimization enabled by Zephyr build system */
+#undef CONFIG_STACK_SIZE /* Only used in Chromium EC core init code */
#ifndef CONFIG_FPU
#undef CONFIG_FPU /* Used in Zephyr as well, enabled in Kconfig directly */
#endif