From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from 93-97-173-237.zone5.bethere.co.uk ([93.97.173.237] helo=tim.rpsys.net) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1QnsKg-0001Wn-On for openembedded-core@lists.openembedded.org; Mon, 01 Aug 2011 15:14:59 +0200 Received: from localhost (localhost [127.0.0.1]) by tim.rpsys.net (8.13.6/8.13.8) with ESMTP id p71DAeFQ007323 for ; Mon, 1 Aug 2011 14:10:40 +0100 Received: from tim.rpsys.net ([127.0.0.1]) by localhost (tim.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 04933-10 for ; Mon, 1 Aug 2011 14:10:36 +0100 (BST) Received: from [192.168.3.10] ([192.168.3.10]) (authenticated bits=0) by tim.rpsys.net (8.13.6/8.13.8) with ESMTP id p71DAXvf007317 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 1 Aug 2011 14:10:34 +0100 From: Richard Purdie To: Patches and discussions about the oe-core layer In-Reply-To: References: Date: Mon, 01 Aug 2011 14:10:20 +0100 Message-ID: <1312204220.2344.436.camel@rex> Mime-Version: 1.0 X-Mailer: Evolution 2.32.2 X-Virus-Scanned: amavisd-new at rpsys.net Subject: Re: [PATCH 20/22] arch-armv7a.inc: fix armv7a-vfp-neon -> armv7a compat case X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Aug 2011 13:14:59 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit On Mon, 2011-08-01 at 00:36 -0700, Saul Wold wrote: > From: Koen Kooi > > Without this 'armv7a' is used as TUNE_ARCH but does *not* end up in PACKAGE_EXTRA_ARCHS: > > arch all 1 > arch any 6 > arch noarch 11 > arch arm 16 > arch armv4 21 > arch armv4t 26 > arch armv5 31 > arch armv5t 36 > arch armv5-vfp 41 > arch armv5t-vfp 46 > arch armv5e 51 > arch armv5te 56 > arch armv5e-vfp 61 > arch armv5te-vfp 66 > arch armv6-vfp 71 > arch armv6t-vfp 76 > arch armv7-vfp 81 > arch armv7t2-vfp 86 > arch armv7a-vfp 91 > arch armv7at2-vfp 96 > arch armv7a-vfp-neon 101 > arch armv7at2-vfp-neon 106 > arch beagleboard 111 > > Which leads to a failing do_rootfs > > The fix might look like it's in the wrong line, but it's only place in the .inc where it works. > > Signed-off-by: Koen Kooi > --- > meta/conf/machine/include/arm/arch-armv7a.inc | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/meta/conf/machine/include/arm/arch-armv7a.inc b/meta/conf/machine/include/arm/arch-armv7a.inc > index ce9cee5..6ac2950 100644 > --- a/meta/conf/machine/include/arm/arch-armv7a.inc > +++ b/meta/conf/machine/include/arm/arch-armv7a.inc > @@ -17,7 +17,7 @@ TUNE_FEATURES_tune-armv7at-neon ?= "armv7a vfp neon thumb" > PACKAGE_EXTRA_ARCHS_tune-armv7a = "${PACKAGE_EXTRA_ARCHS_tune-armv7} armv7a-vfp" > PACKAGE_EXTRA_ARCHS_tune-armv7a-neon = "${PACKAGE_EXTRA_ARCHS_tune-armv7a} armv7a-vfp-neon" > PACKAGE_EXTRA_ARCHS_tune-armv7at = "${PACKAGE_EXTRA_ARCHS_tune-armv7t} armv7a-vfp armv7at2-vfp" > -PACKAGE_EXTRA_ARCHS_tune-armv7at-neon = "${PACKAGE_EXTRA_ARCHS_tune-armv7at} armv7a-vfp-neon armv7at2-vfp-neon" > +PACKAGE_EXTRA_ARCHS_tune-armv7at-neon = "${PACKAGE_EXTRA_ARCHS_tune-armv7at} armv7a armv7a-vfp-neon armv7at2-vfp-neon" Nearly :) You need to add it to the PACKAGE_EXTRA_ARCHS_tune-armv7a and PACKAGE_EXTRA_ARCHS_tune-armv7at lines. Cheers, Richard