Auteur Sujet: How to Update Frontprocessor  (Lu 5483 fois)

0 Membres et 1 Invité sur ce sujet

Hors ligne E-D-S

  • Partenaire
  • Membre Héroïque
  • ***
  • Messages: 1.521
    • e-Dream Shop
How to Update Frontprocessor
« le: 21 février 2011 à 13:29:05 »
How to Update Frontprocessor

Citer
Tested with the latest PLI-Image

Copy file avrmain.hex to your ET9000 ( /lib/firmware/ ) and overwrite the file.
Open your telnet client: Put in the following code :

/etc/init.d/fpupdate
the avrmain.hex will be written.

--------------------------------------

Another option to install the avrmain.hex:
Open your telnet client and put in the following:

#!/bin/sh
if ! [ -f /lib/firmware/avrmain.hex ]; then
exit 0
fi
if ! [ -x /usr/bin/fpupdate ]; then
exit 0
fi
/usr/bin/fpupdate /lib/firmware/avrmain.hex 10 && rm /lib/firmware/avrmain.hex

Reboot your box!

 ;)