From: Tom <Tom.Rix@windriver.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Please pull u-boot-ti master v2
Date: Sat, 17 Oct 2009 17:09:39 -0500 [thread overview]
Message-ID: <4ADA40A3.9020108@windriver.com> (raw)
In-Reply-To: <1255525186-25168-1-git-send-email-s-paulraj@ti.com>
s-paulraj at ti.com wrote:
> Tom,
>
> To the best of my knowledge, the final version of patches for
> new boards were submitted after the merge window ended but the
> initial versions were submitted before the merge window ended.
> Also there are fixes for various compilation warnings.
> This pull request will result in 1 new compliation warning.
> This is due to SDP 3430 using a deprecated NET driver.
> I beleive it is being worked on by Nishanth. Any patch from
> him will be on top of the existing SDP 3430 support.
>
> Thanks,
> Sandeep
>
I have pulled this into arm/master-sync.
Please check to see that all you expect is there.
Tom
> The following changes since commit 5415337f0746123c75b28044ea487171b79a86a2:
> Simon Kagstrom (1):
> arm: Correct build with CONFIG_SYS_HUSH_PARSER set
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-ti master
>
> David Brownell (1):
> TI OMAP3 SDP3430: Initial Support
>
> Nishanth Menon (4):
> OMAP3: export enable_gpmc_cs_config to board files
> OMAP3: fix warnings when NAND/ONENAND is not used
> OMAP3: Fix SDRC init
> TI OMAP3: make gpmc_config as const
>
> Sandeep Paulraj (13):
> TI DaVinci DM355: Fix Compilation warning for DM355 EVM
> TI DaVinci DM365: Fix Compilation warning for DM365 EVM
> TI DaVinci DM646x: Adding initial support for DM6467 EVM
> TI: DaVinci: DM355 Leopard board support
> TI DaVinci: Maintainer for DM355 and DM365 EVM
> TI: OMAP3: Remove SZ_xx references
> TI DaVinci DM355: Add Config option for 64 bit Support
> TI DaVinci DM365: Add Config option for 64 bit Support
> TI DaVinci DVEVM: Add Config option for 64 bit Support
> TI DaVinci Sonata: Add Config option for 64 bit Support
> TI DaVinci: DM355 Leopard: Fix compilation warning
> TI DaVinci: Fix DM6467 EVM Compilation Warning
> TI DaVinci: Adding Copyright for DM365 EVM
>
> Steve Sakoman (2):
> TI: OMAP3: Refactors the SM911x driver
> OMAP3: Update Overo and Beagle environment
>
> Tom Rix (1):
> Zoom2 Fix serial gpmc setup
>
> MAINTAINERS | 8 +
> MAKEALL | 3 +
> Makefile | 9 +
> board/davinci/dm355evm/dm355evm.c | 4 +-
> board/davinci/dm355leopard/Makefile | 52 ++++
> board/davinci/dm355leopard/config.mk | 6 +
> board/davinci/dm355leopard/dm355leopard.c | 98 +++++++
> board/davinci/dm365evm/dm365evm.c | 5 +-
> board/davinci/dm6467evm/Makefile | 52 ++++
> board/davinci/dm6467evm/config.mk | 2 +
> board/davinci/dm6467evm/dm6467evm.c | 31 +++
> board/logicpd/zoom2/zoom2.c | 5 +-
> board/ti/sdp3430/Makefile | 49 ++++
> board/ti/sdp3430/config.mk | 33 +++
> board/ti/sdp3430/sdp.c | 204 ++++++++++++++
> board/ti/sdp3430/sdp.h | 417 +++++++++++++++++++++++++++++
> cpu/arm_cortexa8/omap3/mem.c | 21 +-
> cpu/arm_cortexa8/omap3/sys_info.c | 2 +-
> drivers/net/smc911x.c | 12 +-
> include/asm-arm/arch-davinci/hardware.h | 2 +
> include/asm-arm/arch-omap3/cpu.h | 1 +
> include/asm-arm/arch-omap3/mem.h | 8 +-
> include/asm-arm/arch-omap3/sys_proto.h | 2 +
> include/configs/davinci_dm355evm.h | 1 +
> include/configs/davinci_dm355leopard.h | 162 +++++++++++
> include/configs/davinci_dm365evm.h | 2 +
> include/configs/davinci_dm6467evm.h | 132 +++++++++
> include/configs/davinci_dvevm.h | 1 +
> include/configs/davinci_sonata.h | 1 +
> include/configs/devkit8000.h | 15 +-
> include/configs/omap3_beagle.h | 42 ++--
> include/configs/omap3_evm.h | 15 +-
> include/configs/omap3_overo.h | 42 ++--
> include/configs/omap3_pandora.h | 15 +-
> include/configs/omap3_sdp3430.h | 369 +++++++++++++++++++++++++
> include/configs/omap3_zoom1.h | 15 +-
> include/configs/omap3_zoom2.h | 15 +-
> 37 files changed, 1754 insertions(+), 99 deletions(-)
> create mode 100644 board/davinci/dm355leopard/Makefile
> create mode 100644 board/davinci/dm355leopard/config.mk
> create mode 100644 board/davinci/dm355leopard/dm355leopard.c
> create mode 100644 board/davinci/dm6467evm/Makefile
> create mode 100644 board/davinci/dm6467evm/config.mk
> create mode 100644 board/davinci/dm6467evm/dm6467evm.c
> create mode 100644 board/ti/sdp3430/Makefile
> create mode 100644 board/ti/sdp3430/config.mk
> create mode 100644 board/ti/sdp3430/sdp.c
> create mode 100644 board/ti/sdp3430/sdp.h
> create mode 100644 include/configs/davinci_dm355leopard.h
> create mode 100644 include/configs/davinci_dm6467evm.h
> create mode 100644 include/configs/omap3_sdp3430.h
next prev parent reply other threads:[~2009-10-17 22:09 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-14 12:59 [U-Boot] Please pull u-boot-ti master v2 s-paulraj at ti.com
2009-10-17 22:09 ` Tom [this message]
2009-10-17 22:24 ` Paulraj, Sandeep
2009-10-17 22:36 ` Tom
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4ADA40A3.9020108@windriver.com \
--to=tom.rix@windriver.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.