summaryrefslogtreecommitdiff
path: root/zephyr/README.md
blob: fc9f7e7c72e473ee1e7d6de0f69efbbca096b810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Zephyr EC

[TOC]

## Introduction

Zephyr EC is an effort to create an industry-standard Embedded Controller
implementation for use primarily on laptops. It is born out of the Chromium OS
EC.

## Gitlab integration

As an experiment we have a basic gitlab integration. It watches the EC repo and
kicks of a build when new commits appear. So far it just builds for volteer and
does not run any tests. For firmware branches, it also builds, but fails.

The gitlab builder works without a chroot and uses the Zephyr toolchain. This
is intended to ensure that we have a path to upstreaming our code eventually and
do not rely on Chrome OS-specific tools. It does make use of 'zmake', however.

See the piplines [here](https://gitlab.com/zephyr-ec/ec/-/pipelines).

## News and Breaking Changes

* Support for Zephyr v2.4 has been dropped as of
  [CL:2715345](https://crrev.com/c/2715345).  If you wish to build for
  kernel v2.4 now, you must invoke `zmake configure` similar to below:

      $ zmake --zephyr-base ~/trunk/src/third_party/zephyr/main/v2.4 \
              configure --ignore-unsupported-zephyr-version ...