install.sh: openwrt-18.06 is no longer supported

Signed-off-by: sbwml <admin@cooluc.com>
This commit is contained in:
sbwml 2024-08-16 18:35:57 +08:00
parent 83b3707716
commit 6f37807cf5
2 changed files with 10 additions and 7 deletions

View File

@ -24,10 +24,10 @@
- Openwrt official SnapShots
* requires golang 1.20.x or latest version (openwrt-21.02 & older version needs)
* requires golang 1.22.x or latest version
```shell
rm -rf feeds/packages/lang/golang
git clone https://github.com/sbwml/packages_lang_golang -b 20.x feeds/packages/lang/golang
git clone https://github.com/sbwml/packages_lang_golang -b 23.x feeds/packages/lang/golang
```
```shell

View File

@ -13,6 +13,13 @@ else
exit 1
fi
# Check
if [ ! -d "/usr/share/luci/menu.d" ]; then
echo -e "${RED_COLOR}OpenWrt LuCI version is not supports.${RES}"
echo -e "${RED_COLOR}Minimum OpenWrt Version: openwrt-21.02 or latest${RES}"
exit 1
fi
# TMP
TMPDIR=$(mktemp -d) || exit 1
@ -22,7 +29,7 @@ country_code=$(echo $ip_info | sed -r 's/.*country_code":"([^"]*).*/\1/')
if [ $country_code = "CN" ]; then
google_status=$(curl -I -4 -m 3 -o /dev/null -s -w %{http_code} http://www.google.com/generate_204)
if [ ! $google_status = "204" ];then
mirror="https://hub.gitmirror.com/"
mirror="https://mirror.ghproxy.com/"
fi
fi
@ -40,10 +47,6 @@ CHECK() (
if [[ ! $verif ]]; then
echo -e "${RED_COLOR}Error! The current \"$platform\" platform is not currently supported.${RES}"
exit 1;
else
echo -e "${GREEN_COLOR}Update opkg sources ...${RES}"
opkg update
opkg install luci-compat
fi
)