
9 Jul
2014
9 Jul
'14
3:42 a.m.
Hi Simon,
On Mon, 7 Jul 2014 16:44:36 -0600 Simon Glass sjg@chromium.org wrote:
But see question below.
diff --git a/mkconfig b/mkconfig index 2bf5897..401f262 100755 --- a/mkconfig +++ b/mkconfig @@ -55,6 +55,11 @@ CONFIG_NAME="${7%_config}" arch="$2" cpu=`echo $3 | awk 'BEGIN {FS = ":"} ; {print $1}'` spl_cpu=`echo $3 | awk 'BEGIN {FS = ":"} ; {print $2}'`
+if [ "$cpu" = "-" ] ; then
cpu=
+fi
if [ "$6" = "<none>" ] ; then board= elif [ "$6" = "-" ] ; then @@ -114,10 +119,10 @@ fi
rm -f asm/arch
-if [ -z "${soc}" ] ; then
ln -s ${LNPREFIX}arch-${cpu} asm/arch
-else +if [ "${soc}" ] ; then
Will this work OK in dash? (or non-bash)
Yes. I am dash-user. :-) This is working on dash too.
Best Regards Masahiro Yamada