lidl-gateway-freedom
lidl-gateway-freedom copied to clipboard
Need TFTP Guide
How can I do this operation (and similar operation with TFTP):
- Finally we TFTP'd the newroot.bin file to the device and used the bootloader command FLW to write it to flash.
Give please a step-by-step manual for use TFTP to write images to device
I think this and this will help. But yes, documentation needs to be updated.
What I did is:
- install
tftpon my ubuntu, e.g.sudo apt install tftp - Then I need to set IP address according to my network as it is written here. I will use
192.168.0.6 - Now connect ethernet cable to the port and diode will turn on. If you try to ping configured IP addess, you will not see any device, but it is there.
- Use
tftpto connect to device, change to octet mode and transfer image:
tftp 192.168.0.6
tftp> status
Connected to 192.168.0.6.
Mode: netascii Verbose: off Tracing: off
Rexmt-interval: 5 seconds, Max-timeout: 25 seconds
tftp> mode binary
tftp> status
Connected to 192.168.0.6.
Mode: octet Verbose: off Tracing: off
Rexmt-interval: 5 seconds, Max-timeout: 25 seconds
tftp> put newroot.bin
Sent 921602 bytes in 3.9 seconds
tftp> quit
- Now back to Serial console:
**TFTP Client Upload, File Name: newroot.bin
-
**TFTP Client Upload File Size = 000E1002 Bytes at 80500000
Success!
- You need to write it, in my case Size was different from what was in forum so I will use it (actually it is mentioned on a forum below):
FLW 200000 80500000 000E1002
- Now you are free to reboot now!