Skip to content

Commit

Permalink
Merge pull request #41 from nestire/main
Browse files Browse the repository at this point in the history
bump for version 4.3.17 of mudi firmware
  • Loading branch information
muelli authored Jul 1, 2024
2 parents 1aa741f + c31b0b1 commit 53d8f3a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
17 changes: 13 additions & 4 deletions Makefile
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]>
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The *blue-merle* software package enhances anonymity and reduces forensic tracea

## Compatibility

**This README covers the v2.0 release**, which has been verified to work with GL-E750 Mudi version 4.3.8.
**This README covers the v2.0 release**, which has been verified to work with GL-E750 Mudi version 4.3.8 - 4.3.12 .
Refer back to the [v1.0 README file](https://github.com/srlabs/blue-merle/tree/cb4d73731fe432e0f101284307101c250ca4b845) for information about the first release, which works on older firmware releases.

A MCU version >= 1.0.7 is required. The MCU may be updated through the *blue-merle* package installer or [manually](https://github.com/gl-inet/GL-E750-MCU-instruction). SRLabs cannot guarantee that the project assets within this Git repository will be compatible with future firmware updates.
Expand Down

0 comments on commit 53d8f3a

Please sign in to comment.