summaryrefslogtreecommitdiffstats
path: root/commands
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* editor: Do not use ansi code for screen scrolling by default.sascha2007-10-161-16/+37
| | | | Add an aliases 'sedit' which does this.
* Merge octopus:/home/git/projects/u-boot-v2sascha2007-10-168-15/+36
|\
| * various small typos fixedJuergen Beisert2007-10-168-15/+36
| |
* | mem.c: allow memcpy and memcmp to handle files.sascha2007-10-161-99/+198
| |
* | fix error path in cp command.sascha2007-10-161-4/+9
|/
* fix area parsing for erase/protect, add error parsingSascha Hauer2007-10-092-4/+13
|
* tristate commands to compile as modulesSascha Hauer2007-10-071-32/+32
|
* export symbolsSascha Hauer2007-10-071-0/+3
|
* edit: add 8 as backspace codeSascha Hauer2007-10-041-0/+1
|
* timeout command: Use do {} while; insteal of while {}; to allow interruptSascha Hauer2007-10-041-2/+2
| | | | with timeout = 0.
* change semantics of tftpboot command:Sascha Hauer2007-10-041-22/+25
| | | | | | Change name to tftp and allow to only specify a remote filename. Localfilename, if given, has to be specified with the second argument, not the first one.
* add argument checking for edit.cSascha Hauer2007-10-041-0/+5
|
* Use safe_strncpy() instead of copy_filename(). The shell has already removedSascha Hauer2007-09-281-1/+2
| | | | quotes, so we don't need this functionality from copy_filename()
* remove i2c from kconfigSascha Hauer2007-09-281-11/+0
|
* remove mii.cSascha Hauer2007-09-283-607/+0
|
* declare lots of functions staticSascha Hauer2007-09-2817-33/+30
|
* pass file size from read_fileSascha Hauer2007-09-271-1/+1
|
* use xrealloc instead of reallocSascha Hauer2007-09-271-1/+1
|
* learn to reallocSascha Hauer2007-09-271-2/+3
|
* fix usage of normalise_pathSascha Hauer2007-09-271-9/+12
|
* activate memcmp and memcpySascha Hauer2007-09-271-139/+86
|
* reactivate mtestSascha Hauer2007-09-272-67/+57
|
* Reimplement environment. Now we only have one crc for the whole image.Sascha Hauer2007-09-271-120/+101
|
* implement mkdir -p #2Sascha Hauer2007-09-271-6/+24
|
* print_size() -> size_human_readable()Sascha Hauer2007-09-261-6/+8
| | | | return a pointer to a human readable string rather than printingit directly
* add directory handling for environmentSascha Hauer2007-09-251-66/+125
|
* - change function declarations for better standard conformity:Sascha Hauer2007-09-241-1/+1
| | | | | | | int open(const char *pathname, int flags); -> int open(const char *pathname, int flags, ...); int mkdir(const char *pathname); -> int mkdir(const char *pathname, mode_t mode);
* remove u-boot command paramter flagSascha Hauer2007-09-2433-61/+61
|
* - teach hush to honour PATH variableSascha Hauer2007-09-242-5/+2
| | | | - remove common/main.c. This is now handled in the different shells.
* remove debug printfSascha Hauer2007-09-211-5/+0
|
* implement test options -f, -e and -dSascha Hauer2007-09-211-1/+40
|
* - putc is now putchar for better standard conformitySascha Hauer2007-09-212-4/+4
| | | | - make printf return int
* fix return values for some cases in envfs_load()Sascha Hauer2007-09-161-1/+5
|
* add the possibility to have a arch specific 'go' command. SomeSascha Hauer2007-09-161-19/+4
| | | | architectures need this (e.g. blackfin and i386)
* add timeout commandSascha Hauer2007-09-163-0/+120
|
* whitespace cleanupSascha Hauer2007-09-133-36/+36
|
* add Kconfig option for showing the image typeSascha Hauer2007-09-131-0/+5
|
* fix error handling in envfs_load()Sascha Hauer2007-09-131-8/+22
|
* - fix handling of images on not mappable devices in bootm.Sascha Hauer2007-09-131-8/+28
| | | | - split up image information string function into several functions