-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from nestire/main
bump for version 4.3.17 of mudi firmware
- Loading branch information
Showing
2 changed files
with
14 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=blue-merle | ||
PKG_VERSION:=2.0.1 | ||
PKG_VERSION:=2.0.3 | ||
PKG_RELEASE:=$(AUTORELEASE) | ||
|
||
PKG_MAINTAINER:=Matthias <[email protected]> | ||
|
@@ -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 4.3.8. and 4.3.9" | ||
echo "blue-merle has only been tested with GL-E750 Mudi Versions up to 4.3.17" | ||
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 | ||
|
@@ -64,13 +64,22 @@ define Package/blue-merle/preinst | |
GL_VERSION=$$(cat /etc/glversion) | ||
case $$GL_VERSION in | ||
4.3.8) | ||
echo Version $$GL_VERSION is supported | ||
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 | ||
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) | ||
echo Version $$GL_VERSION is supported | ||
exit 0 | ||
;; | ||
4.*) | ||
echo Version $$GL_VERSION is *probably* supported | ||
ABORT_GLVERSION | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters