Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Need TFTP Guide #32

Open
booroondook-eng opened this issue Feb 6, 2023 · 1 comment
Open

Need TFTP Guide #32

booroondook-eng opened this issue Feb 6, 2023 · 1 comment

Comments

@booroondook-eng
Copy link

booroondook-eng commented Feb 6, 2023

How can I do this operation (and similar operation with TFTP):

  1. 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

@GAS85
Copy link

GAS85 commented Apr 1, 2024

I think this and this will help. But yes, documentation needs to be updated.

What I did is:

  1. install tftp on my ubuntu, e.g. sudo apt install tftp
  2. Then I need to set IP address according to my network as it is written here. I will use 192.168.0.6
  3. 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.
  4. Use tftp to 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
  1. Now back to Serial console:
**TFTP Client Upload, File Name: newroot.bin
-
**TFTP Client Upload File Size = 000E1002 Bytes at 80500000

Success!
  1. 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
  1. Now you are free to reboot now!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants