[U-Boot-Users] Pull request u-boot-blackfin.git

2008-03-15 Thread Mike Frysinger
The following changes since commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0: Wolfgang Denk (1): tools/setlocalversion: use a git-describe-ish format are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git master Mike Frysinger (6): Blackfin: move bootl

Re: [U-Boot-Users] [PATCH 2/2] 8xx: Update of support on 8xx

2008-03-15 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Resubmit- previous patch mangled by milter @ 80 characters. > > This patch does some shifting around of OF support on 8xx. What problem is this supposed to fix? > index 11b0893..070babc 100644 > --- a/cpu/mpc8xx/speed.c > +++ b/cpu/mpc8xx/speed.c > @@

Re: [U-Boot-Users] [PATCH] Flex-OneNAND booting support

2008-03-15 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Flex-OneNAND booting support > > Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array using > a NOR Flash interface. This on-chip integration enables system designers to > reduce external system logic and use high-density NAND Flash

Re: [U-Boot-Users] [PATCH] cpu/mpc8260/: ported new fdt code from cpu/mpc83xx/

2008-03-15 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > --- a/cpu/mpc8260/Makefile > +++ b/cpu/mpc8260/Makefile > @@ -28,7 +28,7 @@ LIB = $(obj)lib$(CPU).a > START= start.o kgdb.o > COBJS= traps.o serial_smc.o serial_scc.o cpu.o cpu_init.o speed.o \ > interrupts.o ether_scc.o ether

Re: [U-Boot-Users] [PATCH] mgcoge: update defaultkonfiguration

2008-03-15 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Hello, > > following patch fixes the Defaultkonfiguration for > the mgcoge board from keymile. > > Signed-off-by: Heiko Schocher <[EMAIL PROTECTED]> Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang De

Re: [U-Boot-Users] [PATCH] Add support for Intersil isl1208 RTC

2008-03-15 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > Resubmitted with fixes regarding comments from Jean-Christophe > PLAGNIOL-VILLARD > > > Signed-off-by: Tor Krill <[EMAIL PROTECTED]> > --- > README|1 + > drivers/rtc/Makefile |1 + > drivers/rtc/isl1208.c | 167 > +++

Re: [U-Boot-Users] [PATCH] cramfs: Fix ifdef

2008-03-15 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > > diff --git a/fs/cramfs/uncompress.c b/fs/cramfs/uncompress.c Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zunde

Re: [U-Boot-Users] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git

2008-03-15 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > The following changes since commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0: > Wolfgang Denk (1): > tools/setlocalversion: use a git-describe-ish format > > are available in the git repository at: > > git://www.denx.de/git/u-boot-ppc4xx.git

Re: [U-Boot-Users] [PATCH] Add support for setting the I2C bus speed in fsl_i2c.c

2008-03-15 Thread Timur Tabi
Jean-Christophe PLAGNIOL-VILLARD wrote: >> This patch is for U-Boot 1.3.3. It affects 83xx, 85xx, and 86xx. >> >> #endif /* CONFIG_HARD_I2C */ >> #endif /* CONFIG_FSL_I2C */ > Could you btw move this to the Makefile If I did, then I'd be doing two completely different things in one patch. I

[U-Boot-Users] [PATCH] cramfs: Fix ifdef

2008-03-15 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> diff --git a/fs/cramfs/uncompress.c b/fs/cramfs/uncompress.c index 2e906eb..a9c0b7d 100644 --- a/fs/cramfs/uncompress.c +++ b/fs/cramfs/uncompress.c @@ -25,7 +25,7 @@ #include #include -#if defined(CONFIG_CMD_JFFS2) +#if def

Re: [U-Boot-Users] Possible memory leak in cpu/ppc4xx/4xx_enet.c

2008-03-15 Thread Dave Littell
Stefan Roese wrote: > Dave, > > On Saturday 15 March 2008, Dave Littell wrote: >> I've seen an issue with my 1.3.1-based port of U-Boot where a relatively >> large number of pings issued from the command line will ultimately fail >> with the message: >> >> Cannot allocate private hw data for eth_d

[U-Boot-Users] [PATCH] Add support for Intersil isl1208 RTC

2008-03-15 Thread Tor Krill
Resubmitted with fixes regarding comments from Jean-Christophe PLAGNIOL-VILLARD Signed-off-by: Tor Krill <[EMAIL PROTECTED]> --- README|1 + drivers/rtc/Makefile |1 + drivers/rtc/isl1208.c | 167 + 3 files changed, 169 i

Re: [U-Boot-Users] [RFC] Host tool to perform semiautomatic updates

2008-03-15 Thread Markus Klotzbücher
llandre writes: > I think Python could be a very good solution. Since I never worked with > it, I ask just few questions: > 1) for Windows platform, is possible to generate one single .exe file > taht includes all the required stuff (such as libraries and runtime > components)? If not, it is

Re: [U-Boot-Users] [RFC] Host tool to perform semiautomatic updates

2008-03-15 Thread llandre
>> I thought about expect/cygwin but in my opinion is too hard to use for >> the average Windows operator who expects just to: >> - install the application by running an .exe or unzipping a .zip >> - launching the application >> - press a couple of buttons on GUI and see the result. >> > > I

Re: [U-Boot-Users] [PATCH] Add support for setting the I2C bus speed in fsl_i2c.c

2008-03-15 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:45 Fri 14 Mar , Timur Tabi wrote: > Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying > the I2C bus speed. Current 8[356]xx boards define the CFG_I2C_SPEED macro, > but fsl_i2c.c ignores it and uses conservative value when programming the > I2C bus speed. > >

[U-Boot-Users] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git

2008-03-15 Thread Stefan Roese
The following changes since commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0: Wolfgang Denk (1): tools/setlocalversion: use a git-describe-ish format are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git master Niklaus Giger (5): ppc4xx: HCU4/5. Use FLA