public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] ARM: versatile: delete split_by_variant.sh
@ 2011-09-11 23:25 Linus Walleij
  2011-09-12  7:37 ` Stefano Babic
  2011-09-28 19:41 ` Wolfgang Denk
  0 siblings, 2 replies; 3+ messages in thread
From: Linus Walleij @ 2011-09-11 23:25 UTC (permalink / raw)
  To: u-boot

Since commit d388298a59ba375c76597b8f95b560afa971a0fb by
Stefano Babic this file is no longer needed so delete it.

Cc: Stefano Babic <sbabic@denx.de>
Cc: Lo?c Minier <loic.minier@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 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"
-- 
1.7.6

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] ARM: versatile: delete split_by_variant.sh
  2011-09-11 23:25 [U-Boot] [PATCH] ARM: versatile: delete split_by_variant.sh Linus Walleij
@ 2011-09-12  7:37 ` Stefano Babic
  2011-09-28 19:41 ` Wolfgang Denk
  1 sibling, 0 replies; 3+ messages in thread
From: Stefano Babic @ 2011-09-12  7:37 UTC (permalink / raw)
  To: u-boot

On 09/12/2011 01:25 AM, Linus Walleij wrote:
> Since commit d388298a59ba375c76597b8f95b560afa971a0fb by
> Stefano Babic this file is no longer needed so delete it.
> 
> Cc: Stefano Babic <sbabic@denx.de>
> Cc: Lo?c Minier <loic.minier@linaro.org>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---

Acked-by: Stefano Babic <sbabic@denx.de>

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] ARM: versatile: delete split_by_variant.sh
  2011-09-11 23:25 [U-Boot] [PATCH] ARM: versatile: delete split_by_variant.sh Linus Walleij
  2011-09-12  7:37 ` Stefano Babic
@ 2011-09-28 19:41 ` Wolfgang Denk
  1 sibling, 0 replies; 3+ messages in thread
From: Wolfgang Denk @ 2011-09-28 19:41 UTC (permalink / raw)
  To: u-boot

Dear Linus Walleij,

In message <1315783522-6374-1-git-send-email-linus.walleij@linaro.org> you wrote:
> Since commit d388298a59ba375c76597b8f95b560afa971a0fb by
> Stefano Babic this file is no longer needed so delete it.
> 
> Cc: Stefano Babic <sbabic@denx.de>
> Cc: Lo?c Minier <loic.minier@linaro.org>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
>  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

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Any sufficiently advanced technology is indistinguishable from magic.
Clarke's Third Law       - _Profiles of the Future_ (1962; rev. 1973)
                  ``Hazards of Prophecy: The Failure of Imagination''

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-09-28 19:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-11 23:25 [U-Boot] [PATCH] ARM: versatile: delete split_by_variant.sh Linus Walleij
2011-09-12  7:37 ` Stefano Babic
2011-09-28 19:41 ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox