]> git.ipfire.org Git - people/ms/u-boot.git/blame - cmd/fitupd.c
Remove CONFIG_SYS_BOOTCOUNT_SINGLEWORD
[people/ms/u-boot.git] / cmd / fitupd.c
CommitLineData
1aaab00d
WD
1/*
2 * (C) Copyright 2011
3 * Andreas Pretzsch, carpe noctem engineering, apr@cn-eng.de
4 *
5 * SPDX-License-Identifier: GPL-2.0+
7130a579
AP
6 */
7
8#include <common.h>
9#include <command.h>
ea5427e2 10#include <net.h>
7130a579
AP
11
12#if !defined(CONFIG_UPDATE_TFTP)
13#error "CONFIG_UPDATE_TFTP required"
14#endif
15
7130a579
AP
16static int do_fitupd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
17{
18 ulong addr = 0UL;
19
20 if (argc > 2)
4c12eeb8 21 return CMD_RET_USAGE;
7130a579
AP
22
23 if (argc == 2)
24 addr = simple_strtoul(argv[1], NULL, 16);
25
c7ff5528 26 return update_tftp(addr, NULL, NULL);
7130a579
AP
27}
28
29U_BOOT_CMD(fitupd, 2, 0, do_fitupd,
30 "update from FIT image",
31 "[addr]\n"
32 "\t- run update from FIT image at addr\n"
33 "\t or from tftp 'updatefile'"
34);