From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean-Christophe PLAGNIOL-VILLARD Date: Wed, 29 Apr 2009 23:15:14 +0200 Subject: [U-Boot] [PATCH 1/5] ZOOM2 Add initial support for Zoom2 In-Reply-To: <1240933314-12769-1-git-send-email-Tom.Rix@windriver.com> References: <1240933314-12769-1-git-send-email-Tom.Rix@windriver.com> Message-ID: <20090429211514.GH522@game.jcrosoft.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 10:41 Tue 28 Apr , Tom Rix wrote: > Zoom2 is a new board from Texas Instruments and LogicPD > > The logicpd web site is a good source for general information on this board. > Please start looking here if the below links are broken. > http://www.logicpd.com > > This is a pdf of the product > http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf > This is the product description web page > http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap34x-ii-mdp > > This patch provides a zoom2 base target by copying zoom1 and by making some > obvious changes. > > To configure, run > make omap3_zoom2_config > > Signed-off-by: Tom Rix > --- > MAINTAINERS | 4 + > MAKEALL | 1 + > Makefile | 3 + > board/omap3/beagle/u-boot.lds | 63 ---------- > board/omap3/common/Makefile | 1 + > board/omap3/evm/u-boot.lds | 63 ---------- > board/omap3/overo/u-boot.lds | 63 ---------- > board/omap3/pandora/u-boot.lds | 63 ---------- > board/omap3/zoom1/u-boot.lds | 63 ---------- > board/omap3/zoom2/Makefile | 49 ++++++++ > board/omap3/zoom2/config.mk | 33 +++++ > board/omap3/zoom2/zoom2.c | 76 ++++++++++++ > board/omap3/zoom2/zoom2.h | 151 +++++++++++++++++++++++ > cpu/arm_cortexa8/omap3/config.mk | 2 + > cpu/arm_cortexa8/omap3/u-boot.lds | 58 +++++++++ > doc/README.omap3 | 13 ++ > include/configs/omap3_zoom2.h | 245 +++++++++++++++++++++++++++++++++++++ > 17 files changed, 636 insertions(+), 315 deletions(-) > delete mode 100644 board/omap3/beagle/u-boot.lds > delete mode 100644 board/omap3/evm/u-boot.lds > delete mode 100644 board/omap3/overo/u-boot.lds > delete mode 100644 board/omap3/pandora/u-boot.lds > delete mode 100644 board/omap3/zoom1/u-boot.lds > create mode 100644 board/omap3/zoom2/Makefile > create mode 100644 board/omap3/zoom2/config.mk > create mode 100644 board/omap3/zoom2/zoom2.c > create mode 100644 board/omap3/zoom2/zoom2.h > create mode 100644 cpu/arm_cortexa8/omap3/u-boot.lds > create mode 100644 include/configs/omap3_zoom2.h > Please fix the whitespace present on the patch and split the merge of the lds in a seperated patch Best Regards, J.