* [U-Boot] Pull request: u-boot-arm (master + next)
@ 2010-11-30 20:49 Wolfgang Denk
2010-11-30 21:14 ` Wolfgang Denk
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Wolfgang Denk @ 2010-11-30 20:49 UTC (permalink / raw)
To: u-boot
The following changes since commit d0d2271f8c62e830ec65fb069b6d12dd708e3e2f:
Prepare v2010.12-rc2 (2010-11-28 19:48:11 +0100)
are available in the git repository at:
git://git.denx.de/u-boot-arm.git master
Dirk Behme (4):
OMAP4: SDP4430: Disable CMD_NFS
OMAP3: SDP3430: Fix ARM relocation support
OMAP3: Zoom1: Fix ARM relocation support
OMAP3: Zoom2: Fix ARM relocation support
Enric Balletbo i Serra (1):
ARMV7: OMAP3: Fix build failure for igep0030 machine
Minkyu Kang (6):
Merge branch 'master' of git://git.denx.de/u-boot-arm
Merge branch 'master' of git://git.denx.de/u-boot-arm
Merge branch 'master' of git://git.denx.de/u-boot-arm
S5P: smdkc100: fix for relocation
S5P: goni: fix for relocation
ARMV7: S5P: timer: get the count_value from register when call udelay
Sanjeev Premi (1):
omap3evm: Use GENERATED_GBL_DATA_SIZE
Vaibhav Hiremath (3):
AM3517:Fix for ARM Relocation support
AM3517:Build FIX: undef CONFIG_CMD_NFS support
AM3517:EMIF4: fix SDRAM size to 256Mb
Wolfgang Denk (1):
Merge branch 'master' of git://git.denx.de/u-boot-samsung
arch/arm/cpu/armv7/omap3/emif4.c | 5 +++--
arch/arm/cpu/armv7/s5p-common/timer.c | 18 +++++++++---------
board/logicpd/am3517evm/config.mk | 2 +-
board/logicpd/zoom1/config.mk | 2 +-
board/logicpd/zoom2/config.mk | 2 +-
board/samsung/goni/goni.c | 10 ++++++++--
board/samsung/smdkc100/smdkc100.c | 10 +++++++---
board/ti/sdp3430/config.mk | 2 +-
include/configs/am3517_evm.h | 7 +++++++
include/configs/igep0030.h | 1 +
include/configs/omap3_evm.h | 6 +++++-
include/configs/omap3_sdp3430.h | 6 ++++++
include/configs/omap3_zoom1.h | 6 ++++++
include/configs/omap3_zoom2.h | 6 ++++++
include/configs/omap4_sdp4430.h | 1 +
include/configs/s5p_goni.h | 2 ++
include/configs/smdkc100.h | 2 ++
17 files changed, 67 insertions(+), 21 deletions(-)
The following changes since commit c87f6457bb9cb465e9630b00b4c824847a62c6c5:
ext2: constify file/dir names (2010-11-28 21:58:51 +0100)
are available in the git repository at:
git://git.denx.de/u-boot-arm.git next
Stefano Babic (3):
da850: Enable SPI Flash
Davinci 8xx: Move common functions to share code
Davinci: add support for the ea20 board
Sudhakar Rajashekhara (2):
da8xx: Add cpu_is_da8xx macros
da850: Add RMII support for EMAC
Sughosh Ganu (3):
Move and rename common headers from under
Remove board_init_f function from nand_boot.c
Add board support for hawkboard
MAINTAINERS | 6 +
.../arm/include/asm/arch-davinci/davinci_misc.h | 15 ++
arch/arm/include/asm/arch-davinci/hardware.h | 37 ++++-
board/davinci/common/Makefile | 2 +-
board/davinci/common/davinci_pinmux.c | 105 ++++++++++
board/davinci/common/misc.c | 99 ++++------
board/davinci/da8xxevm/Makefile | 2 +-
board/davinci/da8xxevm/common.c | 55 ------
board/davinci/da8xxevm/common.h | 30 ---
board/davinci/da8xxevm/da830evm.c | 3 +-
board/davinci/da8xxevm/da850evm.c | 115 +++++++++++-
board/davinci/da8xxevm/hawkboard.c | 68 +++++++
board/davinci/da8xxevm/hawkboard_nand_spl.c | 157 +++++++++++++++
board/davinci/dm355evm/dm355evm.c | 2 +-
board/davinci/dm355leopard/dm355leopard.c | 2 +-
board/davinci/dm365evm/dm365evm.c | 2 +-
board/davinci/dvevm/dvevm.c | 2 +-
board/davinci/ea20/Makefile | 53 +++++
board/davinci/ea20/ea20.c | 196 +++++++++++++++++++
board/davinci/schmoogie/schmoogie.c | 2 +-
board/davinci/sffsdr/sffsdr.c | 2 +-
board/davinci/sonata/sonata.c | 2 +-
board/samsung/smdk6400/smdk6400_nand_spl.c | 37 ++++
boards.cfg | 4 +
doc/README.hawkboard | 93 +++++++++
drivers/net/davinci_emac.c | 41 ++++-
include/configs/da850evm.h | 29 +++
include/configs/ea20.h | 192 ++++++++++++++++++
include/configs/hawkboard.h | 206 ++++++++++++++++++++
nand_spl/board/davinci/da8xxevm/Makefile | 141 +++++++++++++
nand_spl/board/davinci/da8xxevm/u-boot.lds | 75 +++++++
nand_spl/board/samsung/smdk6400/Makefile | 6 +-
nand_spl/nand_boot.c | 9 +-
33 files changed, 1615 insertions(+), 175 deletions(-)
rename board/davinci/common/misc.h => arch/arm/include/asm/arch-davinci/davinci_misc.h (80%)
create mode 100644 board/davinci/common/davinci_pinmux.c
delete mode 100644 board/davinci/da8xxevm/common.c
delete mode 100644 board/davinci/da8xxevm/common.h
create mode 100644 board/davinci/da8xxevm/hawkboard.c
create mode 100644 board/davinci/da8xxevm/hawkboard_nand_spl.c
create mode 100644 board/davinci/ea20/Makefile
create mode 100644 board/davinci/ea20/ea20.c
create mode 100644 board/samsung/smdk6400/smdk6400_nand_spl.c
create mode 100644 doc/README.hawkboard
create mode 100644 include/configs/ea20.h
create mode 100644 include/configs/hawkboard.h
create mode 100644 nand_spl/board/davinci/da8xxevm/Makefile
create mode 100644 nand_spl/board/davinci/da8xxevm/u-boot.lds
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Of all the things I've lost, I miss my mind the most.
^ permalink raw reply [flat|nested] 8+ messages in thread* [U-Boot] Pull request: u-boot-arm (master + next)
2010-11-30 20:49 [U-Boot] Pull request: u-boot-arm (master + next) Wolfgang Denk
@ 2010-11-30 21:14 ` Wolfgang Denk
2010-12-01 0:58 ` Paulraj, Sandeep
2010-12-01 5:35 ` Dirk Behme
2 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2010-11-30 21:14 UTC (permalink / raw)
To: u-boot
Dear Wolfgang Denk,
In message <20101130204931.99BF511D94F7@gemini.denx.de> you wrote:
> The following changes since commit d0d2271f8c62e830ec65fb069b6d12dd708e3e2f:
>
> Prepare v2010.12-rc2 (2010-11-28 19:48:11 +0100)
>
> are available in the git repository at:
> git://git.denx.de/u-boot-arm.git master
>
> Dirk Behme (4):
> OMAP4: SDP4430: Disable CMD_NFS
> OMAP3: SDP3430: Fix ARM relocation support
> OMAP3: Zoom1: Fix ARM relocation support
> OMAP3: Zoom2: Fix ARM relocation support
>
> Enric Balletbo i Serra (1):
> ARMV7: OMAP3: Fix build failure for igep0030 machine
>
> Minkyu Kang (6):
> Merge branch 'master' of git://git.denx.de/u-boot-arm
> Merge branch 'master' of git://git.denx.de/u-boot-arm
> Merge branch 'master' of git://git.denx.de/u-boot-arm
> S5P: smdkc100: fix for relocation
> S5P: goni: fix for relocation
> ARMV7: S5P: timer: get the count_value from register when call udelay
>
> Sanjeev Premi (1):
> omap3evm: Use GENERATED_GBL_DATA_SIZE
>
> Vaibhav Hiremath (3):
> AM3517:Fix for ARM Relocation support
> AM3517:Build FIX: undef CONFIG_CMD_NFS support
> AM3517:EMIF4: fix SDRAM size to 256Mb
>
> Wolfgang Denk (1):
> Merge branch 'master' of git://git.denx.de/u-boot-samsung
>
> arch/arm/cpu/armv7/omap3/emif4.c | 5 +++--
> arch/arm/cpu/armv7/s5p-common/timer.c | 18 +++++++++---------
> board/logicpd/am3517evm/config.mk | 2 +-
> board/logicpd/zoom1/config.mk | 2 +-
> board/logicpd/zoom2/config.mk | 2 +-
> board/samsung/goni/goni.c | 10 ++++++++--
> board/samsung/smdkc100/smdkc100.c | 10 +++++++---
> board/ti/sdp3430/config.mk | 2 +-
> include/configs/am3517_evm.h | 7 +++++++
> include/configs/igep0030.h | 1 +
> include/configs/omap3_evm.h | 6 +++++-
> include/configs/omap3_sdp3430.h | 6 ++++++
> include/configs/omap3_zoom1.h | 6 ++++++
> include/configs/omap3_zoom2.h | 6 ++++++
> include/configs/omap4_sdp4430.h | 1 +
> include/configs/s5p_goni.h | 2 ++
> include/configs/smdkc100.h | 2 ++
> 17 files changed, 67 insertions(+), 21 deletions(-)
>
>
>
>
> The following changes since commit c87f6457bb9cb465e9630b00b4c824847a62c6c5:
>
> ext2: constify file/dir names (2010-11-28 21:58:51 +0100)
>
> are available in the git repository at:
> git://git.denx.de/u-boot-arm.git next
>
> Stefano Babic (3):
> da850: Enable SPI Flash
> Davinci 8xx: Move common functions to share code
> Davinci: add support for the ea20 board
>
> Sudhakar Rajashekhara (2):
> da8xx: Add cpu_is_da8xx macros
> da850: Add RMII support for EMAC
>
> Sughosh Ganu (3):
> Move and rename common headers from under
> Remove board_init_f function from nand_boot.c
> Add board support for hawkboard
>
> MAINTAINERS | 6 +
> .../arm/include/asm/arch-davinci/davinci_misc.h | 15 ++
> arch/arm/include/asm/arch-davinci/hardware.h | 37 ++++-
> board/davinci/common/Makefile | 2 +-
> board/davinci/common/davinci_pinmux.c | 105 ++++++++++
> board/davinci/common/misc.c | 99 ++++------
> board/davinci/da8xxevm/Makefile | 2 +-
> board/davinci/da8xxevm/common.c | 55 ------
> board/davinci/da8xxevm/common.h | 30 ---
> board/davinci/da8xxevm/da830evm.c | 3 +-
> board/davinci/da8xxevm/da850evm.c | 115 +++++++++++-
> board/davinci/da8xxevm/hawkboard.c | 68 +++++++
> board/davinci/da8xxevm/hawkboard_nand_spl.c | 157 +++++++++++++++
> board/davinci/dm355evm/dm355evm.c | 2 +-
> board/davinci/dm355leopard/dm355leopard.c | 2 +-
> board/davinci/dm365evm/dm365evm.c | 2 +-
> board/davinci/dvevm/dvevm.c | 2 +-
> board/davinci/ea20/Makefile | 53 +++++
> board/davinci/ea20/ea20.c | 196 +++++++++++++++++++
> board/davinci/schmoogie/schmoogie.c | 2 +-
> board/davinci/sffsdr/sffsdr.c | 2 +-
> board/davinci/sonata/sonata.c | 2 +-
> board/samsung/smdk6400/smdk6400_nand_spl.c | 37 ++++
> boards.cfg | 4 +
> doc/README.hawkboard | 93 +++++++++
> drivers/net/davinci_emac.c | 41 ++++-
> include/configs/da850evm.h | 29 +++
> include/configs/ea20.h | 192 ++++++++++++++++++
> include/configs/hawkboard.h | 206 ++++++++++++++++++++
> nand_spl/board/davinci/da8xxevm/Makefile | 141 +++++++++++++
> nand_spl/board/davinci/da8xxevm/u-boot.lds | 75 +++++++
> nand_spl/board/samsung/smdk6400/Makefile | 6 +-
> nand_spl/nand_boot.c | 9 +-
> 33 files changed, 1615 insertions(+), 175 deletions(-)
> rename board/davinci/common/misc.h => arch/arm/include/asm/arch-davinci/davinci_misc.h (80%)
> create mode 100644 board/davinci/common/davinci_pinmux.c
> delete mode 100644 board/davinci/da8xxevm/common.c
> delete mode 100644 board/davinci/da8xxevm/common.h
> create mode 100644 board/davinci/da8xxevm/hawkboard.c
> create mode 100644 board/davinci/da8xxevm/hawkboard_nand_spl.c
> create mode 100644 board/davinci/ea20/Makefile
> create mode 100644 board/davinci/ea20/ea20.c
> create mode 100644 board/samsung/smdk6400/smdk6400_nand_spl.c
> create mode 100644 doc/README.hawkboard
> create mode 100644 include/configs/ea20.h
> create mode 100644 include/configs/hawkboard.h
> create mode 100644 nand_spl/board/davinci/da8xxevm/Makefile
> create mode 100644 nand_spl/board/davinci/da8xxevm/u-boot.lds
Both applied.
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
I usually tell my classes "if you are using @ and [] together in this
class, you will almost certainly NOT get what you want. That's going
down the wrong tunnel. There's no cheese at the end of that tunnel."
-- Randal L. Schwartz in <8czptuomey.fsf@gadget.cscaper.com>
^ permalink raw reply [flat|nested] 8+ messages in thread* [U-Boot] Pull request: u-boot-arm (master + next)
2010-11-30 20:49 [U-Boot] Pull request: u-boot-arm (master + next) Wolfgang Denk
2010-11-30 21:14 ` Wolfgang Denk
@ 2010-12-01 0:58 ` Paulraj, Sandeep
2010-12-01 7:36 ` Wolfgang Denk
2010-12-01 5:35 ` Dirk Behme
2 siblings, 1 reply; 8+ messages in thread
From: Paulraj, Sandeep @ 2010-12-01 0:58 UTC (permalink / raw)
To: u-boot
>
> The following changes since commit
> d0d2271f8c62e830ec65fb069b6d12dd708e3e2f:
>
> Prepare v2010.12-rc2 (2010-11-28 19:48:11 +0100)
>
> are available in the git repository at:
> git://git.denx.de/u-boot-arm.git master
>
> Dirk Behme (4):
> OMAP4: SDP4430: Disable CMD_NFS
> OMAP3: SDP3430: Fix ARM relocation support
> OMAP3: Zoom1: Fix ARM relocation support
> OMAP3: Zoom2: Fix ARM relocation support
>
> Enric Balletbo i Serra (1):
> ARMV7: OMAP3: Fix build failure for igep0030 machine
>
> Minkyu Kang (6):
> Merge branch 'master' of git://git.denx.de/u-boot-arm
> Merge branch 'master' of git://git.denx.de/u-boot-arm
> Merge branch 'master' of git://git.denx.de/u-boot-arm
> S5P: smdkc100: fix for relocation
> S5P: goni: fix for relocation
> ARMV7: S5P: timer: get the count_value from register when call
> udelay
>
> Sanjeev Premi (1):
> omap3evm: Use GENERATED_GBL_DATA_SIZE
>
> Vaibhav Hiremath (3):
> AM3517:Fix for ARM Relocation support
> AM3517:Build FIX: undef CONFIG_CMD_NFS support
> AM3517:EMIF4: fix SDRAM size to 256Mb
>
> Wolfgang Denk (1):
> Merge branch 'master' of git://git.denx.de/u-boot-samsung
>
Wolfgang,
I've had a long day but I see that you have updated the next tree but it appears that the master has not been updated.
Am I missing something?
Regards,
Sandeep
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] Pull request: u-boot-arm (master + next)
2010-12-01 0:58 ` Paulraj, Sandeep
@ 2010-12-01 7:36 ` Wolfgang Denk
2010-12-01 7:49 ` Paulraj, Sandeep
0 siblings, 1 reply; 8+ messages in thread
From: Wolfgang Denk @ 2010-12-01 7:36 UTC (permalink / raw)
To: u-boot
Dear "Paulraj, Sandeep",
In message <0554BEF07D437848AF01B9C9B5F0BC5DBD6599A7@dlee01.ent.ti.com> you wrote:
>
...
> I've had a long day but I see that you have updated the next tree but it ap=
> pears that the master has not been updated.
Sorry, fixed.
> Am I missing something?
No, this was my fault. Sorry.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
If you fail to plan, plan to fail.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] Pull request: u-boot-arm (master + next)
2010-11-30 20:49 [U-Boot] Pull request: u-boot-arm (master + next) Wolfgang Denk
2010-11-30 21:14 ` Wolfgang Denk
2010-12-01 0:58 ` Paulraj, Sandeep
@ 2010-12-01 5:35 ` Dirk Behme
2010-12-01 7:50 ` Wolfgang Denk
2 siblings, 1 reply; 8+ messages in thread
From: Dirk Behme @ 2010-12-01 5:35 UTC (permalink / raw)
To: u-boot
On 30.11.2010 21:49, Wolfgang Denk wrote:
> The following changes since commit d0d2271f8c62e830ec65fb069b6d12dd708e3e2f:
>
> Prepare v2010.12-rc2 (2010-11-28 19:48:11 +0100)
> ...
Anybody likes to apply
http://lists.denx.de/pipermail/u-boot/2010-November/081033.html
http://lists.denx.de/pipermail/u-boot/2010-November/081034.html
http://lists.denx.de/pipermail/u-boot/2010-November/082654.html
too? This will fix the build of ca9x4_ct_vxp.
Thanks
Dirk
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] Pull request: u-boot-arm (master + next)
2010-12-01 5:35 ` Dirk Behme
@ 2010-12-01 7:50 ` Wolfgang Denk
0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2010-12-01 7:50 UTC (permalink / raw)
To: u-boot
Dear Dirk Behme,
In message <4CF5DEBD.2060207@googlemail.com> you wrote:
> On 30.11.2010 21:49, Wolfgang Denk wrote:
> > The following changes since commit d0d2271f8c62e830ec65fb069b6d12dd708e3e2f:
> >
> > Prepare v2010.12-rc2 (2010-11-28 19:48:11 +0100)
> > ...
>
> Anybody likes to apply
>
> http://lists.denx.de/pipermail/u-boot/2010-November/081033.html
> http://lists.denx.de/pipermail/u-boot/2010-November/081034.html
> http://lists.denx.de/pipermail/u-boot/2010-November/082654.html
>
> too? This will fix the build of ca9x4_ct_vxp.
I will take these.
Note that for me a link to the respective patchwork entries would be
more useful.
Thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
No problem is insoluble.
-- Dr. Janet Wallace, "The Deadly Years", stardate 3479.4
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] Pull request: u-boot-arm (master + next)
@ 2010-12-13 23:01 Wolfgang Denk
0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2010-12-13 23:01 UTC (permalink / raw)
To: u-boot
The following changes since commit ac8983bcba75576c50307b5e8dc8fb848740ee61:
Merge branch 'master' of git://git.denx.de/u-boot-imx (2010-12-09 20:52:44 +0100)
are available in the git repository at:
git://git.denx.de/u-boot-arm.git ..BRANCH.NOT.VERIFIED..
Dirk Behme (1):
OMAP: Timer: Replace bss variable by gd
Nick Thompson (1):
davinci: Rewrite timer.c to use tbl/tbu emulation variables in gd
Nishanth Menon (1):
omap3: emif|sdrc: use a single global data define
Sandeep Paulraj (1):
DaVinci DM6446: Config Update
Wolfgang Denk (1):
ARM: */start.S: use canonical asm syntax
arch/arm/cpu/arm1136/start.S | 2 +-
arch/arm/cpu/arm1176/start.S | 2 +-
arch/arm/cpu/arm720t/start.S | 2 +-
arch/arm/cpu/arm920t/start.S | 2 +-
arch/arm/cpu/arm925t/start.S | 2 +-
arch/arm/cpu/arm926ejs/davinci/timer.c | 77 ++++++++++++--------------------
arch/arm/cpu/arm926ejs/start.S | 2 +-
arch/arm/cpu/arm946es/start.S | 2 +-
arch/arm/cpu/arm_intcm/start.S | 2 +-
arch/arm/cpu/armv7/omap-common/timer.c | 22 +++++-----
arch/arm/cpu/armv7/omap3/emif4.c | 3 +-
arch/arm/cpu/armv7/omap3/sdrc.c | 3 +-
arch/arm/cpu/armv7/start.S | 2 +-
arch/arm/cpu/ixp/start.S | 2 +-
arch/arm/cpu/lh7a40x/start.S | 2 +-
arch/arm/cpu/pxa/start.S | 2 +-
arch/arm/cpu/s3c44b0/start.S | 2 +-
arch/arm/cpu/sa1100/start.S | 2 +-
include/configs/davinci_dvevm.h | 19 +++++---
19 files changed, 66 insertions(+), 86 deletions(-)
The following changes since commit 917a62c0d292d9da45100a76151a9fa2d13a9cdc:
Merge branch 'next' of git://git.denx.de/u-boot into next (2010-12-11 10:35:40 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-arm.git next
Balaji T K (1):
ARMV7: OMAP4: twl6030 add battery charging support
Dirk Behme (1):
OMAP3: SPI driver
board/ti/sdp4430/Makefile | 2 +-
board/ti/sdp4430/cmd_bat.c | 58 +++++++
board/ti/sdp4430/sdp.c | 4 +
drivers/power/twl6030.c | 124 ++++++++++++++-
drivers/spi/Makefile | 1 +
drivers/spi/omap3_spi.c | 352 +++++++++++++++++++++++++++++++++++++++
drivers/spi/omap3_spi.h | 117 +++++++++++++
include/configs/omap3_beagle.h | 2 +
include/configs/omap4_sdp4430.h | 1 +
include/twl6030.h | 45 +++++-
10 files changed, 701 insertions(+), 5 deletions(-)
create mode 100644 board/ti/sdp4430/cmd_bat.c
create mode 100644 drivers/spi/omap3_spi.c
create mode 100644 drivers/spi/omap3_spi.h
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
The speed of time is one second per second.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2010-12-13 23:01 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-30 20:49 [U-Boot] Pull request: u-boot-arm (master + next) Wolfgang Denk
2010-11-30 21:14 ` Wolfgang Denk
2010-12-01 0:58 ` Paulraj, Sandeep
2010-12-01 7:36 ` Wolfgang Denk
2010-12-01 7:49 ` Paulraj, Sandeep
2010-12-01 5:35 ` Dirk Behme
2010-12-01 7:50 ` Wolfgang Denk
-- strict thread matches above, loose matches on Subject: below --
2010-12-13 23:01 Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox