diff options
author | Paul Sokolovsky <paul.sokolovsky@linaro.org> | 2019-09-11 11:04:04 +0300 |
---|---|---|
committer | Paul Sokolovsky <paul.sokolovsky@linaro.org> | 2019-09-11 11:04:04 +0300 |
commit | 5d7c0b57d8fbd3a24a8384756dec8dbcea858157 (patch) | |
tree | 425a933ae06671ebf5269429d25f17b809c74814 | |
parent | 7f8f4798bef677dee1f22ea663fb9b376aa7a155 (diff) | |
download | configs-5d7c0b57d8fbd3a24a8384756dec8dbcea858157.tar.gz |
zephyr-upstream: Install python3-serial for build.
The builds started to fail on "import serial" line in the "sanitycheck"
script. I'm not sure what happened, as that line was there (unconditional)
for a long time. Anyway, just explicitly install the dependency.
Change-Id: I0470e59904b0076b271ef0f9dddec4809b33bc8e
-rwxr-xr-x | zephyr-upstream/builders.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zephyr-upstream/builders.sh b/zephyr-upstream/builders.sh index 7c38f9937..eddedcaed 100755 --- a/zephyr-upstream/builders.sh +++ b/zephyr-upstream/builders.sh @@ -3,7 +3,7 @@ sudo apt-get -q=2 update sudo apt-get -q=2 -y install git ninja-build g++ g++-multilib gperf python3-ply \ python3-yaml gcc-arm-none-eabi python-requests rsync device-tree-compiler \ - python3-pip python3-setuptools python3-wheel + python3-pip python3-serial python3-setuptools python3-wheel set -ex |