From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 28974E0090E; Tue, 17 Mar 2015 12:27:34 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low * trust * [209.85.220.49 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mail-pa0-f49.google.com (mail-pa0-f49.google.com [209.85.220.49]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id A2555E00753 for ; Tue, 17 Mar 2015 12:27:31 -0700 (PDT) Received: by pacwe9 with SMTP id we9so18233697pac.1 for ; Tue, 17 Mar 2015 12:27:31 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=HDFTjVy0L/chBqOXfR250X7N8AyUpIR+uNPOuMrLLKI=; b=SuKmLtts6ZsqtuKbGOcjnfdAwmRIsP9Mcb9gXGVBKyBMis72MBeGFJ/1IW1xHiLBOH Jjjq8Z3LzmwUorBkkInADi/gpJuSs/tZ9Isow/mN/cEt00MoHvg9qMWuOpcKDOnjwDLl u5IliJW6AkWECMQ11lNkbO2oma/MDAhJHjCn53zdYmiWg/+Bktpdyj9KqhAdXd2WD4+P FtXaXkI8c3ZtYlS84Illa848TyhcQ/lLH/7m0eTmm55PEX0M1GWX/+hAu+b5e8suC08I gtoWjluL/NBvieiYX/nu0FNtbUpeRgWE6ZXzd374j/tuhFoJBHHsyECFjILfr9ugYhdz KOTQ== X-Gm-Message-State: ALoCoQlalMihiI0HFspRfmC2maEzTRfXQpUEI0DNr22cYD09cGN9BcSkAzZ6jXfR1gGUa8owkVG+ X-Received: by 10.70.124.166 with SMTP id mj6mr142849453pdb.97.1426620451460; Tue, 17 Mar 2015 12:27:31 -0700 (PDT) Received: from [192.168.200.5] (wsip-70-184-93-199.ph.ph.cox.net. [70.184.93.199]) by mx.google.com with ESMTPSA id kn5sm23710700pdb.42.2015.03.17.12.27.29 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 17 Mar 2015 12:27:30 -0700 (PDT) Message-ID: <55088020.6090401@boundarydevices.com> Date: Tue, 17 Mar 2015 12:27:28 -0700 From: Eric Nelson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: meta-freescale@yoctoproject.org, Otavio Salvador References: <1426613716-23335-1-git-send-email-ian@boundarydevices.com> In-Reply-To: <1426613716-23335-1-git-send-email-ian@boundarydevices.com> Subject: Re: [meta-fsl-arm-extra][PATCH] u-boot-script-boundary: Allow custom bootscripts X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2015 19:27:34 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Hi Otavio, On 03/17/2015 10:35 AM, Ian Coolidge wrote: > Removes redundant BOOTSCRIPT line > Changed BOOTSCRIPT to allow choice in local.conf > > Signed-off-by: Ian Coolidge > --- Did you miss the "dizzy" here? > For Master and Dizzy branches > recipes-bsp/u-boot/u-boot-script-boundary_git.bb | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb > index 5c91471..fbb5bc2 100644 > --- a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb > +++ b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb > @@ -12,9 +12,8 @@ S = "${WORKDIR}/git" > > inherit deploy > > -BOOTSCRIPT = "${S}/board/boundary/${MACHINE}/6x_bootscript-yocto.txt" > -BOOTSCRIPT_nitrogen6x = "${S}/board/boundary/nitrogen6x/6x_bootscript-yocto.txt" > -BOOTSCRIPT_nitrogen6x-lite = "${S}/board/boundary/nit6xlite/6x_bootscript-yocto.txt" > +BOOTSCRIPT ?= "${S}/board/boundary/${MACHINE}/6x_bootscript-yocto.txt" > +BOOTSCRIPT_nitrogen6x-lite ?= "${S}/board/boundary/nit6xlite/6x_bootscript-yocto.txt" > > UPGRADESCRIPT = "${S}/board/boundary/nitrogen6x/6x_upgrade.txt" > >