From patchwork Tue Jan 25 01:57:59 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Mallon X-Patchwork-Id: 80299 X-Patchwork-Delegate: info@emk-elektronik.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 381961007D3 for ; Tue, 25 Jan 2011 13:04:50 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 564E4280B1; Tue, 25 Jan 2011 03:04:44 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bsCV0fEaC6Xj; Tue, 25 Jan 2011 03:04:44 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A1CC42808C; Tue, 25 Jan 2011 03:04:37 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1BBCB28082 for ; Tue, 25 Jan 2011 03:04:33 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4yAwXgwxyGVk for ; Tue, 25 Jan 2011 03:04:31 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from hayes.bluewaternz.com (mail.bluewatersys.com [202.124.120.130]) by theia.denx.de (Postfix) with ESMTPS id 105DD28088 for ; Tue, 25 Jan 2011 03:04:28 +0100 (CET) Received: (qmail 22755 invoked by uid 89); 25 Jan 2011 02:12:17 -0000 Received: from unknown (HELO localhost.localdomain) (ryan@192.168.2.96) by 0 with ESMTPA; 25 Jan 2011 02:12:17 -0000 From: Ryan Mallon To: u-boot@lists.denx.de, albert.aribaud@free.fr, u-boot@emk-elektronik.de Date: Tue, 25 Jan 2011 14:57:59 +1300 Message-Id: <8e07465b5eeab750a532f60303e5db5cdeab3595.1295919847.git.ryan@bluewatersys.com> X-Mailer: git-send-email 1.5.5.1 In-Reply-To: <72634a7b5f0dd1503152820fb4147cf90db2354c.1295919847.git.ryan@bluewatersys.com> References: <3407d3e0912e6291bce466d4dcb3fe42475492b2.1295919847.git.ryan@bluewatersys.com> <72634a7b5f0dd1503152820fb4147cf90db2354c.1295919847.git.ryan@bluewatersys.com> In-Reply-To: References: Cc: sglass@designa-electronics.com Subject: [U-Boot] [PATCH 3/3] Added Bluewater Systems Snapper 9260 and 9G20 module config to top-level Makefile X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Signed-off-by: Ryan Mallon --- Makefile | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index fd21ef3..7d4ba28 100644 --- a/Makefile +++ b/Makefile @@ -901,6 +901,19 @@ TNY_A9260_config : unconfig @$(MKCONFIG) -n $@ -a tny_a9260 arm arm926ejs tny_a9260 calao at91 ######################################################################## +## Bluewater Systems Boards +######################################################################## +snapper9260_config \ +snapper9g20_config: unconfig + @mkdir -p $(obj)include + @if [ "$(findstring 9260, $@)" ]; then \ + echo "#define CONFIG_SNAPPER9260 1" >> $(obj)include/config.h ; \ + else \ + echo "#define CONFIG_SNAPPER9G20 1" >> $(obj)include/config.h ; \ + fi; + @$(MKCONFIG) -a snapper9260 arm arm926ejs snapper9260 bluewater at91 + +######################################################################## ## ARM Integrator boards - see doc/README-integrator for more info. integratorap_config \ ap_config \