This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
technical:openwrt-prep [2023/10/23 07:51] admin [Install the required packages] |
technical:openwrt-prep [2023/12/27 18:46] (current) admin |
||
---|---|---|---|
Line 14: | Line 14: | ||
* Our suggestion is to create a folder that will indicate the version of the firmware you'll be building. | * Our suggestion is to create a folder that will indicate the version of the firmware you'll be building. | ||
* You need to do this as a normal Linux user (not root). | * You need to do this as a normal Linux user (not root). | ||
- | * Here we create a folder for the **23.05.0** release. | + | * Here we create a folder for the **23.05.2** release. |
<code bash> | <code bash> | ||
# Create the working directory | # Create the working directory | ||
- | mkdir 23.05.0 | + | mkdir 23.05.2 |
# Change to our working directory | # Change to our working directory | ||
- | cd 23.05.0 | + | cd 23.05.2 |
</ | </ | ||
Line 36: | Line 36: | ||
git tag -l | git tag -l | ||
</ | </ | ||
- | * We will be checking out the **v23.05.0** tag. | + | * We will be checking out the **v23.05.2** tag. |
<code bash> | <code bash> | ||
- | git checkout v23.05.0 | + | git checkout v23.05.2 |
</ | </ | ||
- | * Confirm that this **v23.05.0** is now checked out. | + | * Confirm that this **v23.05.2** is now checked out. |
<code bash> | <code bash> | ||
git branch | git branch |