summaryrefslogtreecommitdiffstats
path: root/commands/cp.c
Commit message (Collapse)AuthorAgeFilesLines
* commands: remove struct command pointer from commandsSascha Hauer2012-02-271-2/+1
| | | | | | This is unused in all commands and thus can be removed. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* cp: fix memory leakSascha Hauer2012-02-271-1/+1
| | | | | | | dst is an allocated string, we have to free it also when copy_file fails. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* commands/cp: add verbose mode which displays progress barHubert Feurstein2011-11-221-6/+20
| | | | | Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* cp command: handle directories as last argumentSascha Hauer2011-04-121-1/+2
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* doc: unify documentation for 'cp'Robert Schwebel2010-11-011-16/+14
| | | | Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
* cp: fix help textBaruch Siach2010-08-111-2/+0
| | | | | | | Copy to target directory is supported since commit b36fca0c, circa 2007. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* remove typedef cmd_tbl_t and replace it with struct commandSascha Hauer2010-02-011-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* rename U-Boot-v2 project to bareboxSascha Hauer2009-12-151-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | This has been done with the following script: find -path ./.git -prune -o -type f -print0 | xargs -0 -r sed -i \ -e 's/u2boot/barebox/g' \ -e 's/U2Boot/barebox/g' \ -e 's/U-boot V2/barebox/g' \ -e 's/u-boot v2/barebox/g' \ -e 's/U-Boot V2/barebox/g' \ -e 's/U-Boot-v2/barebox/g' \ -e 's/U_BOOT/BAREBOX/g' \ -e 's/UBOOT/BAREBOX/g' \ -e 's/uboot/barebox/g' \ -e 's/u-boot/barebox/g' \ -e 's/u_boot/barebox/g' \ -e 's/U-Boot/barebox/g' \ -e 's/U-boot/barebox/g' \ -e 's/U-BOOT/barebox/g' find -path ./.git -prune -o \( -name "*u-boot*" -o -name "*uboot*" -o -name "*u_boot*" \) -print0 | \ xargs -0 -r rename 's/u[-_]?boot/barebox/' It needs some manual fixup following in the next patch Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* commands: remove maxargsSascha Hauer2009-10-191-1/+0
| | | | | | | No need to check for maximum argument counts. The commands are safe to be called with more arguments, so lets safe some bytes. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* commands: return COMMAND_ERROR_USAGESascha Hauer2009-10-191-4/+2
| | | | | | | instead of calling u_boot_cmd_usage in each command to safe space. Signed-off-by: Sascha Hauer <sha@pengutronix.de>
* make copy_file() globally availableSascha Hauer2009-09-251-57/+2
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* cp: check return value of read()Sascha Hauer2008-09-021-1/+1
| | | | | | ...and not if the function read is non NULL. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Subject: [PATCH] [general] Fixed constant strings in data section issueSascha Hauer2008-04-041-1/+1
| | | | | | | | For practical reasons I changed all string literals assumed to be constant to reside in .rodata subsection at end of .text section. Signed-off-by: Carsten Schlote <schlote@vahanus.net> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* adding copy docuJuergen Beisert2007-11-121-3/+7
| | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* adding various dokuJuergen Beisert2007-11-081-1/+1
|
* doc added and some reorganisedJuergen Beisert2007-10-191-0/+21
|
* cp command: Allow to copy multiple filessascha2007-10-171-22/+63
|
* fix error path in cp command.sascha2007-10-161-4/+9
|
* declare lots of functions staticSascha Hauer2007-09-281-1/+1
|
* remove u-boot command paramter flagSascha Hauer2007-09-241-1/+1
|
* svn_rev_706Sascha Hauer2007-07-051-0/+22
| | | | add file headers
* svn_rev_653Sascha Hauer2007-07-051-0/+68
restructure tree, add reginfo command