diff --git a/package/cnsztl/luci-app-openclash/files/etc/init.d/openclash b/package/cnsztl/luci-app-openclash/files/etc/init.d/openclash
index 0b323626c0..7e145aa0ce 100755
--- a/package/cnsztl/luci-app-openclash/files/etc/init.d/openclash
+++ b/package/cnsztl/luci-app-openclash/files/etc/init.d/openclash
@@ -344,9 +344,6 @@ if [ "$enable" -eq 1 ] && [ -f "$CONFIG_FILE" ]; then
echo "第六步: 设置 OpenClash 防火墙规则..." >$START_LOG
ln -s /usr/share/openclash/yacd /www/openclash 2>/dev/null
- uci set firewall.@defaults[0].flow_offloading=1
- uci commit firewall
- /etc/init.d/firewall restart >/dev/null 2>&1
iptables -t nat -N openclash
iptables -t nat -N openclash_dns
@@ -438,9 +435,6 @@ stop()
ip6tables -t nat -X openclash >/dev/null 2>&1
ip6tables -t nat -X openclash_dns >/dev/null 2>&1
- uci set firewall.@defaults[0].flow_offloading=1
- uci commit firewall
- /etc/init.d/firewall restart >/dev/null 2>&1
echo "第二步: 关闭 OpenClash 守护程序..." >$START_LOG
kill -9 "$(ps |grep openclash_watchdog.sh |grep -v grep |awk '{print $1}')" >/dev/null 2>&1
diff --git a/package/cnsztl/luci-app-openclash/files/usr/lib/lua/luci/model/cbi/openclash/settings.lua b/package/cnsztl/luci-app-openclash/files/usr/lib/lua/luci/model/cbi/openclash/settings.lua
index a138493042..4159c879ca 100644
--- a/package/cnsztl/luci-app-openclash/files/usr/lib/lua/luci/model/cbi/openclash/settings.lua
+++ b/package/cnsztl/luci-app-openclash/files/usr/lib/lua/luci/model/cbi/openclash/settings.lua
@@ -33,7 +33,8 @@ o:value("linux-mips-hardfloat")
o:value("linux-mips-softfloat")
o:value("linux-mips64")
o:value("linux-mips64le")
-o:value("linux-mipsle")
+o:value("linux-mipsle-softfloat")
+o:value("linux-mipsle-hardfloat")
o:value("0", translate("Not Set"))
o.default=0
diff --git a/package/cnsztl/luci-app-openclash/files/usr/lib/lua/luci/view/openclash/update.htm b/package/cnsztl/luci-app-openclash/files/usr/lib/lua/luci/view/openclash/update.htm
index 33300b856d..059c8e1c1e 100644
--- a/package/cnsztl/luci-app-openclash/files/usr/lib/lua/luci/view/openclash/update.htm
+++ b/package/cnsztl/luci-app-openclash/files/usr/lib/lua/luci/view/openclash/update.htm
@@ -2,7 +2,7 @@