public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] Please pull u-boot-mpc83xx.git mpc83xx branch
@ 2007-08-17 14:39 Kim Phillips
  2007-08-18 19:48 ` Wolfgang Denk
  0 siblings, 1 reply; 5+ messages in thread
From: Kim Phillips @ 2007-08-17 14:39 UTC (permalink / raw)
  To: u-boot

Wolfgang, please do a (and you can cut-n-paste this):

git-pull git://www.denx.de/git/u-boot-mpc83xx.git mpc83xx

[note the mpc83xx branch]

to get the following changes since commit ed4058afc85dc6341fea38cb240beb76296b0d24:
  Wolfgang Denk (1):
        Merge with /home/wd/git/u-boot/custodian/u-boot-mpc86xx

Kim Phillips (10):
      mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
      mpc83xx: fix UEC2->1 typo in libfdt setup code
      mpc83xx: remaining 8360 libfdt fixes
      mpc83xx: move common /memory node update mechanism to cpu.c
      mpc83xx: migrate remaining freescale boards to libfdt
      mpc83xx: enable libfdt by default on freescale boards
      mpc83xx: implement board_add_ram_info
      mpc83xx: suppress unused variable 'val8' warning
      mpc83xx: move freescale boards to boards/freescale
      mpc83xx: fix typo in DDR2 programming

Tony Li (1):
      mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support

 MAINTAINERS                                        |   30 ++++---
 MAKEALL                                            |    1 +
 Makefile                                           |   10 +-
 board/freescale/common/pq-mds-pib.c                |  102 ++++++++++++++++++++
 board/freescale/common/pq-mds-pib.h                |    9 ++
 board/{ => freescale}/mpc8313erdb/Makefile         |    0 
 board/{ => freescale}/mpc8313erdb/config.mk        |    0 
 board/{ => freescale}/mpc8313erdb/mpc8313erdb.c    |   19 +++--
 board/{ => freescale}/mpc8313erdb/sdram.c          |    3 -
 board/freescale/mpc8323erdb/mpc8323erdb.c          |   37 ++-----
 board/{ => freescale}/mpc832xemds/Makefile         |    2 +-
 board/{ => freescale}/mpc832xemds/config.mk        |    0 
 board/{ => freescale}/mpc832xemds/mpc832xemds.c    |   31 ++++--
 board/{ => freescale}/mpc832xemds/pci.c            |   64 +++++--------
 .../mpc8349emds}/Makefile                          |    0 
 board/{ => freescale}/mpc8349emds/config.mk        |    0 
 board/{ => freescale}/mpc8349emds/mpc8349emds.c    |   26 ++---
 board/{ => freescale}/mpc8349emds/pci.c            |   41 ++++++++-
 board/{ => freescale}/mpc8349itx/Makefile          |    0 
 board/{ => freescale}/mpc8349itx/config.mk         |    0 
 board/{ => freescale}/mpc8349itx/mpc8349itx.c      |   21 ++--
 board/{ => freescale}/mpc8349itx/pci.c             |   39 +++++++-
 .../mpc8360emds}/Makefile                          |    2 +-
 board/{ => freescale}/mpc8360emds/config.mk        |    0 
 board/{ => freescale}/mpc8360emds/mpc8360emds.c    |   50 ++++-------
 board/{ => freescale}/mpc8360emds/pci.c            |   48 +--------
 board/mpc8349emds/Makefile                         |   50 ----------
 board/mpc8360emds/Makefile                         |   50 ----------
 board/sbc8349/sbc8349.c                            |    5 +-
 board/tqm834x/tqm834x.c                            |    4 +-
 cpu/mpc83xx/cpu.c                                  |   99 +++++++++++++------
 cpu/mpc83xx/pci.c                                  |   15 +++-
 cpu/mpc83xx/spd_sdram.c                            |   54 ++++++++---
 cpu/mpc83xx/speed.c                                |    1 +
 include/common.h                                   |    7 ++
 include/configs/MPC8313ERDB.h                      |    6 +-
 include/configs/MPC832XEMDS.h                      |    5 +-
 include/configs/MPC8349EMDS.h                      |    2 +-
 include/configs/MPC8349ITX.h                       |    2 +-
 include/configs/MPC8360EMDS.h                      |    7 +-
 include/mpc83xx.h                                  |    5 +-
 41 files changed, 474 insertions(+), 373 deletions(-)
 create mode 100644 board/freescale/common/pq-mds-pib.c
 create mode 100644 board/freescale/common/pq-mds-pib.h
 rename board/{ => freescale}/mpc8313erdb/Makefile (100%)
 rename board/{ => freescale}/mpc8313erdb/config.mk (100%)
 rename board/{ => freescale}/mpc8313erdb/mpc8313erdb.c (94%)
 rename board/{ => freescale}/mpc8313erdb/sdram.c (99%)
 copy board/{ => freescale}/mpc832xemds/Makefile (97%)
 rename board/{ => freescale}/mpc832xemds/config.mk (100%)
 rename board/{ => freescale}/mpc832xemds/mpc832xemds.c (93%)
 rename board/{ => freescale}/mpc832xemds/pci.c (89%)
 copy board/{mpc832xemds => freescale/mpc8349emds}/Makefile (100%)
 rename board/{ => freescale}/mpc8349emds/config.mk (100%)
 rename board/{ => freescale}/mpc8349emds/mpc8349emds.c (95%)
 rename board/{ => freescale}/mpc8349emds/pci.c (91%)
 rename board/{ => freescale}/mpc8349itx/Makefile (100%)
 rename board/{ => freescale}/mpc8349itx/config.mk (100%)
 rename board/{ => freescale}/mpc8349itx/mpc8349itx.c (98%)
 rename board/{ => freescale}/mpc8349itx/pci.c (90%)
 rename board/{mpc832xemds => freescale/mpc8360emds}/Makefile (97%)
 rename board/{ => freescale}/mpc8360emds/config.mk (100%)
 rename board/{ => freescale}/mpc8360emds/mpc8360emds.c (90%)
 rename board/{ => freescale}/mpc8360emds/pci.c (88%)
 delete mode 100644 board/mpc8349emds/Makefile
 delete mode 100644 board/mpc8360emds/Makefile

Thanks,

Kim

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-08-20 13:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-17 14:39 [U-Boot-Users] Please pull u-boot-mpc83xx.git mpc83xx branch Kim Phillips
2007-08-18 19:48 ` Wolfgang Denk
2007-08-20 12:10   ` Jerry Van Baren
2007-08-20 12:19     ` Jerry Van Baren
2007-08-20 13:47     ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox