From mboxrd@z Thu Jan 1 00:00:00 1970 From: DENX Support System Date: Sat, 1 Apr 2006 00:50:07 +0200 Subject: [DNX#2006040142000955] [U-Boot-Users] Add support for r5200 board Message-ID: <1143845407.376299.170485665@castor.denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hello list, inside the automatic U-Boot patch tracking system a new ticket [DNX#2006040142000955] was created: > > This patch can also be pulled from > http://labxtechnologies.com/u-boot.git. This is a proprietary board. > > CHANGELOG > * Add support for r5200 board > Patch by Zachary Landau, 26 Jan 2006 > > Signed-off-by: Zachary P. Landau > > > --- > > CHANGELOG | 3 + > MAINTAINERS | 4 + > Makefile | 3 + > board/r5200/Makefile | 40 ++++++++++ > board/r5200/config.mk | 25 ++++++ > board/r5200/r5200.c | 125 +++++++++++++++++++++++++++++++ > board/r5200/u-boot.lds | 144 > +++++++++++++++++++++++++++++++++++ > examples/Makefile | 2 > include/asm-m68k/immap_5271.h | 98 ++++++++++++++++++++++++ > include/asm-m68k/m5271.h | 93 +++++++++++++++++++++++ > include/configs/r5200.h | 168 > +++++++++++++++++++++++++++++++++++++++++ > 11 files changed, 704 insertions(+), 1 deletions(-) > create mode 100644 board/r5200/Makefile > create mode 100644 board/r5200/config.mk > create mode 100644 board/r5200/r5200.c > create mode 100644 board/r5200/u-boot.lds > create mode 100644 include/asm-m68k/immap_5271.h > create mode 100644 include/asm-m68k/m5271.h > create mode 100644 include/configs/r5200.h > > 3a108ed8682e8dab8bf301e91db1999d4cf88c55 > diff --git a/CHANGELOG b/CHANGELOG > index 607cde1..fb6278a 100644 > --- a/CHANGELOG > +++ b/CHANGELOG > @@ -2,6 +2,9 @@ > Changes since U-Boot 1.1.4: > ====================================================================== > > +* Add support for r5200 board > + Patch by Zachary Landau, 26 Jan 2006 > + > * Add support for Freescale M5271 processor > Patch by Zachary Landau, 26 Jan 2006 > > diff --git a/MAINTAINERS b/MAINTAINERS > index 0ef9e03..9380220 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -534,6 +534,10 @@ Matthias Fuchs > TASREG MCF5249 > > +Zachary P. Landau > + > + r5200 mcf52x2 > + > ######################################################################### > # End of MAINTAINERS list # > ######################################################################### > diff --git a/Makefile b/Makefile > index 9305cab..2ac35a6 100644 > --- a/Makefile > +++ b/Makefile > @@ -1243,6 +1243,9 @@ M5282EVB_config : unconfig > TASREG_config : unconfig > @./mkconfig $(@:_config=) m68k mcf52x2 tasreg esd > > +r5200_config : unconfig > + @./mkconfig $(@:_config=) m68k mcf52x2 r5200 > + > ######################################################################### > ## MPC83xx Systems > ######################################################################### > diff --git a/board/r5200/Makefile b/board/r5200/Makefile > new file mode 100644 > index 0000000..d0364ed > --- /dev/null > +++ b/board/r5200/Makefile > @@ -0,0 +1,40 @@ > +# > +# (C) Copyright 2000-2003 > +# Wolfgang Denk, DENX Software Engineering, wd at denx.de. > +# > +# See file CREDITS for list of people who contributed to this > +# project. > +# > +# This program is free software; you can redistribute it and/or > +# modify it under the terms of the GNU General Public License as > +# published by the Free Software Foundation; either version 2 of > +# the License, or (at your option) any later version. > +# > +# This program is distributed in the hope that it will be useful, > +# but WITHOUT ANY WARRANTY; without even the implied warranty of > +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Your U-Boot support team