[PATCH v13 0/2] add TCP and HTTP for downloading images

Ying-Chun Liu grandpaul at gmail.com
Wed Mar 16 07:02:11 CET 2022


From: "Ying-Chun Liu (PaulLiu)" <paul.liu at linaro.org>

This patch is a refresh from previous patches made by
Duncan Hare <DuncanCHare at yahoo.com>. I've contacted him and
continue to work on this patch.

This patch introduce a TCP stack with SACK. And a simple wget command
to download images from http server.

v13: Fix some issues which is reviewed by Christian

Ying-Chun Liu (PaulLiu) (2):
  net: Add TCP protocol
  net: Add wget application

 cmd/Kconfig        |   7 +
 cmd/net.c          |  13 +
 include/net.h      |  13 +-
 include/net/tcp.h  | 222 ++++++++++++++
 include/net/wget.h |  19 ++
 net/Kconfig        |   6 +
 net/Makefile       |   2 +
 net/net.c          |  36 +++
 net/tcp.c          | 698 +++++++++++++++++++++++++++++++++++++++++++++
 net/wget.c         | 436 ++++++++++++++++++++++++++++
 10 files changed, 1450 insertions(+), 2 deletions(-)
 create mode 100644 include/net/tcp.h
 create mode 100644 include/net/wget.h
 create mode 100644 net/tcp.c
 create mode 100644 net/wget.c

-- 
2.35.1



More information about the U-Boot mailing list