summaryrefslogtreecommitdiffstats
path: root/common
Commit message (Collapse)AuthorAgeFilesLines
* __u_boot__symtab -> __usymtabSascha Hauer2007-10-071-4/+4
|
* export symbolsSascha Hauer2007-10-075-0/+20
|
* add dependency to include/uboot_default_env.h for startup.cSascha Hauer2007-10-041-0/+3
|
* add module linker scriptSascha Hauer2007-10-041-0/+44
|
* module.c: Due to an extra linking step we do not have u_boot_cmd_*Sascha Hauer2007-10-041-22/+13
| | | | | sections anymore. We now have u_boot_cmd and can properly handle more than one command in a module
* add missing includeSascha Hauer2007-10-041-0/+1
|
* export functionsSascha Hauer2007-10-043-3/+11
|
* CONFIG_MODULE -> CONFIG_MODULESSascha Hauer2007-10-041-3/+3
|
* hush.c: split high-density "if(x) something"; into two linesSascha Hauer2007-10-011-27/+57
|
* hush.c: get_local_var() is used only once, put it into the functionSascha Hauer2007-10-011-18/+3
| | | | where it is called
* fix indention in hush.cSascha Hauer2007-10-011-3/+3
|
* remove comment about glob in hush.c. We do not use globSascha Hauer2007-10-011-8/+0
|
* fix indention in hush.cSascha Hauer2007-10-011-64/+66
|
* fix indention in hush.cSascha Hauer2007-10-011-1/+3
|
* fix indention in hush.cSascha Hauer2007-10-011-25/+25
|
* Export symbols printf and the ones needed for getoptSascha Hauer2007-10-011-1/+2
|
* add help texts for KALLSYMS and MODULESascha Hauer2007-10-011-2/+11
|
* Resolve the symbols using an extra section and only resolve explicitlySascha Hauer2007-10-011-4/+61
| | | | | | exported symbols. Using kallsyms for this purpose doesn't do it because kallsyms do not resolve variables. Also the symbol table gets quite big using kallsyms.
* add missing whitespace in printf outputSascha Hauer2007-10-011-2/+2
|
* Add register_command() to register a command in runtime. ThisSascha Hauer2007-10-011-1/+46
| | | | | is only needed when modules are enabled, so the change is inside "#ifdef CONFIG_MODULE"
* make simple parser compile againSascha Hauer2007-10-011-3/+1
|
* Add module handling (mostly copied from Linux kernel and stripped downSascha Hauer2007-09-283-4/+342
| | | | for U-Boot)
* add kallsyms from linux kernelSascha Hauer2007-09-281-0/+69
|
* Extend 'export' command to take the form export a=bSascha Hauer2007-09-281-6/+16
|
* declare lots of functions staticSascha Hauer2007-09-281-11/+6
|
* set last_return_code to rcode and not 1 or 0Sascha Hauer2007-09-271-1/+1
|
* pass file size from read_fileSascha Hauer2007-09-271-1/+1
|
* Merge /home/git/users/rsc/u-boot-v2Sascha Hauer2007-09-271-5/+5
|\
| * Subject: don't use default in choicesRobert Schwebel (Laptop)2007-09-251-5/+4
| | | | | | | | | | | | It is currently not possible to use defaults in choices. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
| * Subject: clean up TEXT_BASERobert Schwebel (Laptop)2007-09-251-0/+1
| | | | | | | | | | | | | | This patch makes TEXT_BASE a consistent per-arch config switch. Additionally, it converts all TEXT_BASE occurences from string to hex. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
* | indentionSascha Hauer2007-09-271-4/+8
| |
* | display malloc space on startupSascha Hauer2007-09-262-14/+33
| |
* | hush.c: use xrealloc instead of realloc to save some bytesSascha Hauer2007-09-261-2/+1
| |
* | hush.c: use xzalloc instead of xmalloc to save some bytesSascha Hauer2007-09-261-8/+1
| |
* | hush.c: Remove wrong free() of ctx->pipe->progs. After breaking outSascha Hauer2007-09-261-3/+0
| | | | | | | | | | of the while loop ctx->pipe is invalid, so we cannot dereference ctx->pipe->progs.
* | remove extern declaration of console_bufferSascha Hauer2007-09-261-1/+0
| |
* | execute /env/bin/init instead of /env/initSascha Hauer2007-09-251-5/+4
| |
* | fix indentionSascha Hauer2007-09-251-2/+3
| |
* | remove hack from hush which did the wrong thingSascha Hauer2007-09-251-5/+0
| |
* | add $# handling for hushSascha Hauer2007-09-251-0/+28
| |
* | add directory handling for environmentSascha Hauer2007-09-251-1/+1
|/
* remove debug printfSascha Hauer2007-09-241-1/+0
|
* remove u-boot command paramter flagSascha Hauer2007-09-243-28/+15
|
* - add 'source' commandSascha Hauer2007-09-241-4/+44
| | | | - add help text for 'source' and 'sh'
* - teach hush to honour PATH variableSascha Hauer2007-09-247-133/+93
| | | | - remove common/main.c. This is now handled in the different shells.
* fix indentionSascha Hauer2007-09-231-27/+27
|
* introduce local and global variables, add export commandSascha Hauer2007-09-231-30/+162
|
* allow arguments to be passed to scriptsSascha Hauer2007-09-231-52/+100
|
* unifdef __U_BOOT__ in hush.cSascha Hauer2007-09-221-1936/+0
|
* add console bufferingSascha Hauer2007-09-211-1/+33
|