
The following changes since commit 8d99cd0691b7094ea1e2bf5309b0877047a9f375: Stefan Roese (1): Merge branch 'master' of /home/stefan/git/u-boot/u-boot
are available in the git repository at:
git://www.denx.de/git/u-boot-ppc4xx.git master
Larry Johnson (2): ppc4xx: Refactor ECC POST for AMCC Denali core Merge Sequoia beautification into Korat code
Matthias Fuchs (3): ppc4xx: Sequoia coding style cleanup and beautification ppc4xx: Add DU440 board support ppc4xx: Complete DU440 board support
Niklaus Giger (5): ppc4xx: Netstal HCU4 board. Added POST. Various fixes ppc4xx: Netstal HCU5 board. Added POST. Various fixes ppc4xx: Netstal HCU5 board: added various fixes and POST ppc4xx: netstal/common define routines used by all boards ppc4xx: Netstal HCU4 board: added various fixes and POST
Stefan Roese (2): ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
MAINTAINERS | 1 + MAKEALL | 1 + Makefile | 3 + board/amcc/kilauea/cmd_pll.c | 2 +- board/amcc/makalu/cmd_pll.c | 2 +- board/amcc/sequoia/init.S | 7 +- board/amcc/sequoia/sequoia.c | 246 ++++----- board/esd/du440/Makefile | 51 ++ board/esd/du440/config.mk | 37 ++ board/esd/du440/du440.c | 1018 ++++++++++++++++++++++++++++++++++++ board/esd/du440/du440.h | 42 ++ board/esd/du440/init.S | 81 +++ board/esd/du440/u-boot.lds | 145 +++++ board/korat/korat.c | 311 +++++------ board/netstal/common/fixed_sdram.c | 105 ++++ board/netstal/common/nm.h | 38 ++ board/netstal/common/nm_bsp.c | 128 ++++- board/netstal/hcu4/Makefile | 6 +- board/netstal/hcu4/config.mk | 2 +- board/netstal/hcu4/hcu4.c | 341 +++---------- board/netstal/hcu5/Makefile | 5 +- board/netstal/hcu5/README.txt | 3 - board/netstal/hcu5/config.mk | 2 +- board/netstal/hcu5/hcu5.c | 289 +++++------ board/netstal/hcu5/init.S | 71 ++- board/netstal/hcu5/sdram.c | 86 ++-- board/netstal/hcu5/u-boot.lds | 2 +- include/configs/DU440.h | 438 ++++++++++++++++ include/configs/PMC440.h | 4 +- include/configs/hcu4.h | 115 +++-- include/configs/hcu5.h | 136 +++-- include/configs/kilauea.h | 2 +- include/configs/makalu.h | 2 +- post/cpu/ppc4xx/denali_ecc.c | 266 +++++----- 34 files changed, 2912 insertions(+), 1076 deletions(-) create mode 100644 board/esd/du440/Makefile create mode 100644 board/esd/du440/config.mk create mode 100644 board/esd/du440/du440.c create mode 100644 board/esd/du440/du440.h create mode 100644 board/esd/du440/init.S create mode 100644 board/esd/du440/u-boot.lds create mode 100644 board/netstal/common/fixed_sdram.c create mode 100644 board/netstal/common/nm.h create mode 100644 include/configs/DU440.h