mirror of
https://github.com/dasrecht/deye-firmware.git
synced 2025-12-11 00:05:37 +02:00
fixes in wording and adding the digest scripts
This commit is contained in:
5
0_D0002_18/check-sha-digests.sh
Normal file
5
0_D0002_18/check-sha-digests.sh
Normal file
@@ -0,0 +1,5 @@
|
||||
# loop over all *.bin.DIGEST files
|
||||
|
||||
for filename in *.bin.DIGEST; do
|
||||
shasum -a 256 -c $filename
|
||||
done
|
||||
8
0_D0002_18/create-sha-digests.sh
Normal file
8
0_D0002_18/create-sha-digests.sh
Normal file
@@ -0,0 +1,8 @@
|
||||
# bash script that runs shasum on all *.bin files in this directory
|
||||
# and creates a file called $filename.DIGEST
|
||||
|
||||
# loop over all *.bin files
|
||||
for filename in *.bin; do
|
||||
# create a file called $filename.DIGEST
|
||||
shasum -a 256 $filename > $filename.DIGEST
|
||||
done
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
This repository has been started because the Firmware prior to MW3_16U_5406_1.53 had some significant security issues - See also Thread on [Photovoltaikforum (German)](https://www.photovoltaikforum.com/thread/187077-achtung-wifi-sicherheit-der-deye-und-bosswerk-mi600-300-sowie-baugleiche-microwe/?postID=2859297) or [Article on Heise (German)](https://www.heise.de/news/Sicherheitsluecke-bei-Mikrowechselrichtern-von-Deye-Haendler-nicht-zustaendig-7483376.html)
|
||||
|
||||
Additional to that there is a pretty stead pace on firmare releases but sadly no public changelog available. As the Server was also down for a few days earlier in 2023 I've decided to start this repository to keep the firmware versions somehow online even if the server would face issues.
|
||||
Additionally to that there is a pretty steady pace on firmware releases but sadly no public changelog is available. As the Server was also down for a few days earlier in 2023 I've decided to start this repository to keep the firmware versions somehow online even if the server would face issues.
|
||||
|
||||
> I don't take any responsibility for any damage caused by this firmware. Use at your own risk.
|
||||
> It worked on my inverter, but I can't guarantee it will work on yours.
|
||||
@@ -73,7 +73,6 @@ done
|
||||
- [Solarman integration - Homeassistant](https://github.com/StephanJoubert/home_assistant_solarman)
|
||||
- And more Repositories tagged with [deye](https://github.com/topics/deye)
|
||||
|
||||
|
||||
## Call for help
|
||||
|
||||
If you have more information or insights into the firmware update process, alternative URLs or other information let me know.
|
||||
|
||||
Reference in New Issue
Block a user