From 8e5e2c4e55276cdbbc724f7e56fd99690b66e22c Mon Sep 17 00:00:00 2001 From: wukongdaily <2666180@gmail.com> Date: Thu, 6 Aug 2026 16:01:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E6=96=B0=E5=A2=9E=E6=94=AF=E6=8C=81GL?= =?UTF-8?q?=E5=8E=9F=E5=8E=82op25=E5=9B=BA=E4=BB=B6=E7=9A=84MT3600BE?= =?UTF-8?q?=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gl-inet-op25.sh | 1 + main.sh | 16 ++++++++++++++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/gl-inet-op25.sh b/gl-inet-op25.sh index 859174b..60ece37 100644 --- a/gl-inet-op25.sh +++ b/gl-inet-op25.sh @@ -116,6 +116,7 @@ while true; do echo green "*******GL-iNet MT-3000 op25" green "*******GL-iNet MT-6000 op25" + green "*******GL-iNet MT-3600BE op25" echo light_magenta " 1. 一键安装风格化" echo diff --git a/main.sh b/main.sh index 74848b8..ffc505c 100755 --- a/main.sh +++ b/main.sh @@ -61,8 +61,12 @@ auto_detect_and_run() { *MT5000* | *mt5000*) download_and_run_script "mt5000.sh" ;; - *MT3600* | *mt3600*) - download_and_run_script "mt3600.sh" + *MT3600* | *mt3600* | *mt3600be* | *MT3600BE*) + if echo "$gl_name" | grep -qi "mt3600be" && grep -q "25\." /etc/openwrt_release 2>/dev/null; then + download_and_run_script "gl-inet-op25.sh" + else + download_and_run_script "mt3600.sh" + fi ;; *E5800* | *e5800* | *Mudi* | *mudi*) download_and_run_script "mudi7.sh" @@ -117,6 +121,7 @@ select_model() { green "12. GL-iNet MT-3000/MT-6000 (OP25固件)" echo green "13. MT-3000 换分区助手 (U盘扩容)" + green "14. GL-iNet MT-3600BE (OP25固件)" echo echo " Q. 退出" echo @@ -153,6 +158,13 @@ select_model() { 13) download_and_run_script "mt-3000/mt3000.sh" ;; + 14) + if grep -q "25\." /etc/openwrt_release 2>/dev/null; then + download_and_run_script "gl-inet-op25.sh" + else + download_and_run_script "mt3600.sh" + fi + ;; q | Q) echo "退出" exit 0