aboutsummaryrefslogtreecommitdiff
path: root/common/cmd_fitupd.c
AgeCommit message (Collapse)AuthorFilesLines
2013-07-24Add GPL-2.0+ SPDX-License-Identifier to source filesWolfgang Denk1-6/+9
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
2013-06-04net: Add prototype for update_tftpSimon Glass1-2/+1
This function should be declared in net.h. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
2012-03-06Convert cmd_usage() calls in common to use a return valueSimon Glass1-1/+1
Change all files in common/ to use CMD_RET_USAGE instead of calling cmd_usage() directly. I'm not completely sure about this patch since the code since impact is small (100 byte or so on ARM) and it might need splitting into smaller patches. But for now here it is. Signed-off-by: Simon Glass <sjg@chromium.org>
2011-07-26add command fitupd to run an update from a FIT imageAndreas Pretzsch1-0/+36
Command calls update_tftp() analogous to automatic update described in doc/README.update. Usage: fitupd [addr] - run update from FIT image at addr or from tftp 'updatefile' Signed-off-by: Andreas Pretzsch <apr@cn-eng.de>