mbox

[U-Boot] Pull request: u-boot-mips/master

Message ID CACUy__Vtfnh_icEbTa3VLdfbh7_gBmtNyHDqhHB+-G7L3dbRsA@mail.gmail.com
State Accepted
Delegated to: Tom Rini
Headers show

Pull-request

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

Message

Daniel Schwierzeck Sept. 14, 2012, 2:04 a.m. UTC
Hi Tom,

this one is without qemu_mips64 support and without any warnings.


The following changes since commit e66443fdb5355e68cfdbbdd37248c4b7eb4968f5:

  Makefile: fix HAVE_VENDOR_COMMON_LIB (2012-08-17 18:07:12 +0200)

are available in the git repository at:

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

for you to fetch changes up to 748fd4a621a870d378e4e4f54df76a38fd5d3cba:

  MIPS: add support for qemu for little endian MIPS32 CPUs (2012-08-24
00:34:47 +0200)

----------------------------------------------------------------
Daniel Schwierzeck (3):
      MIPS: factor out endianess flag handling to arch config.mk
      MIPS: move CONFIG_STANDALONE_LOAD_ADDR to CPU config makefiles
      MIPS: add support for qemu for little endian MIPS32 CPUs

Marek Vasut (4):
      dm: mips: Fix lb60 WDT control
      dm: mips: Fix lb60 timer code
      dm: mips: Fix warnings in lb60 board
      dm: mips: Import libgcc components from Linux

 arch/mips/config.mk            |   20 +++++++++++++++++---
 arch/mips/cpu/mips32/config.mk |   19 ++-----------------
 arch/mips/cpu/xburst/config.mk |    5 +++--
 arch/mips/cpu/xburst/cpu.c     |    2 +-
 arch/mips/cpu/xburst/timer.c   |   12 ++++++------
 arch/mips/lib/Makefile         |   20 ++++++++++++++++++++
 arch/mips/lib/ashldi3.c        |   25 +++++++++++++++++++++++++
 arch/mips/lib/ashrdi3.c        |   27 +++++++++++++++++++++++++++
 arch/mips/lib/libgcc.h         |   25 +++++++++++++++++++++++++
 arch/mips/lib/lshrdi3.c        |   25 +++++++++++++++++++++++++
 board/qi/qi_lb60/qi_lb60.c     |    4 ++--
 boards.cfg                     |    3 ++-
 include/configs/qemu-mips.h    |    7 ++++++-
 include/configs/qi_lb60.h      |    1 +
 14 files changed, 162 insertions(+), 33 deletions(-)
 create mode 100644 arch/mips/lib/ashldi3.c
 create mode 100644 arch/mips/lib/ashrdi3.c
 create mode 100644 arch/mips/lib/libgcc.h
 create mode 100644 arch/mips/lib/lshrdi3.c

Comments

Tom Rini Sept. 18, 2012, 2:50 p.m. UTC | #1
On Fri, Sep 14, 2012 at 04:04:36AM +0200, Daniel Schwierzeck wrote:
> Hi Tom,
> 
> this one is without qemu_mips64 support and without any warnings.
> 
> 
> The following changes since commit e66443fdb5355e68cfdbbdd37248c4b7eb4968f5:
> 
>   Makefile: fix HAVE_VENDOR_COMMON_LIB (2012-08-17 18:07:12 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 748fd4a621a870d378e4e4f54df76a38fd5d3cba:
> 
>   MIPS: add support for qemu for little endian MIPS32 CPUs (2012-08-24
> 00:34:47 +0200)
> 
> ----------------------------------------------------------------
> Daniel Schwierzeck (3):
>       MIPS: factor out endianess flag handling to arch config.mk
>       MIPS: move CONFIG_STANDALONE_LOAD_ADDR to CPU config makefiles
>       MIPS: add support for qemu for little endian MIPS32 CPUs
> 
> Marek Vasut (4):
>       dm: mips: Fix lb60 WDT control
>       dm: mips: Fix lb60 timer code
>       dm: mips: Fix warnings in lb60 board
>       dm: mips: Import libgcc components from Linux
> 
>  arch/mips/config.mk            |   20 +++++++++++++++++---
>  arch/mips/cpu/mips32/config.mk |   19 ++-----------------
>  arch/mips/cpu/xburst/config.mk |    5 +++--
>  arch/mips/cpu/xburst/cpu.c     |    2 +-
>  arch/mips/cpu/xburst/timer.c   |   12 ++++++------
>  arch/mips/lib/Makefile         |   20 ++++++++++++++++++++
>  arch/mips/lib/ashldi3.c        |   25 +++++++++++++++++++++++++
>  arch/mips/lib/ashrdi3.c        |   27 +++++++++++++++++++++++++++
>  arch/mips/lib/libgcc.h         |   25 +++++++++++++++++++++++++
>  arch/mips/lib/lshrdi3.c        |   25 +++++++++++++++++++++++++
>  board/qi/qi_lb60/qi_lb60.c     |    4 ++--
>  boards.cfg                     |    3 ++-
>  include/configs/qemu-mips.h    |    7 ++++++-
>  include/configs/qi_lb60.h      |    1 +
>  14 files changed, 162 insertions(+), 33 deletions(-)
>  create mode 100644 arch/mips/lib/ashldi3.c
>  create mode 100644 arch/mips/lib/ashrdi3.c
>  create mode 100644 arch/mips/lib/libgcc.h
>  create mode 100644 arch/mips/lib/lshrdi3.c

Applied to u-boot/master, thanks!