commit | fc0c03fac7a7435630315173c0751ef1cbf0cc6d | [log] [tgz] |
---|---|---|
author | developer <developer@mediatek.com> | Wed Sep 25 12:16:18 2024 +0800 |
committer | developer <developer@mediatek.com> | Tue Oct 01 15:12:50 2024 +0800 |
tree | 795fd1d2b3a9f3814bf6e68086b2f7aaa66204bd | |
parent | 31cd1905a6aecfaaecb4a164001f559c44e88279 [diff] |
[][kernel][mt7988][eth][net: phy: mediatek: mtk-2p5ge: Fix fw loading flow] [Description] Fix fw loading flow. A misconfiguration is applied in change id: Ibd179ef7559dfb25e4d049b4ece90a9aaaa30611 Without this patch, fw loading flow may cause unpredictable RCU stall. [Release-log] N/A Change-Id: I06180a8de7961de3fff1becc1fac9f0948695191 Reviewed-on: https://gerrit.mediatek.inc/c/openwrt/feeds/mtk_openwrt_feeds/+/9676398
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)