Get a specific Zephyr source code: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 3: | Line 3: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
west init --mr | west init --mr <mayor release number> ./<the zephyr project folder for this release> | ||
</syntaxhighlight> | |||
cd zephyrproject.3. | For the major release 3.3.0: | ||
<syntaxhighlight lang="bash"> | |||
west init --mr v3.3.0 ./zephyrproject.3.3.0/ | |||
cd zephyrproject.3.3.0/ | |||
west update | west update | ||
Revision as of 16:49, 17 March 2023
To install a specific version of the source code (e.g. a stable version) run the following commands instead of the commands mentioned in the getting started guide.
west init --mr <mayor release number> ./<the zephyr project folder for this release>
For the major release 3.3.0:
west init --mr v3.3.0 ./zephyrproject.3.3.0/
cd zephyrproject.3.3.0/
west update