summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-09-15Add PCI support to TQM8540 and TQM8560 boardsLABEL_2005_09_15_2320Stefan Roese
Patch by Stefan Roese, 15 Sep 2005
2005-09-15Update AMCC Yosemite to get a consistent setup for all AMCC evalStefan Roese
boards (baudrate, environment...). Flash driver fixed. Patch by Stefan Roese, 15 Sep 2005
2005-09-14Merge with /home/wd/git/u-boot/masterWolfgang Denk
2005-09-14Merge with /home/sr/git/u-bootWolfgang Denk
2005-09-13Add support for mtddevnum and mtddevname variables (mtdparts command)Wolfgang Denk
[Merge with /home/m8/git/u-boot]
2005-09-13Change default console baud rate for stxxtc boardWolfgang Denk
2005-09-11Added support for mtddevnum and mtddevname variables (mtdparts command)Marian Balakowicz
2005-09-07Fix problem in 440GP ethernet driver (ebony). Add support for 2ndStefan Roese
ethernet port on ebony. Patch by Stefan Roese, 7 Sep 2005
2005-09-06Merge with /home/sr/git/u-boot:Wolfgang Denk
Add I2C support for TQM85xx
2005-09-04Update MPC5200 FIFO Control settingsWolfgang Denk
(u-boot.habanero.fifo_cntrl.patch from Freescale)
2005-09-03Fix default command set (don't include CFG_CMD_DISPLAY command)Wolfgang Denk
Patch by Pantelis Antoniou, 02 Sep 2005
2005-09-03Cleanup compiler warnings.Wolfgang Denk
2005-09-03Update CHANGELOG.Wolfgang Denk
2005-09-03Enable SM712 driver support for HMI1001 board.Wolfgang Denk
2005-08-31Add I2C support to TQM8540 and TQM8560 boards (EEPROM, RTC, LM75-DTT).Stefan Roese
Removed CFG_CMD_DISPLAY from default commands. Fixed compiler warning in net.c. Patch by Stefan Roese, 31 Aug 2005
2005-08-31Update CHANGELOG fileWolfgang Denk
2005-08-31Fix problems with ld version 2.16 (dot outside sections problem)Wolfgang Denk
Pointed out by Gerhard Jaeger, 31 Aug 2005; cf. http://sourceware.org/ml/binutils/2005-08/msg00412.html
2005-08-30Prepare U-Boot for gcc-4.x: fix global data pointer initializationWolfgang Denk
The global data pointer, stored in r29 before relocation to RAM, was not initialized to a correct value. This happened because the pointer declaration was done locally in the scope of the board_init_f() function. What follows is a cite from gcc.info, 5.37, "Variables in Specified Registers": ... The compiler's data flow analysis is capable of determining where the specified registers contain live values, and where they are available for other uses. Stores into local register variables may be deleted when they appear to be dead according to dataflow analysis. References to local register variables may be deleted or moved or simplified. ... Moving the global data declaration to global scope solved the problem.
2005-08-30Adjust CS3 timings on HMI1001 board for dot matrix display under LinuxWolfgang Denk
2005-08-30Add keyboard and dot matrix display support for HMI1001 board.Wolfgang Denk
2005-08-26Prepare U-Boot for gcc-4.xWolfgang Denk
2005-08-24Minor reformattingWolfgang Denk
2005-08-24Fixed bamboo port to enable running without DDR-DIMM (bamboo has also 64MB ↵Stefan Roese
onboard DDR) Patch by Stefan Roese, 24 Aug 2005
2005-08-23Update CHANGELOGWolfgang Denk
2005-08-23Merge with testing-4xx_enet (Create generic 4xx Ethernet code)Wolfgang Denk
2005-08-23Fix make dependencies for at91rm9200 and ks8695 cpusWolfgang Denk
Patch by Steven Scholz, 23 Aug 2005
2005-08-23Add JFFS2 support for TQM5200 boardWolfgang Denk
2005-08-22Add esd cpci5200 and pf5200 boardsStefan Roese
Patch by Reinhard Arlt, 22 Aug 2005
2005-08-19Fix erroneous commitWolfgang Denk
2005-08-19Fix MPC52xx watchdog driverWolfgang Denk
- make watchdog driver work on systems with an IPB clock frequency of 133 MHz (watchdog expired to fast there). - now all three watchdog chain entries could be used. - fix some typos. Patch by Martin Krause, 23 Jun 2005
2005-08-19Fix sysclock for TQM8540 and TQM8560 boardsWolfgang Denk
Patch by Martin Krause, 25 Jul 2005
2005-08-19Initialize serial# and ethaddr from manufacturer data in EEPROM on CMC-PU2Wolfgang Denk
Patch by Martin Krause, 08 Jun 2005
2005-08-19Add new board specific commands for TQM5200/STK52XXWolfgang Denk
- Sound commands (beep, wav, sound) - Test commands (led, can, backlight, rs232) Patch by Martin Krause, 02 May 2005
2005-08-19Change main clock on CMC-PU2 board from 207 MHz to 179 MHzWolfgang Denk
because of a bug in the AT91RM9200 CPU PLL Patch by Martin Krause, 22 Apr 2005
2005-08-19Add automatic HW detection for another CMC_PU2 variantWolfgang Denk
Patch by Martin Krause, 20 Apr 2005
2005-08-18Remove CONFIG_AT91RM9200DK in CMC-PU2 configurationWolfgang Denk
Patch by Martin Krause, 19 Apr 2005
2005-08-18Fix initialization problem on TQM5200 without SM501Wolfgang Denk
Patch by Martin Krause, 8 Apr. 2005
2005-08-18Add RTC support for STK52XX.200Wolfgang Denk
Patch by Martin Krause, 7 Apr. 2005
2005-08-18Add 82dnt board supportWolfgang Denk
2005-08-18Add CHANEGLOG entry; sort Makefile entriesWolfgang Denk
2005-08-18Minor Makefile cleanupWolfgang Denk
2005-08-16Disable SNTP for O2DNT board.
2005-08-16CONFIG_PCI_SCAN_SHOW disabled for O2DNT.
2005-08-16Merged 405gp_enet.c and 440gx_enet.c to generic 4xx_enet.cStefan Roese
now handling all 4xx cpu's. Patch by Stefan Roese, 16 Aug 2005
2005-08-16Merge with pollux.denx.org:/home/git/u-boot/.git
2005-08-16Enable PCI on hmi1001 boardWolfgang Denk
2005-08-16Fix return values of the jffs2 commands ls/fsload/fsinfo,Wolfgang Denk
so we can use them to, e.g., check the existence of a file with "if ls foo; then this; else that; fi" in the hush shell Patch by Andreas Engel, 16 August 2005
2005-08-15Coding style cleanupWolfgang Denk
2005-08-15Add support for Silicon Turnkey eXpress XTc (mpc87x/88x) board.Wolfgang Denk
Patch by Dan Malek and Pantelis Antoniou, 15 Aug 2005
2005-08-15Changed to version 1.1.4Stefan Roese