This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
technical:openwrt-prep [2022/09/17 04:57] admin [Location for the SDK] |
technical:openwrt-prep [2023/12/27 18:46] (current) admin |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Prepare OpenWRT | + | ====== Prepare OpenWRT |
===== Prepare The System ===== | ===== Prepare The System ===== | ||
* This page will cover the preparation work for you to be able to build OpenWRT with the MESHdesk packages included. | * This page will cover the preparation work for you to be able to build OpenWRT with the MESHdesk packages included. | ||
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 **22.03.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 22.03.0 | + | mkdir 23.05.2 |
# Change to our working directory | # Change to our working directory | ||
- | cd 22.03.0 | + | cd 23.05.2 |
</ | </ | ||
===== Checkout the SDK ===== | ===== Checkout the SDK ===== | ||
- | * Do a clean checkout of the OpenWRT | + | * Do a clean checkout of the OpenWrt |
<code bash> | <code bash> | ||
git clone https:// | git clone https:// | ||
Line 36: | Line 36: | ||
git tag -l | git tag -l | ||
</ | </ | ||
- | * We will be checking out the **v22.03.0** tag. | + | * We will be checking out the **v23.05.2** tag. |
<code bash> | <code bash> | ||
- | git checkout | + | git checkout |
</ | </ | ||
- | * Confirm that this **v22.03.0** is now checked out. | + | * Confirm that this **v23.05.2** is now checked out. |
<code bash> | <code bash> | ||
git branch | git branch | ||
Line 62: | Line 62: | ||
./ | ./ | ||
./ | ./ | ||
- | #For backward compatibility in 22.03 with older Luci libs | + | #For backward compatibility in 23.05 with older Luci libs |
./ | ./ | ||
#Add the iptables translator package to translate iptables to nftables | #Add the iptables translator package to translate iptables to nftables | ||
./ | ./ | ||
+ | #Add these Luci packages | ||
+ | ./ | ||
+ | ./ | ||
+ | ./ | ||
+ | ./ | ||
+ | ./ | ||
+ | ./ | ||
+ | #If you are going to implement OpenVPN tunnels | ||
+ | ./ | ||
</ | </ | ||
* Everything is now prepared for us to add the MESHdesk package. | * Everything is now prepared for us to add the MESHdesk package. | ||
+ | |||
+ | [[technical: | ||