summaryrefslogtreecommitdiffstats
path: root/commands/linux16.c
Commit message (Collapse)AuthorAgeFilesLines
* x86 linux16 command: Add missing includeSascha Hauer2012-06-251-0/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* booting: more flexible Linux bootargs generationSascha Hauer2012-05-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | We currently use the environment variable 'bootargs' to get the Linux bootargs. This patch allows for a more flexible bootargs generation using global variables. With it the Linux bootargs are concatenated from multiple variables. This allows to replace parts of the bootargs string without having to reconstruct it completely. With this bootargs can be constructed like: global linux.bootargs.base="console=ttyS0,115200" global linux.bootargs.ip="ip=dhcp" global linux.mtdparts="physmap-flash.0:512K(nor0.barebox),-(root)" This will then automatically be combined into a kernel bootargs string during boot. If the 'linux.bootargs.' variables are all empty the old standard 'bootargs' way will be used. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* 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>
* LINUX16: Fix warningJuergen Beisert2011-03-101-1/+2
| | | | Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
* LINUX16: Add selection of the VESA video modeJuergen Beisert2011-03-101-4/+33
| | | | Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
* Change 'linux16' command to use getopt()Juergen Beisert2011-03-101-4/+12
| | | | Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
* linux16: fix cmd_tbl_t as struct commandJean-Christophe PLAGNIOL-VILLARD2010-11-171-1/+1
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* doc: unify documentation for 'linux16'Robert Schwebel2010-11-021-13/+12
| | | | Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
* Add a special command to load and start a bzImage on x86Juergen Beisert2010-01-141-0/+363
Other architectures are supporting the uImage format used by barebox's 'bootm' command. x86 does'nt. So, we need a special command to be able to boot the x86 specific bzImage format. Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>