commit | 1664f44a61e941bee472d81449ec37ebcc182496 | [log] [tgz] |
---|---|---|
author | developer <developer@mediatek.com> | Fri Sep 13 14:52:22 2024 +0800 |
committer | developer <developer@mediatek.com> | Mon Sep 16 13:10:26 2024 +0800 |
tree | 1ad546cbe71f02d1409162fada467b7cf0d64ced | |
parent | 63ef6441b93beb78d410f0623f9326979975b5da [diff] |
[][kernel][common][eth][Change the wait time for SER handshake with WiFi timeout to 10 seconds, and refactor the debugging messages] [Description] Change the wait time for SER handshake with WiFi timeout to 10 seconds, and refactor the debugging messages. In current design, the NETSYS SER only waits for 3 seconds for WiFi to stop traffic. Therefore, NETSYS SER might encounter unexpected results if users print a lot of messages in the WiFi SER handler. [Release-log] N/A Change-Id: I9363591be005a7db419c4cf70977626a44cafbd2 Reviewed-on: https://gerrit.mediatek.inc/c/openwrt/feeds/mtk_openwrt_feeds/+/9634928
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)