]> git.dujemihanovic.xyz Git - u-boot.git/commit
net: Add wget application
authorYing-Chun Liu (PaulLiu) <paul.liu@linaro.org>
Tue, 8 Nov 2022 06:17:29 +0000 (14:17 +0800)
committerTom Rini <trini@konsulko.com>
Mon, 28 Nov 2022 18:06:39 +0000 (13:06 -0500)
commitcfbae48219fd81f6c9e1a7b5ee160cdd3005f958
treecf1e9db0754ad81314df553a1c69c9e1edeef482
parenta3bf193bf4ea8703bcf96b1a34713fb2ae87aa39
net: Add wget application

This commit adds a simple wget command that can download files
from http server.

The command syntax is
wget ${loadaddr} <path of the file from server>

Signed-off-by: Duncan Hare <DuncanCHare@yahoo.com>
Signed-off-by: Ying-Chun Liu (PaulLiu) <paul.liu@linaro.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Cc: Christian Gmeiner <christian.gmeiner@gmail.com>
Cc: Joe Hershberger <joe.hershberger@ni.com>
Cc: Michal Simek <michal.simek@xilinx.com>
Cc: Ramon Fried <rfried.dev@gmail.com>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
cmd/Kconfig
cmd/net.c
include/net.h
include/net/wget.h [new file with mode: 0644]
net/Makefile
net/net.c
net/wget.c [new file with mode: 0644]