From 5b1c53f48e5091f24a6e8d99a1cd3129829c4cde Mon Sep 17 00:00:00 2001 From: zhao Date: Fri, 21 Mar 2025 15:53:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20toolchain/build.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhao --- toolchain/build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/toolchain/build.sh b/toolchain/build.sh index 8e99cac..7cd42be 100644 --- a/toolchain/build.sh +++ b/toolchain/build.sh @@ -12,6 +12,10 @@ fi # Enter source code cd openwrt +# Init feeds +./scripts/feeds update -a +./scripts/feeds install -a + # Load devices Config if [ "$model" = "Padavanonly_MT798X_v24.10" ]; then cp -f defconfig/mt7981-ax3000.config .config @@ -21,10 +25,6 @@ elif [ "$model" = "OpenWrt_Rockchip_v24.10" ] || [ "$model" = "OpenWrt_X86_64_v2 cp -f defconfig/mt7981-ax3000.config .config fi -# Init feeds -./scripts/feeds update -a -./scripts/feeds install -a - # Compile make defconfig make -j$(nproc)