From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 83656E00CE1; Mon, 29 Feb 2016 07:59:15 -0800 (PST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from dan.rpsys.net (5751f4a1.skybroadband.com [87.81.244.161]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id BEEFEE008E1 for ; Mon, 29 Feb 2016 07:59:10 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id u1TFx6EG016209; Mon, 29 Feb 2016 15:59:06 GMT Received: from dan.rpsys.net ([127.0.0.1]) by localhost (dan.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xGAmPFDDjhBf; Mon, 29 Feb 2016 15:59:06 +0000 (GMT) Received: from hex ([192.168.3.34]) (authenticated bits=0) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id u1TFx1vP016202 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NOT); Mon, 29 Feb 2016 15:59:02 GMT Message-ID: <1456761541.11498.179.camel@linuxfoundation.org> From: Richard Purdie To: Belen Barros Pena , toaster@yoctoproject.org Date: Mon, 29 Feb 2016 15:59:01 +0000 In-Reply-To: <1456760675-47646-1-git-send-email-belen.barros.pena@linux.intel.com> References: <1456760675-47646-1-git-send-email-belen.barros.pena@linux.intel.com> X-Mailer: Evolution 3.16.5-1ubuntu3.1 Mime-Version: 1.0 Subject: Re: [PATCH] toaster: change TOASTER_CONF to meta-poky X-BeenThere: toaster@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Web based interface for BitBake List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Feb 2016 15:59:15 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit On Mon, 2016-02-29 at 15:44 +0000, Belen Barros Pena wrote: > From: Belen Barros Pena > > Patch 9d5483c37523ff3d334c98cafb848282b54962cd renames the layer > within > the meta-yocto repository to meta-poky. This patch changes the value > of > TOASTER_CONF in the toaster set up script to get Toaster to import > the > meta-poky/conf/toasterconf.json file. > > Signed-off-by: Belen Barros Pena > --- > bitbake/bin/toaster | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster > index 72eae64..4e709ab 100755 > --- a/bitbake/bin/toaster > +++ b/bitbake/bin/toaster > @@ -248,7 +248,7 @@ fi > # in the local layers that currently prevent using an arbitrary > # toasterconf.json > if [ "$TOASTER_CONF" = "" ]; then > - TOASTER_CONF="$(dirname $TOASTER)/../../meta > -yocto/conf/toasterconf.json" > + TOASTER_CONF="$(dirname $TOASTER)/../../meta > -poky/conf/toasterconf.json" > export TOASTER_CONF=$(python -c "import os; print > os.path.realpath('$TOASTER_CONF')") > fi > if [ ! -f $TOASTER_CONF ]; then Do we still need this or can this be removed given the TEMPLATECONF code above it in this file? bitbake really shouldn't have OE/Yocto knowledge ideally. Cheers, Richard