From 9f3ca4d1203ad2f1deace17f3656ddd0faead31f Mon Sep 17 00:00:00 2001 From: Lee Lup Yuen Date: Tue, 11 Jul 2023 18:23:38 +0800 Subject: [PATCH] Boot OK from TFTP yay! --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 7ef49a9..292757c 100644 --- a/README.md +++ b/README.md @@ -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...