mbox

[U-Boot] Please pull u-boot-sh

Message ID AANLkTin+mBakREXD7pmUwJWa9NpeKm2G6f3VgjzkGM7y@mail.gmail.com
State Accepted
Headers show

Pull-request

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

Message

Nobuhiro Iwamatsu Jan. 11, 2011, 12:11 p.m. UTC
Dear Wolfgang Denk,

The following changes since commit 0e7790d450000c1a2cda40458adb28707eaa5041:

  LAN91C*: Change chip names to fit the eth_device struct size
(2011-01-10 22:38:36 +0100)

are available in the git repository at:
  git://git.denx.de/u-boot-sh.git master

Nobuhiro Iwamatsu (14):
      sh: serial: Update serial driver for SH
      sh: Add support SH7706
      sh: Add support shmin board
      sh: Add support showing KByte of flash memory size
      sh: Remove SCIF/SCI register infomation
      sh: sh7722: Fix multiple definition of PSDR in serial_sh
      sh: serial_sh: Fix build in serial_sh
      sh: Delete the function that was not necessary
      sh: Divided macro for zImage and add asm/zimage.h
      sh: Add support zimageboot command for Renesas SH
      sh: sh7785lcr: Add support zimageboot
      sh: r2dplus: Add support zimageboot
      sh: Fix build of shmin board
      sh: Add support T-SH7706LSR board

 MAINTAINERS                      |    1 +
 arch/sh/include/asm/cpu_sh3.h    |    6 +-
 arch/sh/include/asm/cpu_sh7706.h |   53 +++
 arch/sh/include/asm/cpu_sh7722.h |   38 --
 arch/sh/include/asm/cpu_sh7750.h |   16 -
 arch/sh/include/asm/cpu_sh7780.h |   21 +--
 arch/sh/include/asm/zimage.h     |   41 +++
 arch/sh/lib/Makefile             |    3 +
 arch/sh/lib/board.c              |    8 +-
 arch/sh/lib/bootm.c              |   21 +-
 arch/sh/lib/zimageboot.c         |   80 +++++
 board/shmin/Makefile             |   49 +++
 board/shmin/config.mk            |   27 ++
 board/shmin/lowlevel_init.S      |   36 ++
 board/shmin/shmin.c              |  108 ++++++
 boards.cfg                       |    1 +
 drivers/serial/serial_sh.c       |  200 ++++-------
 drivers/serial/serial_sh.h       |  690 ++++++++++++++++++++++++++++++++++++++
 include/configs/r2dplus.h        |    1 +
 include/configs/sh7785lcr.h      |    1 +
 include/configs/shmin.h          |  128 +++++++
 21 files changed, 1307 insertions(+), 222 deletions(-)
 create mode 100644 arch/sh/include/asm/cpu_sh7706.h
 create mode 100644 arch/sh/include/asm/zimage.h
 create mode 100644 arch/sh/lib/zimageboot.c
 create mode 100644 board/shmin/Makefile
 create mode 100644 board/shmin/config.mk
 create mode 100644 board/shmin/lowlevel_init.S
 create mode 100644 board/shmin/shmin.c
 create mode 100644 drivers/serial/serial_sh.h
 create mode 100644 include/configs/shmin.h

Comments

Wolfgang Denk Jan. 12, 2011, 11 p.m. UTC | #1
Dear Nobuhiro Iwamatsu,

In message <AANLkTin+mBakREXD7pmUwJWa9NpeKm2G6f3VgjzkGM7y@mail.gmail.com> you wrote:
> Dear Wolfgang Denk,
> 
> The following changes since commit 0e7790d450000c1a2cda40458adb28707eaa5041:
> 
>   LAN91C*: Change chip names to fit the eth_device struct size
> (2011-01-10 22:38:36 +0100)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-sh.git master
> 
> Nobuhiro Iwamatsu (14):
>       sh: serial: Update serial driver for SH
>       sh: Add support SH7706
>       sh: Add support shmin board
>       sh: Add support showing KByte of flash memory size
>       sh: Remove SCIF/SCI register infomation
>       sh: sh7722: Fix multiple definition of PSDR in serial_sh
>       sh: serial_sh: Fix build in serial_sh
>       sh: Delete the function that was not necessary
>       sh: Divided macro for zImage and add asm/zimage.h
>       sh: Add support zimageboot command for Renesas SH
>       sh: sh7785lcr: Add support zimageboot
>       sh: r2dplus: Add support zimageboot
>       sh: Fix build of shmin board
>       sh: Add support T-SH7706LSR board
> 
>  MAINTAINERS                      |    1 +
>  arch/sh/include/asm/cpu_sh3.h    |    6 +-
>  arch/sh/include/asm/cpu_sh7706.h |   53 +++
>  arch/sh/include/asm/cpu_sh7722.h |   38 --
>  arch/sh/include/asm/cpu_sh7750.h |   16 -
>  arch/sh/include/asm/cpu_sh7780.h |   21 +--
>  arch/sh/include/asm/zimage.h     |   41 +++
>  arch/sh/lib/Makefile             |    3 +
>  arch/sh/lib/board.c              |    8 +-
>  arch/sh/lib/bootm.c              |   21 +-
>  arch/sh/lib/zimageboot.c         |   80 +++++
>  board/shmin/Makefile             |   49 +++
>  board/shmin/config.mk            |   27 ++
>  board/shmin/lowlevel_init.S      |   36 ++
>  board/shmin/shmin.c              |  108 ++++++
>  boards.cfg                       |    1 +
>  drivers/serial/serial_sh.c       |  200 ++++-------
>  drivers/serial/serial_sh.h       |  690 ++++++++++++++++++++++++++++++++++++++
>  include/configs/r2dplus.h        |    1 +
>  include/configs/sh7785lcr.h      |    1 +
>  include/configs/shmin.h          |  128 +++++++
>  21 files changed, 1307 insertions(+), 222 deletions(-)
>  create mode 100644 arch/sh/include/asm/cpu_sh7706.h
>  create mode 100644 arch/sh/include/asm/zimage.h
>  create mode 100644 arch/sh/lib/zimageboot.c
>  create mode 100644 board/shmin/Makefile
>  create mode 100644 board/shmin/config.mk
>  create mode 100644 board/shmin/lowlevel_init.S
>  create mode 100644 board/shmin/shmin.c
>  create mode 100644 drivers/serial/serial_sh.h
>  create mode 100644 include/configs/shmin.h

Applied, thanks.

Best regards,

Wolfgang Denk