commit | 081f2e664947e4f8a4e1ed23dd396730c1f473c6 | [log] [tgz] |
---|---|---|
author | developer <developer@mediatek.com> | Thu Sep 19 15:33:31 2024 +0800 |
committer | developer <developer@mediatek.com> | Fri Sep 20 11:05:41 2024 +0800 |
tree | 4398e5738827847d12a3c5144d315937f2941a32 | |
parent | 8f7ee42f04c64972e82159ed6b25917ec58d43af [diff] |
[][openwrt][mt7988][crypto][Change ESP offload config to default] [Description] Change ESP offload config to default. This config will affect the throughput of IPSec SW path decryption. After enabling this setting, the processing of IPSec decryption can be accelerated through esp4_gro_receive, increasing the decryption throughput from 400 Mbps to approximately 800 Mbps. [Release-log] N/A Change-Id: Ib559f27e61d1174666064b718b3e3672fff9912a Reviewed-on: https://gerrit.mediatek.inc/c/openwrt/feeds/mtk_openwrt_feeds/+/9651008
Currently two release branches are supported:
21.02 This is the current in-use branch
git clone -b openwrt-21.02 https://git.openwrt.org/openwrt/openwrt.git
master (will be 24.0x branch later) The next version in development
git clone https://git.openwrt.org/openwrt/openwrt.git
cd openwrt echo "src-git mtk_openwrt_feed https://git01.mediatek.com/openwrt/feeds/mtk-openwrt-feeds" >> feeds.conf.default ./scripts/feeds update -a ./scripts/feeds install -a
21.02 branch
cp -af ./feeds/mtk_openwrt_feed/21.02/files/* . cp -af ./feeds/mtk_openwrt_feed/tools . for file in $(find ./feeds/mtk_openwrt_feed/21.02/patches-base -name "*.patch" | sort); do patch -f -p1 -i ${file}; done for file in $(find ./feeds/mtk_openwrt_feed/21.02/patches-feeds -name "*.patch" | sort); do patch -f -p1 -i ${file}; done
master branch
cp -af ./feeds/mtk_openwrt_feed/master/files/* . for file in $(find ./feeds/mtk_openwrt_feed/master/patches-base -name "*.patch" | sort); do patch -f -p1 -i ${file}; done
make menuconfig
21.02 branch
Target System -> MediaTek Ralink ARM Subtarget -> MT7981 / MT7986 / MT7988 Target Profile -> select as needed
master branch
Target System -> MediaTek Ralink ARM Subtarget -> Filogic 8x0 (MT798x) Target Profile -> select as needed
make V=s -j$(nproc)