summaryrefslogtreecommitdiffstats
path: root/common
Commit message (Collapse)AuthorAgeFilesLines
* svn_rev_533Sascha Hauer2007-07-051-2/+4
| | | | | | Comment out malloc_trim(). This functions gives back memory to the system via negative calls to sbrk(). This is completely useless in U-Boot since noone else could make use of this memory.
* svn_rev_532Sascha Hauer2007-07-051-4/+12
| | | | | | | | | - Do not zero memory in mem_malloc_init because it takes a long time with big memory. Instead zero it when we actually need the memory. - Add sbrk_no_zero() function to allocate memory without zeroing it. This is usefull for scratch mem devices which occupy large chunks of memory
* svn_rev_525Sascha Hauer2007-07-052-1/+21
| | | | make default behaviour of consoles configurable
* svn_rev_523Sascha Hauer2007-07-051-0/+152
|
* svn_rev_521Sascha Hauer2007-07-051-1/+1
|
* svn_rev_511Sascha Hauer2007-07-052-0/+15
|
* svn_rev_503Sascha Hauer2007-07-051-1/+1
|
* svn_rev_502Sascha Hauer2007-07-054-21/+46
| | | | complete multiple console support
* svn_rev_500Sascha Hauer2007-07-052-2/+1
|
* svn_rev_499Sascha Hauer2007-07-051-2/+2
| | | | fix compiler warning
* svn_rev_498Sascha Hauer2007-07-051-8/+8
| | | | fix compiler warnings
* svn_rev_497Sascha Hauer2007-07-051-2/+2
|
* svn_rev_487Sascha Hauer2007-07-051-5/+6
|
* svn_rev_481Sascha Hauer2007-07-058-18/+20
| | | | make more char * const, fix compiler warnings
* svn_rev_473Sascha Hauer2007-07-051-2/+8
| | | | add help text
* svn_rev_463Sascha Hauer2007-07-051-2/+2
| | | | make ppc compile again
* svn_rev_462Sascha Hauer2007-07-0514-183/+333
| | | | | | | - Add help texts for many commands. - Let the linker sort the command table. - Add support for multiple argmuments in several commands (mkdir, rmdir, rm, cat)
* svn_rev_459Sascha Hauer2007-07-051-1/+1
|
* svn_rev_458Sascha Hauer2007-07-051-2/+1
|
* svn_rev_457Sascha Hauer2007-07-051-0/+3
|
* svn_rev_456Sascha Hauer2007-07-051-5/+1
| | | | use xzalloc
* svn_rev_454Sascha Hauer2007-07-051-19/+40
|
* svn_rev_445Sascha Hauer2007-07-051-2/+2
|
* svn_rev_443Sascha Hauer2007-07-051-1/+1
|
* svn_rev_441Sascha Hauer2007-07-051-6/+16
| | | | add errno_str()
* svn_rev_439Sascha Hauer2007-07-051-1/+4
| | | | fix file reading
* svn_rev_435Sascha Hauer2007-07-052-1/+1
| | | | rename
* svn_rev_434Sascha Hauer2007-07-051-17/+45
|
* svn_rev_433Sascha Hauer2007-07-051-2/+2
|
* svn_rev_430Sascha Hauer2007-07-051-16/+12
|
* svn_rev_427Sascha Hauer2007-07-051-58/+5
|
* svn_rev_424Sascha Hauer2007-07-051-1/+0
|
* svn_rev_420Sascha Hauer2007-07-0514-268/+303
| | | | | | | | | | | - do more POSIX: - use DIR instead of struct dirent - use (struct dirent)->d_name instead of (struct dirent)->name - switch to a new layout for U_BOOT_CMD: - use C99 initializers to be able to add more fields to the command struct - add aliases for commands (needed mainly for help -> ? and test -> [ - This is not done for all commands yet, but the compiler will tell you ;)
* svn_rev_419Sascha Hauer2007-07-051-38/+98
| | | | add ifdef for host compilation
* svn_rev_418Sascha Hauer2007-07-051-13/+34
| | | | do not use getopt
* svn_rev_413Sascha Hauer2007-07-051-5/+5
|
* svn_rev_412Sascha Hauer2007-07-051-15/+3
| | | | remove repeatable commands
* svn_rev_404Sascha Hauer2007-07-051-1/+4
| | | | re-add timeout checking in sleep command
* svn_rev_400Sascha Hauer2007-07-051-410/+0
| | | | bring some light into the forest
* svn_rev_398Sascha Hauer2007-07-051-37/+4
| | | | remove disable_ctrlc(), had_ctrlc() and clear_ctrlc()
* svn_rev_397Sascha Hauer2007-07-051-37/+23
| | | | add -f option for file selection in mm/mw
* svn_rev_395Sascha Hauer2007-07-051-6/+46
| | | | make more functions static, implement cd/pwd commands
* svn_rev_393Sascha Hauer2007-07-051-2/+2
|
* svn_rev_392Sascha Hauer2007-07-051-204/+35
| | | | | | | - remove u_boot_hush_start() - remove u_boot_hush_reloc() - remove repeatable commands - do not use local variable handling anymore
* svn_rev_386Sascha Hauer2007-07-051-177/+41
| | | | remove old saveenv, allow setenv/getenv to change device parameters
* svn_rev_385Sascha Hauer2007-07-051-5/+1
| | | | u_boot_hush_start() is gone, change to new readline prototype
* svn_rev_384Sascha Hauer2007-07-051-0/+1
|
* svn_rev_383Sascha Hauer2007-07-051-0/+1
|
* svn_rev_381Sascha Hauer2007-07-052-42/+22
| | | | change readline prototype to be independent of global console_buffer
* svn_rev_380Sascha Hauer2007-07-051-19/+90
| | | | add support for multipple consoles