uboot-lantiq: Enable TFTP PUT support for backups
Backing up the current firmware from U-Boot over serial can take hours. Booting a working Linux image for backup purposes is not always an option. Using the tftpput command in U-Boot is the fastest and easiest way. tftpput will upload the contents of a memory region to the TFTP server. The IP address of the server is stored in the serverip variable. Usage: tftpput <memaddr> <length> <filename> Example for a complete flash backup of an o2 Box 6431 (VGV7510KW22): VGV7510KW22 # tftpput 0xB0000000 0x1000000 o2boxbackup.bin Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
This commit is contained in:
parent
0997185ffd
commit
3e6d303d61
1 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,7 @@ Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
|
||||||
|
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/include/configs/openwrt-lantiq-common.h
|
+++ b/include/configs/openwrt-lantiq-common.h
|
||||||
@@ -0,0 +1,39 @@
|
@@ -0,0 +1,40 @@
|
||||||
+/*
|
+/*
|
||||||
+ * Copyright (C) 2013 Luka Perkov <luka@openwrt.org>
|
+ * Copyright (C) 2013 Luka Perkov <luka@openwrt.org>
|
||||||
+ *
|
+ *
|
||||||
|
@ -21,6 +21,7 @@ Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
|
||||||
+/* Commands */
|
+/* Commands */
|
||||||
+#if defined(CONFIG_LTQ_SUPPORT_ETHERNET)
|
+#if defined(CONFIG_LTQ_SUPPORT_ETHERNET)
|
||||||
+#define CONFIG_CMD_PING
|
+#define CONFIG_CMD_PING
|
||||||
|
+#define CONFIG_CMD_TFTPPUT
|
||||||
+#endif
|
+#endif
|
||||||
+
|
+
|
||||||
+/* Compression */
|
+/* Compression */
|
||||||
|
|
Loading…
Reference in a new issue