]>
git.sur5r.net Git - u-boot/log 
Jean-Christophe PLAGNIOL-VILLARD  [Sat, 24 Nov 2007 18:40:11 +0000  (19:40 +0100)] 
drivers/usb : move usb drivers to drivers/usbSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 
Jean-Christophe PLAGNIOL-VILLARD  [Sat, 24 Nov 2007 18:33:38 +0000  (19:33 +0100)] 
drivers/serial : move serial drivers to drivers/serialSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 
Jean-Christophe PLAGNIOL-VILLARD  [Wed, 21 Nov 2007 20:19:24 +0000  (21:19 +0100)] 
drivers/net : move net drivers to drivers/netSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 
Jean-Christophe PLAGNIOL-VILLARD  [Tue, 20 Nov 2007 19:41:48 +0000  (20:41 +0100)] 
drivers/video : move video drivers to drivers/videoSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 
Jean-Christophe PLAGNIOL-VILLARD  [Tue, 20 Nov 2007 19:33:09 +0000  (20:33 +0100)] 
drivers/pcmcia : move pcmcia drivers to drivers/pcmciaSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 
Jean-Christophe PLAGNIOL-VILLARD  [Tue, 20 Nov 2007 19:28:09 +0000  (20:28 +0100)] 
drivers/pci : move pci drivers to drivers/pciSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 
Jean-Christophe PLAGNIOL-VILLARD  [Tue, 20 Nov 2007 19:14:18 +0000  (20:14 +0100)] 
drivers/i2c : move i2c drivers to drivers/i2cSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 
Grant Likely  [Tue, 20 Nov 2007 15:19:56 +0000  (08:19 -0700)] 
Merge branch 'origin' into kconfig-for-1.3.1
Wolfgang Denk  [Mon, 19 Nov 2007 21:20:24 +0000  (22:20 +0100)] 
Prepare for 1.3.0 release.Signed-off-by: Wolfgang Denk <wd@denx.de> 
Haiying Wang  [Mon, 19 Nov 2007 15:02:13 +0000  (10:02 -0500)] 
Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDSSigned-off-by: Haiying Wang <Haiying.Wang@freescale.com> 
Shinya Kuribayashi  [Mon, 19 Nov 2007 02:14:16 +0000  (11:14 +0900)] 
[MIPS] board/gth2/lowlevel_init.S: Fix a build warningSigned-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 
Wolfgang Denk  [Mon, 19 Nov 2007 11:59:14 +0000  (12:59 +0100)] 
Fix build problems with mp2usb boardSigned-off-by: Wolfgang Denk <wd@denx.de> 
Jean-Christophe PLAGNIOL-VILLARD  [Sun, 18 Nov 2007 17:36:11 +0000  (18:36 +0100)] 
s3c24x0: Fix usb_ohci.c missing in MakefileSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 
Jean-Christophe PLAGNIOL-VILLARD  [Sun, 18 Nov 2007 11:55:02 +0000  (12:55 +0100)] 
pb1x00 board: Fix u16 status declaration when PCMCIA is definedSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 
Wolfgang Denk  [Sun, 18 Nov 2007 16:11:09 +0000  (17:11 +0100)] 
Fix compiler warnings for ARM systems.Signed-off-by: Wolfgang Denk <wd@denx.de> 
Wolfgang Denk  [Sun, 18 Nov 2007 15:36:27 +0000  (16:36 +0100)] 
Fix compiler warnings for PPC systems. Update CHANGELOG.Signed-off-by: Wolfgang Denk <wd@denx.de> 
Jean-Christophe PLAGNIOL-VILLARD  [Sat, 17 Nov 2007 10:31:10 +0000  (11:31 +0100)] 
Fix warning differ in signedness in net/net.c and net/nfs.c
Wolfgang Denk  [Sun, 18 Nov 2007 00:26:14 +0000  (01:26  +0100)] 
Merge branch 'master' of git://www.denx.de/git/u-boot-mips
Shinya Kuribayashi  [Sat, 17 Nov 2007 11:42:45 +0000  (20:42 +0900)] 
gth2.c: Fix a warning on gth2 build.Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 
Stefan Roese  [Sat, 17 Nov 2007 06:58:25 +0000  (07:58 +0100)] 
Fix warning differ in signedness in common/cmd_scsi.cSigned-off-by: Stefan Roese <sr@denx.de> 
Shinya Kuribayashi  [Sat, 17 Nov 2007 11:05:26 +0000  (20:05 +0900)] 
[MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
Current trick to pick up GNU assembler minor version does not work with the
latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
"(GNU Binutils) ".
  $ sde-as --version |grep "GNU assembler"
  GNU assembler 2.15.94 mipssde-6.02.02-
20050602 
  $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
  2.15.94
  $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
  15
  $
  $ mips-linux-as --version |grep "GNU assembler"
  GNU assembler (GNU Binutils) 2.18
  $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
  (GNU
  $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
  (no output)
  $
As a result of above, you'll see many noises with such binutils:
  make -C cpu/mips/
  /bin/sh: line 0: [: : integer expression expected
  /bin/sh: line 0: [: : integer expression expected
  make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
  mips-linux-gcc  -D__ASSEMBLY__ -g  -Os   -D__KERNEL__ -DTEXT_BASE=0xB0000000  -I/home/skuribay/devel/u-boot.git/include -fno-builtin -ffreestanding -nostdinc -isystem /home/skuribay/devel/buildroot/build_mips/staging_dir/usr/bin/../lib/gcc/mips-linux-uclibc/4.2.1/include -pipe  -DCONFIG_MIPS -D__MIPS__ -G 0 -mabicalls -fpic -pipe -msoft-float -march=4kc -mtune=4kc -EB -c -o incaip_wdt.o incaip_wdt.S
  /bin/sh: line 0: [: : integer expression expected
  mips-linux-gcc  -D__ASSEMBLY__ -g  -Os   -D__KERNEL__ -DTEXT_BASE=0xB0000000  -I/home/skuribay/devel/u-boot.git/include -fno-builtin -ffreestanding -nostdinc -isystem /home/skuribay/devel/buildroot/build_mips/staging_dir/usr/bin/../lib/gcc/mips-linux-uclibc/4.2.1/include -pipe  -DCONFIG_MIPS -D__MIPS__ -G 0 -mabicalls -fpic -pipe -msoft-float -march=4kc -mtune=4kc -EB -c -o cache.o cache.S
  /bin/sh: line 0: [: : integer expression expected
  mips-linux-gcc -g  -Os   -D__KERNEL__ -DTEXT_BASE=0xB0000000  -I/home/skuribay/devel/u-boot.git/include -fno-builtin -ffreestanding -nostdinc -isystem /home/skuribay/devel/buildroot/build_mips/staging_dir/usr/bin/../lib/gcc/mips-linux-uclibc/4.2.1/include -pipe  -DCONFIG_MIPS -D__MIPS__ -G 0 -mabicalls -fpic -pipe -msoft-float -march=4kc -mtune=4kc -EB -Wall -Wstrict-prototypes -c -o asc_serial.o asc_serial.c
  /bin/sh: line 0: [: : integer expression expected
This patch simplifies the trick and makes it work with both versions of gas.
I also replace an expensive `awk (or gawk)' with `cut'.
Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 
Shinya Kuribayashi  [Sat, 17 Nov 2007 11:05:26 +0000  (20:05 +0900)] 
[MIPS] Remove useless instructions for initializing $gp.Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 
Shinya Kuribayashi  [Sat, 27 Oct 2007 06:27:06 +0000  (15:27 +0900)] 
[MIPS] MIPS 4K core: Coding style cleanupsSigned-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 
Shinya Kuribayashi  [Sat, 17 Nov 2007 11:05:20 +0000  (20:05 +0900)] 
[MIPS] gth2.c: Fix a warning on gth2 build.Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 
Shinya Kuribayashi  [Sat, 27 Oct 2007 06:22:33 +0000  (15:22 +0900)] 
[MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 
Shinya Kuribayashi  [Sat, 27 Oct 2007 06:00:25 +0000  (15:00 +0900)] 
[MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build errorSigned-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 
Shinya Kuribayashi  [Sat, 27 Oct 2007 06:00:25 +0000  (15:00 +0900)] 
MAKEALL: Added missing pb1000 boardSigned-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 
Shinya Kuribayashi  [Sat, 27 Oct 2007 06:00:24 +0000  (15:00 +0900)] 
[MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.SSigned-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 
Shinya Kuribayashi  [Sat, 27 Oct 2007 06:00:24 +0000  (15:00 +0900)] 
[MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 
Grant Likely  [Sat, 17 Nov 2007 04:01:19 +0000  (21:01 -0700)] 
Merge branch 'origin' into kconfig-for-1.3.1
Wolfgang Denk  [Sat, 17 Nov 2007 01:34:38 +0000  (02:34  +0100)] 
Update CHANGELOIG, prepare for -rc4Signed-off-by: Wolfgang Denk <wd@denx.de> 
Wolfgang Denk  [Sat, 17 Nov 2007 01:28:26 +0000  (02:28  +0100)] 
Merge branch 'master' of git://www.denx.de/git/u-boot-coldfire
Wolfgang Denk  [Sat, 17 Nov 2007 01:00:17 +0000  (02:00  +0100)] 
Merge branch 'master' of git://www.denx.de/git/u-boot-mpc5xxx
Luotao Fu  [Wed, 14 Nov 2007 17:58:33 +0000  (18:58 +0100)] 
Fix the i2c frequency and default address in rsdproto boardSigned-off-by: Luotao Fu <l.fu@pengutronix.de> 
Wolfgang Denk  [Sat, 17 Nov 2007 00:45:38 +0000  (01:45  +0100)] 
powerpc: Backout relocation changes for MPC5121, too.Signed-off-by: Wolfgang Denk <wd@denx.de> 
Grant Likely  [Wed, 14 Nov 2007 05:18:33 +0000  (22:18 -0700)] 
powerpc: Backout relocation changes.Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 
Jean-Christophe PLAGNIOL-VILLARD  [Tue, 13 Nov 2007 08:11:05 +0000  (09:11 +0100)] 
Fixed mips_io_port_base build errors.Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 
Wolfgang Denk  [Sat, 17 Nov 2007 00:33:33 +0000  (01:33  +0100)] 
Merge branch 'master' of git://www.denx.de/git/u-boot-ppc4xx
Wolfgang Denk  [Sat, 17 Nov 2007 00:30:40 +0000  (01:30  +0100)] 
Fix a bug in the slave serial programming mode for the XilinxSigned-off-by: Wolfgang Denk <wd@denx.de> 
Jon Loeliger  [Thu, 1 Nov 2007 17:23:29 +0000  (12:23 -0500)] 
86xx: Fix broken variable reference when #def DEBUGing.Signed-off-by: Jon Loeliger <jdl@freescale.com> 
Jason Jin  [Fri, 26 Oct 2007 10:32:00 +0000  (18:32 +0800)] 
make 8610 board use pixis resetSigned-off-by: Jason Jin <Jason.jin@freescale.com> 
Jason Jin  [Mon, 29 Oct 2007 11:26:21 +0000  (19:26 +0800)] 
Unify pixis_reset altbank across board familiesSigned-off-by: Jason Jin <Jason.jin@freescale.com> Signed-off-by: Jon Loeliger <jdl@freescale.com> 
Wolfgang Denk  [Fri, 16 Nov 2007 23:38:34 +0000  (00:38  +0100)] 
Merge branch 'master' of /home/wd/git/u-boot/work
Jean-Christophe PLAGNIOL-VILLARD  [Wed, 7 Nov 2007 07:19:21 +0000  (08:19 +0100)] 
Fix warning: pointer targets in assignment differ in signednessSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 
Jean-Christophe PLAGNIOL-VILLARD  [Wed, 7 Nov 2007 07:19:19 +0000  (08:19 +0100)] 
Fix warning differ in signedness in common/cmd_ide.cSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 
Wolfgang Denk  [Fri, 16 Nov 2007 20:50:12 +0000  (21:50 +0100)] 
Merge branch 'master' of git://www.denx.de/git/u-boot-net
Grant Likely  [Mon, 24 Sep 2007 15:05:31 +0000  (09:05 -0600)] 
Group PCI and PCMCIA drivers in drivers/MakefileSigned-off-by: Grant Likely <grant.likely@secretlab.ca> 
Grant Likely  [Mon, 24 Sep 2007 15:05:31 +0000  (09:05 -0600)] 
Group block/flash drivers in drivers/MakefileSigned-off-by: Grant Likely <grant.likely@secretlab.ca> 
Grant Likely  [Mon, 24 Sep 2007 15:05:31 +0000  (09:05 -0600)] 
Group USB drivers in drivers/MakefileSigned-off-by: Grant Likely <grant.likely@secretlab.ca> 
Grant Likely  [Mon, 24 Sep 2007 15:05:30 +0000  (09:05 -0600)] 
Group i2c drivers in drivers/MakefileSigned-off-by: Grant Likely <grant.likely@secretlab.ca> 
Grant Likely  [Mon, 24 Sep 2007 15:05:30 +0000  (09:05 -0600)] 
Group console drivers in drivers/MakefileSigned-off-by: Grant Likely <grant.likely@secretlab.ca> 
Grant Likely  [Mon, 24 Sep 2007 15:05:30 +0000  (09:05 -0600)] 
Group network drivers in drivers/MakefileSigned-off-by: Grant Likely <grant.likely@secretlab.ca> 
Grant Likely  [Mon, 24 Sep 2007 15:05:30 +0000  (09:05 -0600)] 
Build: split COBJS value into multiple linesSigned-off-by: Grant Likely <grant.likely@secretlab.ca> 
Grant Likely  [Mon, 24 Sep 2007 15:05:30 +0000  (09:05 -0600)] 
Add .gitignore filesSigned-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Kim Phillips <kim.phillips@freescale.com> 
Grant Likely  [Thu, 15 Nov 2007 15:27:52 +0000  (08:27 -0700)] 
Revert "Correct relocation fixup for mpc5xx"
This reverts commit 
3649cd99ba815b6601868735765602f00ef3692b .
Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 
Grant Likely  [Thu, 15 Nov 2007 15:24:32 +0000  (08:24 -0700)] 
Revert "Correct fixup relocation for MPC5xxx"
This reverts commit 
6f7576b20ecf0d040c3ac3b032b5cbc860e38a90 .
Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 
Grant Likely  [Thu, 15 Nov 2007 15:21:04 +0000  (08:21 -0700)] 
Revert "Correct fixup relocation for mpc8220"
This reverts commit 
a85dd254c0577fca13627c46e93fc2ad4c4f1f00 .
Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 
Grant Likely  [Thu, 15 Nov 2007 15:20:57 +0000  (08:20 -0700)] 
Revert "Correct fixup relocation for mpc824x"
This reverts commit 
f3a52fe05923935db86985daf9438e2f70ac39aa .
Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 
Grant Likely  [Thu, 15 Nov 2007 15:20:50 +0000  (08:20 -0700)] 
Revert "Correct fixup relocation for mpc8260"
This reverts commit 
5af61b2f4b838a05f79be274f3e5a66edd2d9c96 .
Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 
Grant Likely  [Thu, 15 Nov 2007 15:20:43 +0000  (08:20 -0700)] 
Revert "Correct fixup relocation for mpc83xx"
This reverts commit 
057004f4a4863554d56cc56268bfa7c7d9738e27 .
Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 
Grant Likely  [Thu, 15 Nov 2007 15:20:25 +0000  (08:20 -0700)] 
Revert "[MPC512x] Correct fixup relocation"
This reverts commit 
8d17979d0359492a822a0a409d26e3a3549b4cd4 .
Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 
Stefan Roese  [Tue, 13 Nov 2007 07:18:20 +0000  (08:18 +0100)] 
ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latchingSigned-off-by: Stefan Roese <sr@denx.de> 
Stefan Roese  [Tue, 13 Nov 2007 07:16:40 +0000  (08:16 +0100)] 
Merge branch 'master' of git://www.denx.de/git/u-boot
Heiko Schocher  [Tue, 13 Nov 2007 06:50:29 +0000  (07:50 +0100)] 
[UC101] SRAM now with 2 MB working.Signed-off-by: Heiko Schocher <hs@denx.de> 
TsiChungLiew  [Thu, 8 Nov 2007 18:50:18 +0000  (12:50 -0600)] 
ColdFire: MCF5329 - Remove reset registers from CCMSigned-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 
TsiChungLiew  [Thu, 8 Nov 2007 18:31:11 +0000  (12:31 -0600)] 
ColdFire: MCF5329 - Add Reset structure to immap_5329.hSigned-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 
TsiChungLiew  [Thu, 8 Nov 2007 18:19:01 +0000  (12:19 -0600)] 
ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file modeSigned-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 
TsiChungLiew  [Thu, 8 Nov 2007 00:00:54 +0000  (18:00 -0600)] 
ColdFire: MCF5445x - Update correct RAMBAR and missing linker filesSigned-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 
TsiChungLiew  [Wed, 7 Nov 2007 23:56:15 +0000  (17:56 -0600)] 
ColdFire: MCF532x - Update do_reset() using core resetSigned-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 
TsiChungLiew  [Wed, 7 Nov 2007 23:51:00 +0000  (17:51 -0600)] 
ColdFire: Update cpu flag for 4.2-xx compilerSigned-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 
Roy Zang  [Mon, 5 Nov 2007 09:39:24 +0000  (17:39 +0800)] 
Implement general ULi 526x Ethernet driver support in U-bootSigned-off-by: Roy Zang <tie-fei.zang@freescale.com> Signed-off-by: Zhang Wei <wei.zhang@freescale.com> Acked-by: Jon Loeliger <jdl@freescale.com> Signed-off-by: Ben Warren <bwarren@qstreams.com> 
Larry Johnson  [Thu, 1 Nov 2007 13:46:50 +0000  (08:46 -0500)] 
NET: Add Ethernet 1000BASE-X support for PPC4xxSigned-off-by: Larry Johnson <lrj@acm.org> Signed-off-by: Ben Warren <bwarren@qstreams.com> 
Larry Johnson  [Wed, 31 Oct 2007 16:21:29 +0000  (11:21 -0500)] 
NET: Cosmetic changesSigned-off-by: Larry Johnson <lrj@acm.org> Signed-off-by: Ben Warren <bwarren@qstreams.com> 
Ben Warren  [Tue, 6 Nov 2007 15:17:40 +0000  (10:17 -0500)] 
Merge git://www.denx.de/git/u-boot
Wolfgang Denk  [Sat, 3 Nov 2007 22:09:27 +0000  (23:09 +0100)] 
Cleanup coding style; update CHANGELOGSigned-off-by: Wolfgang Denk <wd@denx.de> 
Bruce Adler  [Fri, 2 Nov 2007 20:15:42 +0000  (13:15 -0700)] 
fix wording in READMESigned-off-by: Bruce Adler <bruce.adler@acm.org> 
Shinya Kuribayashi  [Tue, 30 Oct 2007 17:18:15 +0000  (02:18  +0900)] 
blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mkSigned-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 
Vlad Lungu  [Thu, 25 Oct 2007 13:08:14 +0000  (16:08 +0300)] 
Trimmed some variables in ne2000.cSigned-off-by: Vlad Lungu <vlad@comsys.ro> 
Zhang Wei  [Thu, 25 Oct 2007 09:51:27 +0000  (17:51 +0800)] 
Fix the issue of usb_kbd driver missing the scan code of key 'z'.Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 
Zhang Wei  [Thu, 25 Oct 2007 09:30:04 +0000  (17:30 +0800)] 
Fix USB support issue for MPC8641HPCN board.Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 
Jean-Christophe PLAGNIOL-VILLARD  [Wed, 24 Oct 2007 16:16:01 +0000  (18:16 +0200)] 
Use config_cmd_default.h instead of config_cmd_all.hSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 
Marian Balakowicz  [Tue, 23 Oct 2007 23:37:36 +0000  (01:37  +0200)] 
TQM5200: Call usb_cpu_init() during board initSigned-off-by: Marian Balakowicz <m8@semihalf.com> 
Guennadi Liakhovetski  [Tue, 23 Oct 2007 14:25:50 +0000  (16:25 +0200)] 
Fix typo in nfs.cSigned-off-by: Guennadi Liakhovetski <lg@denx.de> 
Guennadi Liakhovetski  [Tue, 23 Oct 2007 12:35:05 +0000  (14:35 +0200)] 
Fix a typo in cpu/mpc824x/interrupts.cSigned-off-by: Guennadi Liakhovetski <lg@denx.de> 
Sergej Stepanov  [Wed, 17 Oct 2007 09:13:51 +0000  (11:13 +0200)] 
add ft_cpu_setup(..) on mpc8260Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de> 
Sergej Stepanov  [Wed, 17 Oct 2007 09:18:42 +0000  (11:18 +0200)] 
changes for IDS8247 board supportSigned-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de> 
Ben Warren  [Fri, 2 Nov 2007 15:20:41 +0000  (11:20 -0400)] 
Merge git://www.denx.de/git/u-boot
Wolfgang Denk  [Fri, 2 Nov 2007 14:09:22 +0000  (15:09 +0100)] 
Merge branch 'master' of /home/wd/git/u-boot/work
Wolfgang Denk  [Fri, 2 Nov 2007 14:09:10 +0000  (15:09 +0100)] 
Merge branch 'master' of /home/wd/git/u-boot/custodians
Haavard Skinnemoen  [Wed, 24 Oct 2007 13:48:37 +0000  (15:48 +0200)] 
ATSTK1002: Remove default ethernet addressesSigned-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 
Justin Flammia  [Mon, 29 Oct 2007 21:40:35 +0000  (17:40 -0400)] 
DHCP Client Fix
This is a multi-part message in MIME format.
commit 
e6e505eae94ed721e123e177489291fc4544b7b8 
Author: Justin Flammia <jflammia@savantav.com>
Date:   Mon Oct 29 17:19:03 2007 -0400
    Found a bug in the way the DHCP Request packet is built, where the IP address
    that is offered by the server is bound to prematurely. This patch is a fix of
    that bug where the IP address offered by the DHCP server is not used until
    after the DHCP ACK from the server is received.
Signed-off-by: Justin Flammia <jflammia@savantav.com> 
Signed-off-by: Ben Warren <bwarren@qstreams.com> 
Wolfgang Denk  [Thu, 1 Nov 2007 21:58:59 +0000  (22:58 +0100)] 
Merge branch 'master' of git://www.denx.de/git/u-boot-coldfire
Wolfgang Denk  [Thu, 1 Nov 2007 21:57:33 +0000  (22:57 +0100)] 
Merge branch 'master' of git://www.denx.de/git/u-boot-arm
Wolfgang Denk  [Thu, 1 Nov 2007 21:56:16 +0000  (22:56 +0100)] 
Merge branch 'master' of git://www.denx.de/git/u-boot-tq-group
Wolfgang Denk  [Thu, 1 Nov 2007 21:55:23 +0000  (22:55 +0100)] 
Merge branch 'master' of /home/wd/git/u-boot/custodians
Wolfgang Denk  [Thu, 1 Nov 2007 21:54:31 +0000  (22:54 +0100)] 
Merge branch 'master' of git://www.denx.de/git/u-boot-mips
Wolfgang Denk  [Thu, 1 Nov 2007 21:38:01 +0000  (22:38 +0100)] 
Merge branch 'master' of git://www.denx.de/git/u-boot-mpc85xx
Justin Flammia  [Mon, 29 Oct 2007 21:40:35 +0000  (17:40 -0400)] 
DHCP Client Fix
This is a multi-part message in MIME format.
commit 
e6e505eae94ed721e123e177489291fc4544b7b8 
Author: Justin Flammia <jflammia@savantav.com>
Date:   Mon Oct 29 17:19:03 2007 -0400
    Found a bug in the way the DHCP Request packet is built, where the IP address
    that is offered by the server is bound to prematurely. This patch is a fix of
    that bug where the IP address offered by the DHCP server is not used until
    after the DHCP ACK from the server is received.
Signed-off-by: Justin Flammia <jflammia@savantav.com> 
Signed-off-by: Ben Warren <bwarren@qstreams.com> 
Stefan Roese  [Sat, 27 Oct 2007 11:43:40 +0000  (13:43 +0200)] 
Merge git://www.denx.de/git/u-boot
TsiChungLiew  [Thu, 25 Oct 2007 22:16:22 +0000  (17:16 -0500)] 
ColdFire 54455: Fix correct boot location for atmel and intelSigned-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>