From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail1.windriver.com (mail1.windriver.com [147.11.146.13]) by mail.openembedded.org (Postfix) with ESMTP id EB24E65D56 for ; Tue, 19 Aug 2014 18:42:54 +0000 (UTC) Received: from ALA-HCA.corp.ad.wrs.com (ala-hca.corp.ad.wrs.com [147.11.189.40]) by mail1.windriver.com (8.14.9/8.14.5) with ESMTP id s7JIgumo025810 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL) for ; Tue, 19 Aug 2014 11:42:56 -0700 (PDT) Received: from [128.224.56.48] (128.224.56.48) by ALA-HCA.corp.ad.wrs.com (147.11.189.50) with Microsoft SMTP Server id 14.3.174.1; Tue, 19 Aug 2014 11:42:55 -0700 Message-ID: <53F39AA2.4020405@windriver.com> Date: Tue, 19 Aug 2014 14:42:42 -0400 From: Bruce Ashfield User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Yang Shi , References: <1408473570-17890-1-git-send-email-yang.shi@windriver.com> In-Reply-To: <1408473570-17890-1-git-send-email-yang.shi@windriver.com> Subject: Re: [V2 PATCH] kernel: Prevent from installing so files into source dir X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Aug 2014 18:42:57 -0000 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit On 14-08-19 02:39 PM, Yang Shi wrote: > vdso build could generate so files, avoid installing such so files into kernel > source dir, otherwise the below package QA error might be hit: > > ERROR: QA Issue: File '/usr/src/kernel/arch/x86/vdso/vdso64.so' from > linux-windriver was already stripped, this will prevent future We wouldn't want to capture linux-windriver in the commit log .. I assume that this is possible to see with the stock linux-yocto kernel as well ? Bruce > debugging! [already-stripped] > > Signed-off-by: Yang Shi > --- > meta/classes/kernel.bbclass | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass > index 819c302..435b6f0 100644 > --- a/meta/classes/kernel.bbclass > +++ b/meta/classes/kernel.bbclass > @@ -253,7 +253,7 @@ kernel_do_install() { > # dir. This ensures the original Makefiles are used and not the > # redirecting Makefiles in the build directory. > # > - find . -depth -not -name "*.cmd" -not -name "*.o" -not -name "*.so.dbg" -not -path "./Documentation*" -not -path "./source*" -not -path "./.*" -print0 | cpio --null -pdlu $kerneldir > + find . -depth -not -name "*.cmd" -not -name "*.o" -not -name "*.so.dbg" -not -name "*.so" -not -path "./Documentation*" -not -path "./source*" -not -path "./.*" -print0 | cpio --null -pdlu $kerneldir > cp .config $kerneldir > if [ "${S}" != "${B}" ]; then > pwd="$PWD" >