Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
| network:firmware:prep [2026/03/14 15:02] – system | network:firmware:prep [2026/04/06 14:14] (current) – system | ||
|---|---|---|---|
| Line 14: | Line 14: | ||
| <code bash> | <code bash> | ||
| sudo apt-get update | sudo apt-get update | ||
| - | sudo apt-get install build-essential subversion git-core libncurses5-dev zlib1g-dev gawk flex quilt libssl-dev xsltproc libxml-parser-perl unzip mercurial | + | sudo apt-get install build-essential subversion git-core libncurses5-dev zlib1g-dev gawk flex quilt libssl-dev xsltproc libxml-parser-perl unzip mercurial |
| </ | </ | ||
| ==== Storage location for the SDK ==== | ==== Storage location for the SDK ==== | ||
| Line 21: | Line 21: | ||
| * We recommend that you create a folder that contains the version of the firmware you are going to build. | * We recommend that you create a folder that contains the version of the firmware you are going to build. | ||
| * You must do this as a normal Linux user (not root). | * You must do this as a normal Linux user (not root). | ||
| - | * Here we create a folder for version **25.12.0**. | + | * Here we create a folder for version **25.12.2**. |
| <code bash> | <code bash> | ||
| # Create the working directory | # Create the working directory | ||
| - | mkdir 25.12.0 | + | mkdir 25.12.2 |
| # Change to our working directory | # Change to our working directory | ||
| - | cd 25.12.0 | + | cd 25.12.2 |
| </ | </ | ||
| Line 45: | Line 45: | ||
| git tag -l | git tag -l | ||
| </ | </ | ||
| - | * We will checkout the tag **25.12.0**. | + | * We will checkout the tag **25.12.2**. |
| <code bash> | <code bash> | ||
| - | git checkout v25.12.0 | + | git checkout v25.12.2 |
| </ | </ | ||
| - | * Confirm that this **25.12.0** is now checked out. | + | * Confirm that this **25.12.2** is now checked out. |
| <code bash> | <code bash> | ||
| git branch | git branch | ||