[U-Boot] Pull request for u-boot-marvell.git

Albert ARIBAUD albert.u.boot at aribaud.net
Thu Jul 5 10:40:47 CEST 2012


Hi Prafulla,

On Tue, 3 Jul 2012 04:59:21 -0700, Prafulla Wadaskar
<prafulla at marvell.com> wrote:
> Dear Albert
> 
> Please kindly pull
> The following changes since commit
> 3e0cac6b5158b22248f57cdf7769bf8d610fec5e: Rajeshwari Shinde (1):
>         EXYNOS: SMDK5250: Enable the pinmux setup
> 
> are available in the git repository at:
> 
>   u-boot-marvell.git ..BRANCH.NOT.VERIFIED..

Seems the branch was not pushed at time of pull request... And then
current marvell master has one more commit than what's listed below.
Can you re-issue a (rebased and) updated pull request? Thanks in
advance.

> Holger Brunck (7):
>       arm/km: add board type to boards.cfg
>       arm/km: add piggy mac adress offset for mgcoge3un
>       arm/km: rename CONFIG option CONFIG_KM_DEF_ENV_UPDATE
>       arm/km: use ARRAY_SIZE macro
>       arm/km: fix wrong comment in SDRAM config for mgcoge3un
>       arm/km: change maintainer for mgcoge3un
>       arm/km: remove CONFIG_RESET_PHY_R
> 
> Luka Perkov (1):
>       kwboot: boot kirkwood SoCs over a serial link
> 
> Michael Walle (4):
>       lib: add rand() function
>       net: use common rand()/srand() functions
>       net: add helper to generate random mac address
>       Kirkwood: add lschlv2 and lsxhl board support
> 
> Simon Guinot (3):
>       lacie_kw: fix SDRAM banks number for net2big_v2
>       lacie_kw: fix CONFIG_SYS_KWD_CONFIG for inetspace_v2
>       ARM: don't probe PHY address for LaCie boards
> 
> Valentin Longchamp (9):
>       arm/km: enable mii cmd
>       km_arm: use filesize for erase in update command
>       kirkwood: add save functionality kirkwood_mpp_conf function
>       kirkwood: fix calls to kirkwood_mpp_conf
>       kw_spi: backup and reset the MPP of the chosen CS pin
>       kw_spi: support spi_claim/release_bus functions
>       kw_spi: add weak functions board_spi_claim/release_bus
>       arm/kirkwood: protect the ENV_SPI #defines
>       arm/km: use spi claim bus to switch between SPI and NAND
> 
>  MAINTAINERS                                     |    7 +-
>  arch/arm/cpu/arm926ejs/kirkwood/mpp.c           |   10 +-
>  arch/arm/include/asm/arch-kirkwood/config.h     |   12 +-
>  arch/arm/include/asm/arch-kirkwood/mpp.h        |    2 +-
>  arch/arm/include/asm/arch-kirkwood/spi.h        |   11 +
>  board/LaCie/common/common.c                     |   23 +-
>  board/LaCie/common/common.h                     |    2 +-
>  board/LaCie/edminiv2/edminiv2.c                 |    2 +-
>  board/LaCie/net2big_v2/net2big_v2.c             |    4 +-
>  board/LaCie/netspace_v2/netspace_v2.c           |    4 +-
>  board/Marvell/dreamplug/dreamplug.c             |    2 +-
>  board/Marvell/guruplug/guruplug.c               |    2 +-
>  board/Marvell/mv88f6281gtw_ge/mv88f6281gtw_ge.c |    2 +-
>  board/Marvell/openrd/openrd.c                   |    2 +-
>  board/Marvell/rd6281a/rd6281a.c                 |    2 +-
>  board/Marvell/sheevaplug/sheevaplug.c           |    2 +-
>  board/Seagate/dockstar/dockstar.c               |    2 +-
>  board/buffalo/lsxl/Makefile                     |   44 ++
>  board/buffalo/lsxl/kwbimage-lschl.cfg           |  229 +++++++
>  board/buffalo/lsxl/kwbimage-lsxhl.cfg           |  229 +++++++
>  board/buffalo/lsxl/lsxl.c                       |  283 +++++++++
>  board/buffalo/lsxl/lsxl.h                       |   75 +++
>  board/cloudengines/pogo_e02/pogo_e02.c          |    2 +-
>  board/d-link/dns325/dns325.c                    |    2 +-
>  board/keymile/km_arm/km_arm.c                   |   48 +--
>  board/keymile/km_arm/kwbimage-memphis.cfg       |    2 +-
>  board/raidsonic/ib62x0/ib62x0.c                 |    2 +-
>  boards.cfg                                      |    6 +-
>  doc/kwboot.1                                    |   84 +++
>  drivers/spi/kirkwood_spi.c                      |   64 ++-
>  include/common.h                                |   10 +
>  include/configs/km/km_arm.h                     |   15 +-
>  include/configs/km_kirkwood.h                   |    4 +-
>  include/configs/lacie_kw.h                      |    6 +-
>  include/configs/lsxl.h                          |  182 ++++++
>  include/configs/mgcoge3un.h                     |    1 +
>  include/net.h                                   |   17 +
>  lib/Makefile                                    |    5 +-
>  lib/rand.c                                      |   48 ++
>  net/Makefile                                    |    2 -
>  net/eth.c                                       |   22 +
>  net/link_local.c                                |    7 +-
>  net/net_rand.c                                  |   68 --
>  net/net_rand.h                                  |   31 +-
>  tools/Makefile                                  |    6 +
>  tools/kwboot.c                                  |  742
> +++++++++++++++++++++++ 46 files changed, 2143 insertions(+), 184
> deletions(-) create mode 100644 board/buffalo/lsxl/Makefile
>  create mode 100644 board/buffalo/lsxl/kwbimage-lschl.cfg
>  create mode 100644 board/buffalo/lsxl/kwbimage-lsxhl.cfg
>  create mode 100644 board/buffalo/lsxl/lsxl.c
>  create mode 100644 board/buffalo/lsxl/lsxl.h
>  create mode 100644 doc/kwboot.1
>  create mode 100644 include/configs/lsxl.h
>  create mode 100644 lib/rand.c
>  delete mode 100644 net/net_rand.c
>  create mode 100644 tools/kwboot.c
> 
> Regards...
> Prafulla . . .
> 


Amicalement,
-- 
Albert.


More information about the U-Boot mailing list