Re: [yocto] [Yocto][poky][meta] already-stripped ignore if set for any other package then INSANE_SKIP_${PN}

2018-10-17 Thread Måns Zigher
Maybe update the documentation I think Andre McCurdy stated it clearly. English is not my first language but maybe something like "Depending on when a QA test is running it may or may not be disabled per-package basis. For example "already-stripped" can only be applied on INSANE_SKIP_${PN} while

Re: [yocto] [Yocto][poky][meta] already-stripped ignore if set for any other package then INSANE_SKIP_${PN}

2018-10-16 Thread Måns Zigher
Thank you for the clarification that helps BR Måns Zigher Den ons 17 okt. 2018 kl 00:36 skrev Andre McCurdy : > On Tue, Oct 16, 2018 at 6:47 AM, Burton, Ross > wrote: > > It's only already-stripped that needs to be on PN, because the > > stripping happens before packaging. When

Re: [yocto] [Yocto][poky][meta] already-stripped ignore if set for any other package then INSANE_SKIP_${PN}

2018-10-16 Thread Andre McCurdy
On Tue, Oct 16, 2018 at 6:47 AM, Burton, Ross wrote: > It's only already-stripped that needs to be on PN, because the > stripping happens before packaging. When already-stripped files, > there are no packages yet. > > Ross > On Tue, 16 Oct 2018 at 14:22, Måns Zigher wrote: >> >> Ok so it is not

Re: [yocto] [Yocto][poky][meta] already-stripped ignore if set for any other package then INSANE_SKIP_${PN}

2018-10-16 Thread Burton, Ross
It's only already-stripped that needs to be on PN, because the stripping happens before packaging. When already-stripped files, there are no packages yet. Ross On Tue, 16 Oct 2018 at 14:22, Måns Zigher wrote: > > Ok so it is not supported to have the already-stripped on a package level? I >

Re: [yocto] [Yocto][poky][meta] already-stripped ignore if set for any other package then INSANE_SKIP_${PN}

2018-10-16 Thread Måns Zigher
Ok so it is not supported to have the already-stripped on a package level? I cannot set it on PN because I have some so-files that is already stripped and others that is not so that was why I wanted to create a package for the already-stripped so-files and use the already-stripped on that package.

Re: [yocto] [Yocto][poky][meta] already-stripped ignore if set for any other package then INSANE_SKIP_${PN}

2018-10-15 Thread Burton, Ross
Ah yes, of course. Stripping happens *before* package splitting, so it doesn't make sense to have it set on PN-package1. Just set it on PN and it should work. Ross On Mon, 15 Oct 2018 at 08:18, Måns Zigher wrote: > > Hi, > > Sorry I see now that there is a typo. What I mean is that in the

Re: [yocto] [Yocto][poky][meta] already-stripped ignore if set for any other package then INSANE_SKIP_${PN}

2018-10-15 Thread Måns Zigher
Hi, Sorry I see now that there is a typo. What I mean is that in the default package I am not suing INSANE_SKIP but for packag1 I need already-stripped INSANE_SKIP_${PN}-package1 = " \ dev-so \ already-stripped \ " But I continuously get the error that they are already-stripped. So is it

Re: [yocto] [Yocto][poky][meta] already-stripped ignore if set for any other package then INSANE_SKIP_${PN}

2018-10-12 Thread Burton, Ross
On Thu, 11 Oct 2018 at 18:14, Måns Zigher wrote: > I have been struggling with a problem where I need to create a package in a > recipe and set already-stripped for that package. The package in question is > not the the default one so I am trying to set it by using > > INSANE_SKIP_${PN} += " \

[yocto] [Yocto][poky][meta] already-stripped ignore if set for any other package then INSANE_SKIP_${PN}

2018-10-11 Thread Måns Zigher
Hi, I have been struggling with a problem where I need to create a package in a recipe and set already-stripped for that package. The package in question is not the the default one so I am trying to set it by using INSANE_SKIP_${PN} += " \ dev-so \ already-stripped \ " But the result is like it