summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2008-08-01qemu_mips: update README to follow qemu update about default machineJean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
2008-07-31Fix printf() format problems with configurable promptsWolfgang Denk
U-Boot allows for configurable prompt strings using the CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far, the assumption was that any such user defined problts would contain exactly one "%d" format specifier. But some boards did not. To allow for flexible boot prompts without adding too complex code we now allow to specify the whole list of printf() arguments in the user definition. This is powerful, but requires a responsible user who really understands what he is doing, as he needs to know for exanple which variables are available in the respective context. Signed-off-by: Wolfgang Denk <[email protected]>
2008-07-15Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefilev1.3.4-rc1Wolfgang Denk
Signed-off-by: Wolfgang Denk <[email protected]>
2008-07-15mpc5xxx: Add MVBC_P board supportAndre Schwarz
The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet controller (using e1000) and custom Altera Cyclone-II FPGA on PCI. Signed-off-by: Andre Schwarz <[email protected]> Signed-off-by: Grant Likely <[email protected]>
2008-06-28Coding Style CleanupWolfgang Denk
Signed-off-by: Wolfgang Denk <[email protected]>
2008-06-10add MPC8343 based board mvBlueLYNX-M7 (doc+config)Andre Schwarz
Add MPC8343 based board mvBlueLYNX-M7. It's a single board stereo camera system. Please read doc/README.mvblm7 for details. Signed-off-by: Andre Schwarz <[email protected]> Signed-off-by: Kim Phillips <[email protected]>
2008-05-27USB: add new configuration variable CONFIG_PCI_OHCI_DEVNOSergei Poselenov
In case of several PCI USB controllers on a board this variable specifys which controller to use. See doc/README.generic_usb_ohci for details. Signed-off-by: Sergei Poselenov <[email protected]>
2008-05-21Big white-space cleanup.Wolfgang Denk
This commit gets rid of a huge amount of silly white-space issues. Especially, all sequences of SPACEs followed by TAB characters get removed (unless they appear in print statements). Also remove all embedded "vim:" and "vi:" statements which hide indentation problems. Signed-off-by: Wolfgang Denk <[email protected]>
2008-05-09Fix some typosAdrian Filipi
This patch fixes three typos. The first is a repetition of CONFIG_CMD_BSP. The second makes the #endif comment match its #if. The third is a spelling error. Signed-off-by: Adrian Filipi <[email protected]>
2008-05-04qemu_mips: add READMEJean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
2008-04-25mpc83xx: clean up the readme for 83xx boardsDave Liu
1. correct the typo 2. correct the memory map for 837xerdb board Signed-off-by: Dave Liu <[email protected]>
2008-04-25doc/README.mips: Add MIPS notesShinya Kuribayashi
Signed-off-by: Shinya Kuribayashi <[email protected]>
2008-04-13doc: english polishing for README.sataDave Liu
according to gvb's suggestion, polishing for the doc. Signed-off-by: Jerry Van Baren <[email protected]> Signed-off-by: Dave Liu <[email protected]>
2008-04-08Merge branch 'master' of git://www.denx.de/git/u-boot-shWolfgang Denk
2008-03-28sh: Add support Renesas Solutions R7780MPYusuke Goda
Renesas Solutions R7780MP is a reference board on SH7780. This board has serial, 10/100 base Ethernet deivice, CF slot and VGA devices. This board can set extension board. Extension board has 10/100/1000 base Ethernet device, PCI slot, S-ATA, iDVR slot. Signed-off-by: Yusuke Goda <[email protected]> Signed-off-by: Nobuhiro Iwamatsu <[email protected]>
2008-03-27ppc4xx: Updates to Korat-specific codeLarry Johnson
This patch contains updates for changes for the Korat PPC440EPx board. These changes include: (1) Support for "permanent" and "upgradable" copies of U-Boot, as described in the new "doc/README.korat" file; (2) a new memory map for the registers in the board's CPLD; (3) a revised format for manufacturer's data in serial EEPROM; and (4) changes to track updates to U-Boot for the Sequoia board. Signed-off-by: Larry Johnson <[email protected]>
2008-03-27Coding style cleanup, update CHANGELOGWolfgang Denk
Signed-off-by: Wolfgang Denk <[email protected]>
2008-03-26ata: add the readme for SATA command lineDave Liu
Signed-off-by: Dave Liu <[email protected]>
2008-03-26Cleanup coding style, update CHANGELOGWolfgang Denk
Signed-off-by: Wolfgang Denk <[email protected]>
2008-03-20[new uImage] Fix *.its files location in documentationBartlomiej Sieka
Signed-off-by: Bartlomiej Sieka <[email protected]>
2008-03-12[new uImage] Add new uImage format documentation and examplesMarian Balakowicz
Create doc/uImage.FIT documentation directory with the following files: - command_syntax_extensions.txt : extended command syntax description - howto.txt : short usage howto - source_file_format.txt : internal new uImage format description Add example image source files: - kernel.its - kernel_fdt.its - multi.its Update README appropriately. Signed-off-by: Marian Balakowicz <[email protected]> Signed-off-by: Bartlomiej Sieka <[email protected]>
2008-02-208610HPCD: Document the flashbank selection switches.Jon Loeliger
Signed-off-by: Jon Loeliger <[email protected]>
2008-02-15Merge branch 'master' of git://www.denx.de/git/u-boot-blackfinWolfgang Denk
Conflicts: Makefile doc/README.standalone Signed-off-by: Wolfgang Denk <[email protected]>
2008-02-14PPC: Use r2 instead of r29 as global data pointerWolfgang Denk
R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc will refuse to use load/store multiple insns; instead, it issues a list of simple load/store instructions upon function entry and exit, resulting in bigger code size, which in turn makes the build for a few boards fail. Use r2 instead. Signed-off-by: Wolfgang Denk <[email protected]>
2008-02-04add some more Blackfin docsMike Frysinger
Signed-off-by: Mike Frysinger <[email protected]>
2008-01-23Coding Style Cleanup; update CHANGELOGWolfgang Denk
Signed-off-by: Wolfgang Denk <[email protected]>
2008-01-17ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB supportTsiChungLiew
Signed-off-by: TsiChungLiew <[email protected]> Signed-off by: John Rigby <[email protected]>
2008-01-17ColdFire: Add MCF5227x cpu and M52277EVB support-1TsiChungLiew
Signed-off-by: TsiChungLiew <[email protected]> Signed-off by: John Rigby <[email protected]>
2008-01-17ColdFire: Add M5373EVB platform support - 2TsiChungLiew
Signed-off-by: TsiChungLiew <[email protected]> Signed-off by: John Rigby <[email protected]>
2008-01-16Add support for the MPC837xERDBKim Phillips
MPC837xERDB board support includes: * DDR2 330MHz hardcoded (soldered on the board) * Local Bus NOR Flash * I2C, UART and RTC * eTSEC RGMII (TSEC0 - RTL8211B with MII; * TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware * load) Signed-off-by: Kevin Lam <[email protected]> Signed-off-by: Joe D'Abbraccio <joe.d'[email protected]> Signed-off-by: Kim Phillips <[email protected]>
2008-01-16mpc83xx: Add the support for MPC8315ERDB boardDave Liu
The features list: - Boot from NOR Flash - DDR2 266MHz hardcoded configuration - Local bus NOR Flash R/W operation - I2C, UART, MII and RTC - eTSEC0/1 support - PCI host Signed-off-by: Dave Liu <[email protected]> Signed-off-by: Kim Phillips <[email protected]>
2008-01-09mpc85xx: Add support for ATUM8548 (updated)robert lazarski
Add support for Instituto Atlantico's ATUM8548 board Signed-off-by: robert lazarski <[email protected]>
2008-01-09mpc85xx: Add support for SBC8548 (updated)Joe Hamman
Add support for Wind River's SBC8548 reference board. Signed-off by: Joe Hamman <[email protected]>
2008-01-09fix various commentsMarcel Ziswiler
Signed-off-by: Marcel Ziswiler <[email protected]>
2008-01-09fix comments with new drivers organizationMarcel Ziswiler
Signed-off-by: Marcel Ziswiler <[email protected]>
2008-01-08mpc83xx: Add the MPC837xEMDS board readmeDave Liu
Add the README.mpc837xemds to /doc Signed-off-by: Dave Liu <[email protected]>
2008-01-03Merge commit 'wd/master'Jon Loeliger
2007-12-27Fix coding style issues; update CHANGELOG.Wolfgang Denk
Signed-off-by: Wolfgang Denk <[email protected]>
2007-11-29sh: Add document for SuperH.Nobuhiro Iwamatsu
This document is a summary of information concerning SuperH of U-Boot. Signed-off-by: Nobuhiro Iwamatsu <[email protected]>
2007-11-29sh: Add marubun's pcmcia driverNobuhiro Iwamatsu
Marubun pcmcia is a chip for PCMCIA used with SuperH. Of course, this can be used even by other architectures. When use this driver, came to be able to use CompactFlash and Ethernet. Signed-off-by: Nobuhiro Iwamatsu <[email protected]>
2007-10-17Initial mpc8610hpcd cpu/, README and include/ files.Jon Loeliger
Signed-off-by: Ed Swarthout <[email protected]> Signed-off-by: Mahesh Jade <[email protected]> Signed-off-by: Jason Jin <[email protected]> Signed-off-by: Jon Loeliger <[email protected]>
2007-08-18ColdFire: Fix some remaining problems with CFG_CMD_Stefan Roese
Signed-off-by: Stefan Roese <[email protected]>
2007-08-18Coding style cleanupStefan Roese
Signed-off-by: Stefan Roese <[email protected]>
2007-08-16ColdFire: Add M54455EVB for MCF5445xTsiChungLiew
Signed-off-by: TsiChungLiew <[email protected]>
2007-08-16ColdFire: Add M5253EVBE platform for MCF52x2TsiChungLiew
Signed-off-by: TsiChungLiew <[email protected]>
2007-08-14Merge with git://www.denx.de/git/u-boot.gitStefan Roese
2007-08-14Merge with /home/stefan/git/u-boot/zeusStefan Roese
2007-08-14ppc4xx: Add initial Zeus (PPC405EP) board supportStefan Roese
Signed-off-by: Stefan Roese <[email protected]>
2007-08-14Coding style cleanup, update CHANGELOGWolfgang Denk
Signed-off-by: Wolfgang Denk <[email protected]>
2007-08-14Add MPC8544DS READMEAndy Fleming
Signed-off-by: Andy Fleming <[email protected]>