diff options
author | Wolfgang Denk <wd@denx.de> | 2009-07-18 22:09:38 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-07-18 22:09:38 +0200 |
commit | dba107b967332fc8a35867f4d58038626c968800 (patch) | |
tree | c50738f6c834e5823aa16461022c9ae2e6a27116 | |
parent | 2eb99ca8029b44c988d5f6312f97e68d3b9cb2bd (diff) | |
download | u-boot-imx-dba107b967332fc8a35867f4d58038626c968800.zip u-boot-imx-dba107b967332fc8a35867f4d58038626c968800.tar.gz u-boot-imx-dba107b967332fc8a35867f4d58038626c968800.tar.bz2 |
ARM: make split_by_variant.sh output more useful
The board/armltd/integrator/split_by_variant.sh script used to print
"Configuring for integrator*p board..." no matter which board name
was being compiled. This made it difficult to match MAKEALL output to
board names. This patch fixes this.
Signed-off-by: Wolfgang Denk <wd@denx.de>
-rwxr-xr-x | board/armltd/integrator/split_by_variant.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/armltd/integrator/split_by_variant.sh b/board/armltd/integrator/split_by_variant.sh index d67bdc2..702b436 100755 --- a/board/armltd/integrator/split_by_variant.sh +++ b/board/armltd/integrator/split_by_variant.sh @@ -231,5 +231,5 @@ fi # ap # --------------------------------------------------------- # Complete the configuration # --------------------------------------------------------- -$MKCONFIG -a integrator$1 arm $cpu integrator armltd; -echo "Variant:: $variant with core $cpu" +$MKCONFIG -a -n "${2%%_config}" integrator$1 arm $cpu integrator armltd +echo "Variant: $variant with core $cpu" |