From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from tx2outboundpool.messaging.microsoft.com (tx2ehsobe005.messaging.microsoft.com [65.55.88.15]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id F18A9E013AD for ; Fri, 6 Sep 2013 04:59:06 -0700 (PDT) Received: from mail19-tx2-R.bigfish.com (10.9.14.238) by TX2EHSOBE009.bigfish.com (10.9.40.29) with Microsoft SMTP Server id 14.1.225.22; Fri, 6 Sep 2013 11:59:05 +0000 Received: from mail19-tx2 (localhost [127.0.0.1]) by mail19-tx2-R.bigfish.com (Postfix) with ESMTP id 775C23A00AC; Fri, 6 Sep 2013 11:59:05 +0000 (UTC) X-Forefront-Antispam-Report: CIP:70.37.183.190; KIP:(null); UIP:(null); IPV:NLI; H:mail.freescale.net; RD:none; EFVD:NLI X-SpamScore: -1 X-BigFish: VS-1(zzbb2dI98dI9371I1432I8b9ckzz1f42h208ch1ee6h1de0h1fdah2073h1202h1e76h1d1ah1d2ah1fc6hzz1de098h1de097h8275bhz2dh2a8h839h947hd25he5bhf0ah1288h12a5h12a9h12bdh137ah13b6h1441h1504h1537h153bh162dh1631h1758h1765h18e1h190ch1946h19b4h19c3h1ad9h1b0ah1b2fh1fb3h1d0ch1d2eh1d3fh1dfeh1dffh1f5fh1fe8h1ff5h209eh1155h) Received: from mail19-tx2 (localhost.localdomain [127.0.0.1]) by mail19-tx2 (MessageSwitch) id 137846874434086_22509; Fri, 6 Sep 2013 11:59:04 +0000 (UTC) Received: from TX2EHSMHS044.bigfish.com (unknown [10.9.14.231]) by mail19-tx2.bigfish.com (Postfix) with ESMTP id 0296A80041; Fri, 6 Sep 2013 11:59:04 +0000 (UTC) Received: from mail.freescale.net (70.37.183.190) by TX2EHSMHS044.bigfish.com (10.9.99.144) with Microsoft SMTP Server (TLS) id 14.16.227.3; Fri, 6 Sep 2013 11:59:03 +0000 Received: from tx30smr01.am.freescale.net (10.81.153.31) by 039-SN1MMR1-003.039d.mgd.msft.net (10.84.1.16) with Microsoft SMTP Server (TLS) id 14.3.158.2; Fri, 6 Sep 2013 11:59:03 +0000 Received: from [10.29.244.63] ([10.29.244.63]) by tx30smr01.am.freescale.net (8.14.3/8.14.0) with ESMTP id r86Bx03N014745; Fri, 6 Sep 2013 04:59:02 -0700 Message-ID: <5229C29B.7000702@freescale.com> Date: Fri, 6 Sep 2013 08:55:07 -0300 From: Daiane Angolini User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130803 Thunderbird/17.0.8 MIME-Version: 1.0 To: Alexandre Belloni References: <1378416122-16832-1-git-send-email-alexandre.belloni@free-electrons.com> <1378416122-16832-2-git-send-email-alexandre.belloni@free-electrons.com> In-Reply-To: <1378416122-16832-2-git-send-email-alexandre.belloni@free-electrons.com> X-OriginatorOrg: freescale.com X-FOPE-CONNECTOR: Id%0$Dn%*$RO%0$TLS%0$FQDN%$TlsDn% Cc: meta-freescale@yoctoproject.org, Maxime Ripard , jimwall@q.com, brian@crystalfontz.com Subject: Re: [meta-fsl-arm-extra][PATCH 1/8] linux-cfa: always use cfa10036 as MACHINE for the kernel link 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: Fri, 06 Sep 2013 11:59:10 -0000 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit On 09/05/2013 06:21 PM, Alexandre Belloni wrote: > Barebox is configured to always look for a kernel image named > zImage-cfa10036. > > Signed-off-by: Alexandre Belloni > --- > recipes-kernel/linux/linux-cfa_3.10.bb | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/recipes-kernel/linux/linux-cfa_3.10.bb b/recipes-kernel/linux/linux-cfa_3.10.bb > index 2c2a723..bccca1c 100644 > --- a/recipes-kernel/linux/linux-cfa_3.10.bb > +++ b/recipes-kernel/linux/linux-cfa_3.10.bb > @@ -26,7 +26,7 @@ pkg_postinst_kernel-devicetree_append () { > } > > pkg_postinst_kernel-image_append () { > - update-alternatives --install /${KERNEL_IMAGEDEST}/${KERNEL_IMAGETYPE}-${MACHINE} ${KERNEL_IMAGETYPE}-${MACHINE} ${KERNEL_IMAGETYPE}-${KERNEL_VERSION} ${KERNEL_PRIORITY} || true > + update-alternatives --install /${KERNEL_IMAGEDEST}/${KERNEL_IMAGETYPE}-cfa10036 ${KERNEL_IMAGETYPE}-cfa10036 ${KERNEL_IMAGETYPE}-${KERNEL_VERSION} ${KERNEL_PRIORITY} || true why do you need to explicitly use cfa10036 if your bbappend is COMPATIBLE_MACHINE on "cfa10036"? will you use zImage-cfa10036 for other boards with a different name? And when you include a that new machine will increase the COMPATIBLE_MACHINE string? > } > > COMPATIBLE_MACHINE = "cfa10036" > -- Daiane