support fw 4.3.19

This commit is contained in:
nestire 2024-09-23 11:48:53 +02:00
parent c31b0b1779
commit bc67b8107c
No known key found for this signature in database

View File

@ -44,7 +44,7 @@ define Package/blue-merle/preinst
if [ -f "/tmp/sysinfo/model" ] && [ -f "/etc/glversion" ]; then
echo "You have a `cat /tmp/sysinfo/model`, running firmware version `cat /etc/glversion`."
fi
echo "blue-merle has only been tested with GL-E750 Mudi Versions up to 4.3.17"
echo "blue-merle has only been tested with GL-E750 Mudi Versions up to 4.3.19"
echo "The device or firmware version you are using have not been verified to work with blue-merle."
echo -n "Would you like to continue on your own risk? (y/N): "
read answer
@ -63,20 +63,7 @@ define Package/blue-merle/preinst
if grep -q "GL.iNet GL-E750" /proc/cpuinfo; then
GL_VERSION=$$(cat /etc/glversion)
case $$GL_VERSION in
4.3.8)
echo Version $$GL_VERSION is supported but includes known vulnerabilities please update to latest version
exit 0
;;
4.3.9)
echo Version $$GL_VERSION is supported but includes known vulnerabilities please update to latest version
exit 0
;;
4.3.12)
echo Version $$GL_VERSION is supported but includes known vulnerabilities please update to latest version
exit 0
;;
4.3.17)
4.3.19)
echo Version $$GL_VERSION is supported
exit 0
;;