summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorMarek Vasut <[email protected]>2026-01-29 01:44:28 +0100
committerMarek Vasut <[email protected]>2026-02-06 20:23:12 +0100
commit0cd81619bb25b0bcb768b9e30a603d37170476e6 (patch)
tree5a3408894717bdb25d28b05f466781676189a104 /configs
parenta54d613baf742a95b6deb7a016ef6262737d1918 (diff)
arm: renesas: Enable wget command and TCP on all R-Car systems
Enable the 'wget' command and TCP protocol support on all Renesas R-Car systems. This allows users to download content from local HTTP server, which may sometimes be more accessible than TFTP server. Enable TCP SACK support to improve download performance. The usage is similar to the TFTP command. To download file from server http://192.ser.ver.ip/file/path/on/local/server , invoke wget as follows: " => wget $loadaddr 192.ser.ver.ip:/file/path/on/local/server " In case the HTTP server listens on port other than default port 80, set the 'httpdstp' environment variable to download file from server http://192.ser.ver.ip:8088/file/path/on/local/server " => env set httpdstp 8088 => wget $loadaddr 192.ser.ver.ip:/file/path/on/local/server " Signed-off-by: Marek Vasut <[email protected]>
Diffstat (limited to 'configs')
-rw-r--r--configs/renesas_rcar.config3
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/renesas_rcar.config b/configs/renesas_rcar.config
index d9a99e1f428..b3107d79b0e 100644
--- a/configs/renesas_rcar.config
+++ b/configs/renesas_rcar.config
@@ -10,6 +10,7 @@ CONFIG_CMD_GPIO=y
CONFIG_CMD_I2C=y
CONFIG_CMD_MII=y
CONFIG_CMD_PING=y
+CONFIG_CMD_WGET=y
CONFIG_DM_GPIO=y
CONFIG_DM_I2C=y
CONFIG_DM_REGULATOR=y
@@ -22,8 +23,10 @@ CONFIG_FIT=y
CONFIG_HUSH_PARSER=y
CONFIG_MTD=y
CONFIG_OF_CONTROL=y
+CONFIG_PROT_TCP_SACK=y
CONFIG_RCAR_GPIO=y
CONFIG_SCIF_CONSOLE=y
CONFIG_SERIAL_RX_BUFFER=y
CONFIG_SPI=y
CONFIG_VERSION_VARIABLE=y
+CONFIG_WGET=y