IRNAS / irnas-zephyr-template

Template for Zephyr Projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BUG - west version does not match when initializing the repository

TjazVracko opened this issue · comments

Describe the bug

I have west v0.12.0 on my PC natively. But NCS v2.4.1 requires at least v0.13.0. Calling west update will use the wrong version of west during the initialization of a repository.

The init instructions are as follows (copied from the readme):

west init -m https://github.com/IRNAS/<repo-name> <repo-name>
cd <repo-name>/project
west update

# set up east globally (this only needs to be done once on each machine)
east sys-setup
# install toolchain for the version of NCS used in this project
east update toolchain

Change them to the following to fix this:

west init -m https://github.com/IRNAS/<repo-name> <repo-name>
cd <repo-name>/project

# set up east globally (this only needs to be done once on each machine)
east sys-setup
# install toolchain for the version of NCS used in this project
east update toolchain

# set up west modules in the repository
east bypass -- update