[U-Boot] [PATCH] build: define CPU only when arch/${ARCH}/cpu/${CPU} exists

Masahiro Yamada yamada.m at jp.panasonic.com
Wed Jul 9 03:42:30 CEST 2014


Hi Simon,


On Mon, 7 Jul 2014 16:44:36 -0600
Simon Glass <sjg at 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



More information about the U-Boot mailing list