Boot OK from TFTP yay!

This commit is contained in:
Lee Lup Yuen 2023-07-11 18:23:38 +08:00
parent b1200cbe40
commit 9f3ca4d120

View file

@ -1829,6 +1829,8 @@ curl -v tftp://127.0.0.1/a.txt
curl -v tftp://192.168.x.x/a.txt
```
(`localhost` won't work because of IPv6, I think)
We should see...
```text
@ -1860,6 +1862,17 @@ $ curl -v tftp://192.168.x.x/a.txt
* set timeouts for state 0; Total 300000, retry 6 maxtry 50
```
In the olden days we would actually do this...
```text
$ tftp 127.0.0.1
tftp> get a.txt
Received 8 bytes in 0.0 seconds
tftp> quit
```
Just like FTP!
## Copy NuttX Image to TFTP Server
Next we copy the NuttX Image and Device Tree to the TFTP Folder...