summaryrefslogtreecommitdiffstats
path: root/commands
Commit message (Collapse)AuthorAgeFilesLines
* move several commands into extra filesSascha Hauer2008-08-138-4/+290
| | | | | | move false, true, help, insmod, lsmod, version into extra files Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* lseek: return -1 for errors and check for that return valueSascha Hauer2008-08-011-5/+5
| | | | | | We cannot check for < 0 in lseek, otherwise we get problems with files > 0x7fffffff Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* - introduce ioctl callSascha Hauer2008-06-061-0/+12
| | | | - pass open/close/lseek through to drivers
* [NAND] continue to make it work. Now works partly on at91sam9260Sascha Hauer2008-06-063-15/+23
|
* add basic at91sam9260 support. Currently only second stageSascha Hauer2008-06-061-0/+205
| | | | | | bootloader is supported: - No SDRAM initialisation - No UART init / baudrate change
* 008-fixloadbNishanth Menon2008-06-054-302/+1218
| | | | | | | | | [Patch 08/17] U-Boot-V2:Commands Unbreak loadb support This patch provides support for loadb and loady and enables the broken feature Signed-off-by: Nishanth Menon<x0nishan@ti.com>
* [memory layout]: streamline memory layoutSascha Hauer2008-06-041-1/+2
| | | | | | | Memory layout can now be specified via kconfig options. Two possibilities exist: default layout means the layout is stack / malloc heap / U-Boot. The user can also specify fixed addresses for each TEXT_BASE / stack / malloc heap.
* Merge branch 'master' of git://www.denx.de/git/u-boot-v2Sascha Hauer2008-06-0226-55/+70
|\
| * [net]: remove CONFIG_BOOTP_MASKSascha Hauer2008-04-071-3/+3
| |
| * Subject: [PATCH] [general] Fixed constant strings in data section issueSascha Hauer2008-04-0426-52/+65
| | | | | | | | | | | | | | | | 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>
| * md command: Close filedescriptor after useSascha Hauer2008-03-141-0/+2
| |
* | netboot commands: When downloading a file and no local filename is given,Sascha Hauer2008-03-311-1/+2
|/ | | | just use the filename as resulting file, not the whole path.
* add ls -c and -lSascha Hauer2008-03-111-3/+21
|
* close net_store_fd after usage. Man there are bugs to find...Sascha Hauer2008-03-101-6/+6
|
* memory_display() used to show the ascii output on theSascha Hauer2008-03-011-6/+9
| | | | last line not exactly under the other lines. fix it.
* - Add functions to register image handlers for booting uImagesSascha Hauer2008-02-201-361/+96
|
* [general] Added more outputs to partition.cCarsten Schlote2008-02-191-13/+25
| | | | | | Added more outputs to partition code. Signed-off-by: Carsten Schlote <schlote@vahanus.net>
* remove leftover Makefile entriesMarc Kleine-Budde2008-01-241-4/+0
| | | | | | | | This patch removed leftover Makefile entries from commit "d59c600c656d08410ea862c582fbd77432c3ca47". They should have been reverted, but somehow survived Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* Fix typo in commands/Makefile to allow inclusion of mem write commandsEnrik Berkhan2008-01-231-1/+1
| | | | Signed-Off-By: Enrik Berkhan <Enrik.Berkhan@ge.com>
* Avoid memtest at scratch addressEnrik Berkhan2008-01-231-1/+4
| | | | | | When the tested address equals the scratch location, memtest will fail. Signed-Off-By: Enrik Berkhan <Enrik.Berkhan@ge.com>
* [cat] use define for buffer size not hardcoded valueMarc Kleine-Budde2007-11-281-2/+4
| | | | | | | With this patch a define is used for the buffer size not a hardcoded value in two places in the node. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* Revert "separating memory commands"Marc Kleine-Budde2007-11-277-786/+560
| | | | | | | | | | | | This reverts commit d59c600c656d08410ea862c582fbd77432c3ca47. Conflicts: commands/Makefile common/Kconfig common/Makefile Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* flinfo is not there any more, remove reference in kconfigRobert Schwebel2007-11-271-1/+1
| | | | | | | The flinfo command has been removed because it's functionality is now integrated into the driver model. Fix the kconfig entry accordingly. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
* dynamically added partition: check against FIXED partitionsMarc Kleine-Budde2007-11-271-6/+36
| | | | | | | | The dynamic partition adding is improved with this patch. When adding dynamic partitions they are checked against the existing FIXED ones to ensure that they match. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* adding copy docuJuergen Beisert2007-11-121-3/+7
| | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* separating environment commands, part 2Juergen Beisert2007-11-125-386/+200
| | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* separating environment commands, part 1Juergen Beisert2007-11-125-0/+236
| | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* separating memory commandsJuergen Beisert2007-11-127-560/+790
| | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* Merge branch 'ipe337'Marc Kleine-Budde2007-11-121-1/+1
|\
| * use 10 digits for filesize in lsMarc Kleine-Budde2007-11-121-1/+1
| | | | | | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
| * use unsigned for filesize in lsMarc Kleine-Budde2007-11-121-1/+1
| | | | | | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* | commands/bootm.c:872:4: warning: no newline at end of fileMarc Kleine-Budde2007-11-121-1/+1
|/ | | | | | added newline at end of commands/bootm.c Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* Merge branch 'docu'Juergen Beisert2007-11-0910-22/+159
|\
| * various doc addedJuergen Beisert2007-11-093-3/+80
| | | | | | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
| * adding various dokuJuergen Beisert2007-11-087-22/+65
| |
| * various docu addedJuergen Beisert2007-11-051-0/+17
| |\
| | * saving added docuJuergen Beisert2007-11-051-0/+17
| | |
* | | using a consistent ipaddr parameter all over the placeJuergen Beisert2007-11-081-1/+1
|/ / | | | | | | Signed-off-by: Juergen Beisert <jbe@octopus.labnet.pengutronix.de>
* | integrating sha's changes into jbe's branchJuergen Beisert2007-11-051-1/+1
| |
* | Replace all occurences of UBoot with U-BootSascha Hauer2007-10-241-1/+1
|/ | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* adding new docJuergen Beisert2007-10-191-0/+34
|
* doc added and some reorganisedJuergen Beisert2007-10-194-3/+86
|
* Merge octopus:/home/git/projects/u-boot-v2sascha2007-10-191-0/+4
|\
| * Merge branch 'master' of jbe@octopus:/home/git/projects/u-boot-v2Juergen Beisert2007-10-191-36/+48
| |\
| * | debug support addedJuergen Beisert2007-10-191-0/+4
| | |
* | | move readline command to a file of its ownsascha2007-10-193-1/+65
| |/ |/|
* | Fix documentation for addpart/delpart/devinfo. These commandssascha2007-10-191-10/+7
| | | | | | | | now take a device file, not a device id.
* | - Implement tree structure for devicessascha2007-10-191-26/+41
|/ | | | | | | - Use device tree structure to implement partitions - Let devinfo print a nice tree - Introduce 'fixed' partitions which are not removable - Fix mount: It was not possible to mount on a relative path.
* adding some useful error messagesJuergen Beisert2007-10-181-4/+6
|
* cp command: Allow to copy multiple filessascha2007-10-171-22/+63
|