Get a specific Zephyr source code: Difference between revisions

From chriesibaum wiki
Jump to navigation Jump to search
(Created page with " 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. <syntax...")
 
No edit summary
Line 1: Line 1:


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.  
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.  


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
Line 10: Line 9:
west update
west update
</syntaxhighlight>
</syntaxhighlight>
==Further Information==
* https://docs.zephyrproject.org/latest/guides/west/basics.html

Revision as of 12:17, 9 March 2022

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 v3.0.0  ./zephyrproject.3.0.0/

cd zephyrproject.3.0.0/

west update


Further Information