summaryrefslogtreecommitdiff
path: root/zephyr/zmake
diff options
context:
space:
mode:
authorYuval Peress <peress@chromium.org>2021-06-11 12:28:01 -0600
committerCommit Bot <commit-bot@chromium.org>2021-06-17 23:26:13 +0000
commitb39dc931e96afda3ffef77a46a094008bfc2fb97 (patch)
treee2b5987d18f420873bbca235518c6754e051002b /zephyr/zmake
parent16df4319658b60a7dfc6231c23b7f7e6a2826b6b (diff)
downloadchrome-ec-b39dc931e96afda3ffef77a46a094008bfc2fb97.tar.gz
zephyr: zmake: support v2.6
Add support to the configuration schema to allow kernel 2.6 builds. BRANCH=none BUG=b:190731415 TEST=manually updated zmake.yaml to v2.6 and made sure it validates Cq-Depend: chrome-internal:3904822 Signed-off-by: Yuval Peress <peress@chromium.org> Change-Id: I350eaf81c4ebd3f708f60a5138e093745f0012fc Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2970983 Reviewed-by: Denis Brockus <dbrockus@chromium.org>
Diffstat (limited to 'zephyr/zmake')
-rw-r--r--zephyr/zmake/zmake/project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/zephyr/zmake/zmake/project.py b/zephyr/zmake/zmake/project.py
index f7e085cb1e..fcbf01c30e 100644
--- a/zephyr/zmake/zmake/project.py
+++ b/zephyr/zmake/zmake/project.py
@@ -62,7 +62,7 @@ class ProjectConfig:
'type': 'array',
'items': {
'type': 'string',
- 'enum': ['v2.5'],
+ 'enum': ['v2.5', 'v2.6'],
},
'minItems': 1,
'uniqueItems': True,