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
 
(3 intermediate revisions by the same user not shown)
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 [https://docs.zephyrproject.org/latest/getting_started/index.html getting started guide].  


<syntaxhighlight lang="bash">
west init --mr <mayor release number>  ./<the zephyr project folder for this release>
</syntaxhighlight>


For the major release 3.7.0:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
west init --mr v3.0.0  ./zephyrproject.3.0.0/
west init --mr v3.7.0  ./zephyrproject/3.7.0/


cd zephyrproject.3.0.0/
cd zephyrproject/3.3.0/


west update
west update
</syntaxhighlight>
</syntaxhighlight>
==Further Information==
* https://docs.zephyrproject.org/latest/guides/west/basics.html

Latest revision as of 15:13, 8 November 2024

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

west init --mr v3.7.0  ./zephyrproject/3.7.0/

cd zephyrproject/3.3.0/

west update


Further Information