mbox

[U-Boot,PULL] u-boot-usb/master

Message ID 201304101905.02262.marex@denx.de
State Accepted
Delegated to: Tom Rini
Headers show

Pull-request

git://git.denx.de/u-boot-usb.git master

Message

Marek Vasut April 10, 2013, 5:05 p.m. UTC
The following changes since commit 645b271a6039e79b368f027a5624dc0820441733:

  patman: Add Series-process-log tag to sort/uniq change logs (2013-04-08 
15:21:22 -0700)

are available in the git repository at:

  git://git.denx.de/u-boot-usb.git master

for you to fetch changes up to dda48e8efff878e51e986befd9c6c3780b4757a7:

  powerpc/usb: Fix usb device-tree fix-up (2013-04-10 15:22:25 +0200)

----------------------------------------------------------------
Pantelis Antoniou (4):
      dfu: Support larger than memory transfers.
      dfu: NAND specific routines for DFU operation
      am335x_evm: Define CONFIG_SYS_CACHELINE_SIZE
      am335x_evm: Enable DFU for NAND and MMC, provide example alt_infos

Tom Rini (5):
      README: Document current DFU CONFIG options
      dfu: Change indentation of defines in <dfu.h>
      nand: Extend nand_(read|write)_skip_bad with *actual and limit parameters
      cmd_nand.c: Fix CONFIG_CMD_NAND_YAFFS
      am335x_evm: Add CONFIG_CMD_MTDPARTS and relevant defaults

ramneek mehresh (1):
      powerpc/usb: Fix usb device-tree fix-up

 README                         |   23 +++++++++
 arch/powerpc/cpu/mpc8xxx/fdt.c |    5 ++
 board/cm_t35/cm_t35.c          |    2 +
 common/cmd_nand.c              |   55 +++++++++++---------
 common/env_nand.c              |    3 +-
 drivers/dfu/Makefile           |    1 +
 drivers/dfu/dfu.c              |  249 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------
 drivers/dfu/dfu_mmc.c          |  108 ++++++++++++++++++++++++++-------------
 drivers/dfu/dfu_nand.c         |  187 
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/mtd/nand/nand_util.c   |   68 ++++++++++++++++++++++---
 include/configs/am335x_evm.h   |   52 ++++++++++++++++++-
 include/dfu.h                  |   53 +++++++++++++++++--
 include/nand.h                 |    4 +-
 13 files changed, 681 insertions(+), 129 deletions(-)
 create mode 100644 drivers/dfu/dfu_nand.c

Comments

Tom Rini April 12, 2013, 6:42 p.m. UTC | #1
On Wed, Apr 10, 2013 at 07:05:02PM +0200, Marek Vasut wrote:

> The following changes since commit 645b271a6039e79b368f027a5624dc0820441733:
> 
>   patman: Add Series-process-log tag to sort/uniq change logs (2013-04-08 
> 15:21:22 -0700)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-usb.git master
> 
> for you to fetch changes up to dda48e8efff878e51e986befd9c6c3780b4757a7:
> 
>   powerpc/usb: Fix usb device-tree fix-up (2013-04-10 15:22:25 +0200)
> 
> ----------------------------------------------------------------
> Pantelis Antoniou (4):
>       dfu: Support larger than memory transfers.
>       dfu: NAND specific routines for DFU operation
>       am335x_evm: Define CONFIG_SYS_CACHELINE_SIZE
>       am335x_evm: Enable DFU for NAND and MMC, provide example alt_infos
> 
> Tom Rini (5):
>       README: Document current DFU CONFIG options
>       dfu: Change indentation of defines in <dfu.h>
>       nand: Extend nand_(read|write)_skip_bad with *actual and limit parameters
>       cmd_nand.c: Fix CONFIG_CMD_NAND_YAFFS
>       am335x_evm: Add CONFIG_CMD_MTDPARTS and relevant defaults
> 
> ramneek mehresh (1):
>       powerpc/usb: Fix usb device-tree fix-up
> 
>  README                         |   23 +++++++++
>  arch/powerpc/cpu/mpc8xxx/fdt.c |    5 ++
>  board/cm_t35/cm_t35.c          |    2 +
>  common/cmd_nand.c              |   55 +++++++++++---------
>  common/env_nand.c              |    3 +-
>  drivers/dfu/Makefile           |    1 +
>  drivers/dfu/dfu.c              |  249 
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------
>  drivers/dfu/dfu_mmc.c          |  108 ++++++++++++++++++++++++++-------------
>  drivers/dfu/dfu_nand.c         |  187 
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  drivers/mtd/nand/nand_util.c   |   68 ++++++++++++++++++++++---
>  include/configs/am335x_evm.h   |   52 ++++++++++++++++++-
>  include/dfu.h                  |   53 +++++++++++++++++--
>  include/nand.h                 |    4 +-
>  13 files changed, 681 insertions(+), 129 deletions(-)
>  create mode 100644 drivers/dfu/dfu_nand.c

For the record, applied to u-boot/master, thanks!