summaryrefslogtreecommitdiffstats
path: root/Documentation
Commit message (Collapse)AuthorAgeFilesLines
* move boards to arch/<architecure>/boardsJean-Christophe PLAGNIOL-VILLARD2010-07-231-2/+2
| | | | | | | | | | | | this will allow each arch to handle the boards more simply and depending on there need the env var BOARD will refer to the current board dirent for sandbox as we have only one board the board dirent is arch/sandbox/board Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* add netconsole supportSascha Hauer2010-06-171-0/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* u-boot-v2: fix typos in documentationMárton Németh2010-03-291-2/+2
| | | | | Signed-off-by: Márton Németh <nm127@freemail.hu> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Documentation: fix typos & correct symlinkWolfram Sang2010-03-251-7/+7
| | | | | | | I found the wrong symlink and activated the spell-checker while I was here. Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Merge branch 'next'Sascha Hauer2010-02-014-2/+12
|\
| * Add a special command to load and start a bzImage on x86Juergen Beisert2010-01-141-1/+1
| | | | | | | | | | | | | | | | | | 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>
| * Add a generic PC platformJuergen Beisert2010-01-141-1/+1
| | | | | | | | | | | | | | | | | | This code adds a generic x86 platform, enabling barebox to act as a bootloader like 'GRUB'. Very minimalistic, yet. Supports only a serial console and is tested with QEMU only. Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
| * Adding x86 usage documentation to the treeJuergen Beisert2010-01-142-0/+2
| | | | | | | | | | | | | | Adding x86 usage documentation to the tree Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
| * Add support for EDB93xx boardsMatthias Kaehlcke2010-01-141-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added support for the following Cirrus Logic EDB93xx boards: EDB9301 EDB9302 EDB9302A EDB9307 EDB9307A EDB93012 EDB9315 EDB9315A Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* | documentation: It's U-Boot that doesn't have getopt, not BareboxPeter Korsgaard2010-01-161-1/+1
|/ | | | | | | | | Commit a3ffa97f (rename U-Boot-v2 project to barebox) also changed the U-Boot references to Barebox in the getopt description, which doesn't make much sense. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Documentation: update reference to sandbox environmentPeter Korsgaard2009-12-171-2/+2
| | | | | | | examples/environment is no more. Use board/sandbox/env/ instead. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* documentation updatesJuergen Beisert2009-12-153-39/+38
| | | | | Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Cleanup colleteral damage from renamingSascha Hauer2009-12-151-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* rename U-Boot-v2 project to bareboxSascha Hauer2009-12-158-57/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | This has been done with the following script: find -path ./.git -prune -o -type f -print0 | xargs -0 -r sed -i \ -e 's/u2boot/barebox/g' \ -e 's/U2Boot/barebox/g' \ -e 's/U-boot V2/barebox/g' \ -e 's/u-boot v2/barebox/g' \ -e 's/U-Boot V2/barebox/g' \ -e 's/U-Boot-v2/barebox/g' \ -e 's/U_BOOT/BAREBOX/g' \ -e 's/UBOOT/BAREBOX/g' \ -e 's/uboot/barebox/g' \ -e 's/u-boot/barebox/g' \ -e 's/u_boot/barebox/g' \ -e 's/U-Boot/barebox/g' \ -e 's/U-boot/barebox/g' \ -e 's/U-BOOT/barebox/g' find -path ./.git -prune -o \( -name "*u-boot*" -o -name "*uboot*" -o -name "*u_boot*" \) -print0 | \ xargs -0 -r rename 's/u[-_]?boot/barebox/' It needs some manual fixup following in the next patch Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Some doxygen related fixesJuergen Beisert2009-12-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | Nishanth Menon wrote: > no signed off by and no diffstat? Ups. > can you use git-format-patch to send please? it is easier to review. Sure. Here it comes: jbe ------8<---------8<---------8<---------8<---------8<---------8<---- Subject: [PATCH] Some doxygen related fixes: - fix a few doxygen comments that are used in a wrong way - move some pages and their content to a better place in the generated documentation Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Documentation/porting.txt: fix some spelling mistakes ...Uwe Kleine-König2009-11-271-24/+24
| | | | | | | ... and indentation. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* register env as env0 and not as envSascha Hauer2009-09-291-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Move the Eukrea board description to its correct place in the menuJuergen Beisert2009-07-311-0/+1
| | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* Move the parameter's documentation where it belongs toJuergen Beisert2009-07-311-52/+0
| | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* Beautify the doxygen generated documentationJuergen Beisert2009-07-314-49/+54
| | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* get rid of device idsSascha Hauer2009-07-211-1/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Get rid of remaining DEVICE_TYPE_* usageSascha Hauer2009-07-212-10/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* dev_add_partition -> devfs_add_partitionSascha Hauer2009-07-211-2/+2
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Fix some layout issues and typos.Juergen Beisert2009-06-102-3/+6
| | | | | | | | Reorganizing some files to parts of the documentation where their content matches. Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Fix the location where the new coldfire boards appear in the documentationJuergen Beisert2008-07-111-0/+5
|
* 017-OMAP-add-documentationNishanth Menon2008-06-051-0/+1
| | | | | | | | | [Patch 17/17] U-Boot-V2:ARM:OMAP3: Add documentation This patch adds OMAP and SDP3430 documentation. Signed-off-by: Nishanth Menon<x0nishan@ti.com>
* [memory layout]: streamline memory layoutSascha Hauer2008-06-041-9/+4
| | | | | | | 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.
* Doxygen cleanupsSascha Hauer2008-04-041-6/+6
| | | | | | | | | - Remove trailing whitespaces from doxygen files - escape '<' '>' with backslashes. Otherwise Doxygen interpretes them as html tags Signed-off-by: Carsten Schlote <schlote@vahanus.net> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* [i.MX]: Basic board support for the Freescale i.MX27 eval boardSascha Hauer2008-02-191-0/+1
|
* [general] Hide doxygen HTML outputCarsten Schlote2008-02-191-0/+1
| | | | Trivial.
* Revert "separating memory commands"Marc Kleine-Budde2007-11-271-4/+0
| | | | | | | | | | | | This reverts commit d59c600c656d08410ea862c582fbd77432c3ca47. Conflicts: commands/Makefile common/Kconfig common/Makefile Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* separating memory commandsJuergen Beisert2007-11-121-0/+4
| | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* Merge branch 'docu'Juergen Beisert2007-11-093-5/+19
|\
| * various doc addedJuergen Beisert2007-11-091-1/+6
| | | | | | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
| * adding various dokuJuergen Beisert2007-11-081-4/+8
| |
| * various docu addedJuergen Beisert2007-11-052-1/+6
| |\
| | * saving added docuJuergen Beisert2007-11-052-1/+16
| | |
* | | Using correct board names all over the placeJuergen Beisert2007-11-081-4/+4
|/ / | | | | | | Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
* / Replace all occurences of UBoot with U-BootSascha Hauer2007-10-242-3/+3
|/ | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* manual org addedJuergen Beisert2007-10-191-0/+27
|
* shell info addedJuergen Beisert2007-10-191-0/+2
|
* hush doc addedJuergen Beisert2007-10-192-0/+2
|
* netx doc added and some typos fixedJuergen Beisert2007-10-191-0/+1
|
* adding first board docJuergen Beisert2007-10-192-4/+19
|
* doc added (what else)Juergen Beisert2007-10-191-2/+11
|
* adding new docJuergen Beisert2007-10-192-0/+15
|
* doc added and some reorganisedJuergen Beisert2007-10-192-9/+6
|
* basic doc structure addedJuergen Beisert2007-10-194-0/+42
|
* Doxygen's main page addedJuergen Beisert2007-10-191-0/+217
|
* Documentation updateSascha Hauer2007-07-053-116/+11
|