From patchwork Sun Sep 11 23:25:22 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 4016 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 83A4123EF5 for ; Sun, 11 Sep 2011 23:25:35 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id 73064A18356 for ; Sun, 11 Sep 2011 23:25:35 +0000 (UTC) Received: by fxe23 with SMTP id 23so1045228fxe.11 for ; Sun, 11 Sep 2011 16:25:35 -0700 (PDT) Received: by 10.223.74.89 with SMTP id t25mr3180044faj.65.1315783535251; Sun, 11 Sep 2011 16:25:35 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.11.8 with SMTP id m8cs83916lab; Sun, 11 Sep 2011 16:25:34 -0700 (PDT) Received: by 10.204.132.89 with SMTP id a25mr777659bkt.185.1315783533970; Sun, 11 Sep 2011 16:25:33 -0700 (PDT) Received: from mail.df.lth.se (mail.df.lth.se [194.47.250.12]) by mx.google.com with ESMTPS id zx14si7589747bkb.12.2011.09.11.16.25.33 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 11 Sep 2011 16:25:33 -0700 (PDT) Received-SPF: pass (google.com: domain of triad@df.lth.se designates 194.47.250.12 as permitted sender) client-ip=194.47.250.12; Authentication-Results: mx.google.com; spf=pass (google.com: domain of triad@df.lth.se designates 194.47.250.12 as permitted sender) smtp.mail=triad@df.lth.se Received: from mer.df.lth.se (mer.df.lth.se [194.47.250.37]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.df.lth.se (Postfix) with ESMTPS id 7975C65D98; Mon, 12 Sep 2011 01:25:32 +0200 (CEST) Received: from mer.df.lth.se (triad@localhost.localdomain [127.0.0.1]) by mer.df.lth.se (8.14.3/8.14.3/Debian-9.4) with ESMTP id p8BNPWkT006401; Mon, 12 Sep 2011 01:25:32 +0200 Received: (from triad@localhost) by mer.df.lth.se (8.14.3/8.14.3/Submit) id p8BNPT9j006400; Mon, 12 Sep 2011 01:25:29 +0200 From: Linus Walleij To: Albert ARIBAUD Cc: u-boot@lists.denx.de, Linus Walleij , Stefano Babic , =?utf-8?q?Lo=C3=AFc=20Minier?= Subject: [PATCH] ARM: versatile: delete split_by_variant.sh Date: Mon, 12 Sep 2011 01:25:22 +0200 Message-Id: <1315783522-6374-1-git-send-email-linus.walleij@linaro.org> X-Mailer: git-send-email 1.7.2.5 MIME-Version: 1.0 Since commit d388298a59ba375c76597b8f95b560afa971a0fb by Stefano Babic this file is no longer needed so delete it. Cc: Stefano Babic Cc: Loïc Minier Signed-off-by: Linus Walleij --- board/armltd/versatile/split_by_variant.sh | 42 ---------------------------- 1 files changed, 0 insertions(+), 42 deletions(-) delete mode 100755 board/armltd/versatile/split_by_variant.sh diff --git a/board/armltd/versatile/split_by_variant.sh b/board/armltd/versatile/split_by_variant.sh deleted file mode 100755 index 475e5a3..0000000 --- a/board/armltd/versatile/split_by_variant.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# --------------------------------------------------------- -# Set the core module defines according to Core Module -# --------------------------------------------------------- -# --------------------------------------------------------- -# Set up the Versatile type define -# --------------------------------------------------------- - -mkdir -p ${obj}include -variant=PB926EJ-S -if [ "$1" = "" ] -then - echo "$0:: No parameters - using versatilepb_config" - echo "#define CONFIG_ARCH_VERSATILE_PB" > ${obj}include/config.h - variant=PB926EJ-S -else - case "$1" in - versatilepb_config | \ - versatile_config) - echo "#define CONFIG_ARCH_VERSATILE_PB" > ${obj}include/config.h - ;; - - versatileab_config) - echo "#define CONFIG_ARCH_VERSATILE_AB" > ${obj}include/config.h - variant=AB926EJ-S - ;; - - - *) - echo "$0:: Unrecognised config - using versatilepb_config" - echo "#define CONFIG_ARCH_VERSATILE_PB" > ${obj}include/config.h - variant=PB926EJ-S - ;; - - esac - -fi -# --------------------------------------------------------- -# Complete the configuration -# --------------------------------------------------------- -$MKCONFIG -a versatile arm arm926ejs versatile armltd versatile -echo "Variant:: $variant"