Upload Firmware: Unterschied zwischen den Versionen

Aus Gude Systems GmbH
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „If you want to insrtall the same firmware update file to multiple devices, you can use http command line tools (curl) instead of using your Internet Browser.…“)
 
Zeile 14: Zeile 14:
 
  # Rebot to apply
 
  # Rebot to apply
 
  curl "http://$2/status.json?cmd=39"
 
  curl "http://$2/status.json?cmd=39"
 +
 +
 +
= curl =
 +
https://curl.haxx.se/download.html

Version vom 12. August 2019, 16:27 Uhr

If you want to insrtall the same firmware update file to multiple devices, you can use http command line tools (curl) instead of using your Internet Browser.

./upload.sh firmware_epc8226_v1.7.0.bin 192.168.0.2
./upload.sh firmware_epc8226_v1.7.0.bin 192.168.0.3
./upload.sh firmware_epc8226_v1.7.0.bin 192.168.0.4


upload.sh

#!/bin/bash

# Upload FirmwareFile
curl --verbose -F file=@./$1 "http://$2/fwupdate.txt?type=0"

# Rebot to apply
curl "http://$2/status.json?cmd=39"


curl

https://curl.haxx.se/download.html