All of lore.kernel.org
 help / color / mirror / Atom feed
From: Denys Dmytriyenko <denys@ti.com>
To: "Maupin, Chase" <chase.maupin@ti.com>
Cc: "meta-arago@arago-project.org" <meta-arago@arago-project.org>,
	"Cooper Jr., Franklin" <fcooper@ti.com>
Subject: Re: [PATCHv2] oe-layertool-setup.sh: properly set DL_DIR
Date: Thu, 26 Sep 2013 16:19:03 -0400	[thread overview]
Message-ID: <20130926201902.GB16261@edge> (raw)
In-Reply-To: <7D46E86EC0A8354091174257B2FED10159753BA5@DLEE11.ent.ti.com>

Correct. You should probably not remove the old default:

> dldir="$oebase/downloads"

Denys


On Thu, Sep 26, 2013 at 04:16:23PM -0400, Maupin, Chase wrote:
> Let me check.  So no existing local.conf and no -d option?
> 
> Sincerely,
> Chase Maupin
> Integration Team Manager
> Linux Core Product Development
> e-mail: chase.maupin@ti.com
> phone: (214) 567-2950
> 
> For support:
> Forums - http://community.ti.com/forums/
> Wiki - http://wiki.davincidsp.com/ 
> 
> 
> >-----Original Message-----
> >From: Dmytriyenko, Denys
> >Sent: Thursday, September 26, 2013 3:00 PM
> >To: Maupin, Chase; meta-arago@arago-project.org; Cooper Jr.,
> >Franklin
> >Subject: Re: [meta-arago] [PATCHv2] oe-layertool-setup.sh:
> >properly set DL_DIR
> >
> >I believe there is a bug introduced by this patch - DL_DIR doesn't
> >get set
> >with default on first run when no -d option is specified...
> >
> >
> >On Tue, Sep 24, 2013 at 04:18:11PM -0400, Dmytriyenko, Denys
> >wrote:
> >>    Ack
> >>
> >>    Denys
> >>
> >>    -----Original Message-----
> >>    From: Cooper Jr., Franklin [fcooper@ti.com]
> >>    Received: Tuesday, 24 Sep 2013, 16:10
> >>    To: Maupin, Chase [chase.maupin@ti.com]; meta-arago@arago-
> >project.org
> >>    [meta-arago@arago-project.org]
> >>    Subject: Re: [meta-arago] [PATCHv2] oe-layertool-setup.sh:
> >properly set
> >>    DL_DIR
> >>
> >>    Acked-by: Franklin Cooper Jr. <fcooper@ti.com>
> >>
> >>    > -----Original Message-----
> >>    > From: meta-arago-bounces@arago-project.org [mailto:meta-
> >arago-
> >>    > bounces@arago-project.org] On Behalf Of Maupin, Chase
> >>    > Sent: Tuesday, September 24, 2013 3:50 PM
> >>    > To: meta-arago@arago-project.org
> >>    > Subject: [meta-arago] [PATCHv2] oe-layertool-setup.sh:
> >properly set
> >>    DL_DIR
> >>    >
> >>    > * This script took a parameter using -d to set the DL_DIR
> >but
> >>    >   ignored that setting.  Now if that is set make it the
> >DL_DIR
> >>    >   value in conf/local.conf
> >>    > * When running this script to get updates changes that were
> >made
> >>    >   to DL_DIR were lost because local.conf was copied over.
> >Now
> >>    >   the script will use the old DL_DIR setting.
> >>    >
> >>    > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> >>    >
> >>    > ---
> >>    > * Updated in version 2
> >>    >     * Removed sh -x setting which was accidentally left
> >over
> >>    >     * Fixed typo in commit message
> >>    > ---
> >>    >  oe-layertool-setup.sh |   17 ++++++++++++++++-
> >>    >  1 files changed, 16 insertions(+), 1 deletions(-)
> >>    >
> >>    > diff --git a/oe-layertool-setup.sh b/oe-layertool-setup.sh
> >index
> >>    > 55cd174..72e36a2 100755
> >>    > --- a/oe-layertool-setup.sh
> >>    > +++ b/oe-layertool-setup.sh
> >>    > @@ -732,6 +732,22 @@ EOM
> >>    >      threads=`cat /proc/cpuinfo | grep -c processor`
> >>    >      sed -i "s/^PARALLEL_MAKE.*/PARALLEL_MAKE = \"-j
> >${threads}\"/"
> >>    > $confdir/local.conf
> >>    >      sed -i "s/^BB_NUMBER_THREADS.*/BB_NUMBER_THREADS =
> >>    > \"${threads}\"/" $confdir/local.conf
> >>    > +
> >>    > +    # Find if old DL_DIR was set
> >>    > +    if [ -e $confdir/local.conf.bak ]
> >>    > +    then
> >>    > +        old_dldir=`cat $confdir/local.conf.bak | grep -e
> >"^DL_DIR =" |
> >>    sed
> >>    > 's|DL_DIR = ||' | sed 's/"//g'`
> >>    > +    else
> >>    > +        old_dldir="$dldir"
> >>    > +    fi
> >>    > +
> >>    > +    # If command line option was not set use the old dldir
> >>    > +    if [ "x$dldir" == "x" ]
> >>    > +    then
> >>    > +        dldir=$old_dldir
> >>    > +    fi
> >>    > +
> >>    > +    sed -i "s|^DL_DIR.*|DL_DIR = \"${dldir}\"|"
> >$confdir/local.conf
> >>    >  }
> >>    >
> >>    >
> >>    > @@ -838,7 +854,6 @@ cd -
> >>    >  sourcedir="$oebase/sources"
> >>    >  builddir="$oebase/build"
> >>    >  confdir="$builddir/conf"
> >>    > -dldir="$oebase/downloads"
> >>    >
> >>    >  check_input
> >>    >
> >>    > --
> >>    > 1.7.0.4
> >>    >
> >>    > _______________________________________________
> >>    > meta-arago mailing list
> >>    > meta-arago@arago-project.org
> >>    > http://arago-project.org/cgi-bin/mailman/listinfo/meta-
> >arago
> >>    _______________________________________________
> >>    meta-arago mailing list
> >>    meta-arago@arago-project.org
> >>    http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


  reply	other threads:[~2013-09-26 20:19 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-24 20:50 [PATCHv2] oe-layertool-setup.sh: properly set DL_DIR Chase Maupin
2013-09-24 20:10 ` Cooper Jr., Franklin
2013-09-24 20:18   ` Dmytriyenko, Denys
2013-09-24 20:23     ` Maupin, Chase
2013-09-26 20:00     ` Denys Dmytriyenko
2013-09-26 20:16       ` Maupin, Chase
2013-09-26 20:19         ` Denys Dmytriyenko [this message]
2013-09-26 20:19           ` Maupin, Chase

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130926201902.GB16261@edge \
    --to=denys@ti.com \
    --cc=chase.maupin@ti.com \
    --cc=fcooper@ti.com \
    --cc=meta-arago@arago-project.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.