]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cmd: drop fitupd command
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Wed, 17 Jun 2020 08:53:29 +0000 (10:53 +0200)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Thu, 16 Jul 2020 10:37:01 +0000 (12:37 +0200)
The `fitupd' command is not used by any board. The `dfu tftp' command
provides the same capabilities.

So let's drop the `fitupd' command.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
cmd/Kconfig
cmd/Makefile
cmd/fitupd.c [deleted file]
doc/README.dfutftp
doc/README.update

index 846c905c9cc5598b68736b80b649c82457ace0d9..202c7cc5861b054f2ddfe0d0b7a571503d6725c7 100644 (file)
@@ -489,13 +489,6 @@ config CMD_SPL_WRITE_SIZE
          flash used by Falcon-mode boot. See the documentation until CMD_SPL
          for detail.
 
-config CMD_FITUPD
-       bool "fitImage update command"
-       depends on UPDATE_TFTP
-       help
-         Implements the 'fitupd' command, which allows to automatically
-         store software updates present on a TFTP server in NOR Flash
-
 config CMD_THOR_DOWNLOAD
        bool "thor - TIZEN 'thor' download"
        select DFU
index dc412d1106dfad57843bff0ba024260197a2d10f..7952138dc200bc31faeb3309be87acbce2135f11 100644 (file)
@@ -62,7 +62,6 @@ obj-$(CONFIG_CMD_EXT4) += ext4.o
 obj-$(CONFIG_CMD_EXT2) += ext2.o
 obj-$(CONFIG_CMD_FAT) += fat.o
 obj-$(CONFIG_CMD_FDT) += fdt.o
-obj-$(CONFIG_CMD_FITUPD) += fitupd.o
 obj-$(CONFIG_CMD_FLASH) += flash.o
 obj-$(CONFIG_CMD_FPGA) += fpga.o
 obj-$(CONFIG_CMD_FPGAD) += fpgad.o
diff --git a/cmd/fitupd.c b/cmd/fitupd.c
deleted file mode 100644 (file)
index 0f490c5..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- * (C) Copyright 2011
- * Andreas Pretzsch, carpe noctem engineering, apr@cn-eng.de
- */
-
-#include <common.h>
-#include <command.h>
-#include <net.h>
-
-static int do_fitupd(struct cmd_tbl *cmdtp, int flag, int argc,
-                    char *const argv[])
-{
-       ulong addr = 0UL;
-
-       if (argc > 2)
-               return CMD_RET_USAGE;
-
-       if (argc == 2)
-               addr = simple_strtoul(argv[1], NULL, 16);
-
-       return update_tftp(addr, NULL, NULL);
-}
-
-U_BOOT_CMD(fitupd, 2, 0, do_fitupd,
-       "update from FIT image",
-       "[addr]\n"
-       "\t- run update from FIT image at addr\n"
-       "\t  or from tftp 'updatefile'"
-);
index 127d2d6abcc706cce5f234902040c6893171dd76..a3341bbb614206b23b259fcb9e1c0ea587b6ee2a 100644 (file)
@@ -42,8 +42,6 @@ for USB based DFU (CONFIG_DFU_*) and DFU TFTP update
 The "dfu" command has been extended to support transfer via TFTP - one
 needs to type for example "dfu tftp 0 mmc 0"
 
-This feature does not depend on "fitupd" command enabled.
-
 As of this writing (SHA1:8d77576371381ade83de475bb639949b44941e8c v2015.10-rc2)
 the update.c code is not enabled (CONFIG_UPDATE_TFTP) by any board in the
 contemporary u-boot tree.
index d37f2c4d4a575bc473e5a608d6c01bb2b54c35d0..bf4379279e20fb35a8254516eefdf9ce96d52a3d 100644 (file)
@@ -51,11 +51,6 @@ the mkimage tool. dtc tool with support for binary includes, e.g. in version
 to be prepared. Refer to the doc/uImage.FIT/ directory for more details on FIT
 images.
 
-This mechanism can be also triggered by the command "fitupd".
-If an optional, non-zero address is provided as argument, the TFTP transfer
-is skipped and the image at this address is used.
-The fitupd command is enabled by CONFIG_CMD_FITUPD.
-
 
 Example .its files
 ------------------