All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tune-core2: use n270 instead of core2duo
@ 2018-09-13  7:25 Anuj Mittal
  2018-09-13 21:33 ` Andre McCurdy
  0 siblings, 1 reply; 7+ messages in thread
From: Anuj Mittal @ 2018-09-13  7:25 UTC (permalink / raw)
  To: openembedded-core

Fixes warnings in builds using core2-32 tune:

warning: TCG doesn't support requested feature: CPUID.80000001H:EDX.syscall [bit 11]
warning: TCG doesn't support requested feature: CPUID.80000001H:EDX.lm [bit 29]

when executing postinsts using qemu-i386.

i386 target doesn't enable CPUID_EXT2_SYSCALL and CPUID_EXT2_LM [1]
while cpu choice of core2duo that we use for core2-32 TUNE does [2].
Use n270 cpu instead to use with qemu which supports SSSE3 and doesn't
have these bits enabled [3].

[1] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L739
[2] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L1439
[3] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L1603

Fixes [YOCTO #12916]

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
---
 meta/conf/machine/include/tune-core2.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/conf/machine/include/tune-core2.inc b/meta/conf/machine/include/tune-core2.inc
index c686bb4682..ddde719bde 100644
--- a/meta/conf/machine/include/tune-core2.inc
+++ b/meta/conf/machine/include/tune-core2.inc
@@ -21,7 +21,7 @@ TUNE_FEATURES_tune-core2-32 = "${TUNE_FEATURES_tune-x86} core2"
 BASE_LIB_tune-core2-32 = "lib"
 TUNE_PKGARCH_tune-core2-32 = "core2-32"
 PACKAGE_EXTRA_ARCHS_tune-core2-32 = "${PACKAGE_EXTRA_ARCHS_tune-i686} core2-32"
-QEMU_EXTRAOPTIONS_core2-32 = " -cpu core2duo"
+QEMU_EXTRAOPTIONS_core2-32 = " -cpu n270"
 
 AVAILTUNES += "core2-64"
 TUNE_FEATURES_tune-core2-64 = "${TUNE_FEATURES_tune-x86-64} core2"
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] tune-core2: use n270 instead of core2duo
  2018-09-13  7:25 [PATCH] tune-core2: use n270 instead of core2duo Anuj Mittal
@ 2018-09-13 21:33 ` Andre McCurdy
  2018-09-13 22:16   ` Martin Jansa
  0 siblings, 1 reply; 7+ messages in thread
From: Andre McCurdy @ 2018-09-13 21:33 UTC (permalink / raw)
  To: Anuj Mittal; +Cc: OE Core mailing list

On Thu, Sep 13, 2018 at 12:25 AM, Anuj Mittal <anuj.mittal@intel.com> wrote:
> Fixes warnings in builds using core2-32 tune:
>
> warning: TCG doesn't support requested feature: CPUID.80000001H:EDX.syscall [bit 11]
> warning: TCG doesn't support requested feature: CPUID.80000001H:EDX.lm [bit 29]
>
> when executing postinsts using qemu-i386.
>
> i386 target doesn't enable CPUID_EXT2_SYSCALL and CPUID_EXT2_LM [1]
> while cpu choice of core2duo that we use for core2-32 TUNE does [2].
> Use n270 cpu instead to use with qemu which supports SSSE3 and doesn't
> have these bits enabled [3].
>
> [1] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L739
> [2] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L1439
> [3] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L1603
>
> Fixes [YOCTO #12916]

Is this working around a bug in qemu?

> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>> ---
>  meta/conf/machine/include/tune-core2.inc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/conf/machine/include/tune-core2.inc b/meta/conf/machine/include/tune-core2.inc
> index c686bb4682..ddde719bde 100644
> --- a/meta/conf/machine/include/tune-core2.inc
> +++ b/meta/conf/machine/include/tune-core2.inc
> @@ -21,7 +21,7 @@ TUNE_FEATURES_tune-core2-32 = "${TUNE_FEATURES_tune-x86} core2"
>  BASE_LIB_tune-core2-32 = "lib"
>  TUNE_PKGARCH_tune-core2-32 = "core2-32"
>  PACKAGE_EXTRA_ARCHS_tune-core2-32 = "${PACKAGE_EXTRA_ARCHS_tune-i686} core2-32"
> -QEMU_EXTRAOPTIONS_core2-32 = " -cpu core2duo"
> +QEMU_EXTRAOPTIONS_core2-32 = " -cpu n270"
>
>  AVAILTUNES += "core2-64"
>  TUNE_FEATURES_tune-core2-64 = "${TUNE_FEATURES_tune-x86-64} core2"
> --
> 2.17.1
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] tune-core2: use n270 instead of core2duo
  2018-09-13 21:33 ` Andre McCurdy
@ 2018-09-13 22:16   ` Martin Jansa
  2018-09-13 22:50     ` Andre McCurdy
  0 siblings, 1 reply; 7+ messages in thread
From: Martin Jansa @ 2018-09-13 22:16 UTC (permalink / raw)
  To: Andre McCurdy; +Cc: Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 2896 bytes --]

Is this different issue than what was discussed in:
https://www.mail-archive.com/openembedded-core@lists.openembedded.org/msg109516.html

The message is slightly different (might be changed in newer qemu used
now), but the issue I had before was that features of selected -cpu and
host cpu didn't match and qemu failed with:
qemu-system-x86_64: warning: host doesn't support requested feature:
CPUID.01H:EDX.ss [bit 27]
when some features were missing and kvm was used.

If it's the same root cause, then it's not a bug in qemu.

On Thu, Sep 13, 2018 at 11:33 PM Andre McCurdy <armccurdy@gmail.com> wrote:

> On Thu, Sep 13, 2018 at 12:25 AM, Anuj Mittal <anuj.mittal@intel.com>
> wrote:
> > Fixes warnings in builds using core2-32 tune:
> >
> > warning: TCG doesn't support requested feature:
> CPUID.80000001H:EDX.syscall [bit 11]
> > warning: TCG doesn't support requested feature: CPUID.80000001H:EDX.lm
> [bit 29]
> >
> > when executing postinsts using qemu-i386.
> >
> > i386 target doesn't enable CPUID_EXT2_SYSCALL and CPUID_EXT2_LM [1]
> > while cpu choice of core2duo that we use for core2-32 TUNE does [2].
> > Use n270 cpu instead to use with qemu which supports SSSE3 and doesn't
> > have these bits enabled [3].
> >
> > [1] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L739
> > [2] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L1439
> > [3] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L1603
> >
> > Fixes [YOCTO #12916]
>
> Is this working around a bug in qemu?
>
> > Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>> ---
> >  meta/conf/machine/include/tune-core2.inc | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/meta/conf/machine/include/tune-core2.inc
> b/meta/conf/machine/include/tune-core2.inc
> > index c686bb4682..ddde719bde 100644
> > --- a/meta/conf/machine/include/tune-core2.inc
> > +++ b/meta/conf/machine/include/tune-core2.inc
> > @@ -21,7 +21,7 @@ TUNE_FEATURES_tune-core2-32 =
> "${TUNE_FEATURES_tune-x86} core2"
> >  BASE_LIB_tune-core2-32 = "lib"
> >  TUNE_PKGARCH_tune-core2-32 = "core2-32"
> >  PACKAGE_EXTRA_ARCHS_tune-core2-32 = "${PACKAGE_EXTRA_ARCHS_tune-i686}
> core2-32"
> > -QEMU_EXTRAOPTIONS_core2-32 = " -cpu core2duo"
> > +QEMU_EXTRAOPTIONS_core2-32 = " -cpu n270"
> >
> >  AVAILTUNES += "core2-64"
> >  TUNE_FEATURES_tune-core2-64 = "${TUNE_FEATURES_tune-x86-64} core2"
> > --
> > 2.17.1
> >
> > --
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-core
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>

[-- Attachment #2: Type: text/html, Size: 4534 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] tune-core2: use n270 instead of core2duo
  2018-09-13 22:16   ` Martin Jansa
@ 2018-09-13 22:50     ` Andre McCurdy
  2018-09-13 23:46       ` Anuj Mittal
  2018-09-14 10:43       ` Burton, Ross
  0 siblings, 2 replies; 7+ messages in thread
From: Andre McCurdy @ 2018-09-13 22:50 UTC (permalink / raw)
  To: Martin Jansa; +Cc: Patches and discussions about the oe-core layer

On Thu, Sep 13, 2018 at 3:16 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> Is this different issue than what was discussed in:
> https://www.mail-archive.com/openembedded-core@lists.openembedded.org/msg109516.html
>
> The message is slightly different (might be changed in newer qemu used now),
> but the issue I had before was that features of selected -cpu and host cpu
> didn't match and qemu failed with:
> qemu-system-x86_64: warning: host doesn't support requested feature:
> CPUID.01H:EDX.ss [bit 27]
> when some features were missing and kvm was used.
>
> If it's the same root cause, then it's not a bug in qemu.

Thanks. Looks like it could be the same issue - if qemu is running
with KVM on a host which isn't natively compatible with the full
core2duo feature set.

From the Yocto bug these warnings are coming from the nightly builds:

  https://bugzilla.yoctoproject.org/show_bug.cgi?id=12916

Has something changed recently? Have the nightly builds moved onto an
AMD machine?


> On Thu, Sep 13, 2018 at 11:33 PM Andre McCurdy <armccurdy@gmail.com> wrote:
>>
>> On Thu, Sep 13, 2018 at 12:25 AM, Anuj Mittal <anuj.mittal@intel.com>
>> wrote:
>> > Fixes warnings in builds using core2-32 tune:
>> >
>> > warning: TCG doesn't support requested feature:
>> > CPUID.80000001H:EDX.syscall [bit 11]
>> > warning: TCG doesn't support requested feature: CPUID.80000001H:EDX.lm
>> > [bit 29]
>> >
>> > when executing postinsts using qemu-i386.
>> >
>> > i386 target doesn't enable CPUID_EXT2_SYSCALL and CPUID_EXT2_LM [1]
>> > while cpu choice of core2duo that we use for core2-32 TUNE does [2].
>> > Use n270 cpu instead to use with qemu which supports SSSE3 and doesn't
>> > have these bits enabled [3].
>> >
>> > [1] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L739
>> > [2] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L1439
>> > [3] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L1603
>> >
>> > Fixes [YOCTO #12916]
>>
>> Is this working around a bug in qemu?
>>
>> > Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>> ---
>> >  meta/conf/machine/include/tune-core2.inc | 2 +-
>> >  1 file changed, 1 insertion(+), 1 deletion(-)
>> >
>> > diff --git a/meta/conf/machine/include/tune-core2.inc
>> > b/meta/conf/machine/include/tune-core2.inc
>> > index c686bb4682..ddde719bde 100644
>> > --- a/meta/conf/machine/include/tune-core2.inc
>> > +++ b/meta/conf/machine/include/tune-core2.inc
>> > @@ -21,7 +21,7 @@ TUNE_FEATURES_tune-core2-32 =
>> > "${TUNE_FEATURES_tune-x86} core2"
>> >  BASE_LIB_tune-core2-32 = "lib"
>> >  TUNE_PKGARCH_tune-core2-32 = "core2-32"
>> >  PACKAGE_EXTRA_ARCHS_tune-core2-32 = "${PACKAGE_EXTRA_ARCHS_tune-i686}
>> > core2-32"
>> > -QEMU_EXTRAOPTIONS_core2-32 = " -cpu core2duo"
>> > +QEMU_EXTRAOPTIONS_core2-32 = " -cpu n270"
>> >
>> >  AVAILTUNES += "core2-64"
>> >  TUNE_FEATURES_tune-core2-64 = "${TUNE_FEATURES_tune-x86-64} core2"
>> > --
>> > 2.17.1
>> >
>> > --
>> > _______________________________________________
>> > Openembedded-core mailing list
>> > Openembedded-core@lists.openembedded.org
>> > http://lists.openembedded.org/mailman/listinfo/openembedded-core
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] tune-core2: use n270 instead of core2duo
  2018-09-13 22:50     ` Andre McCurdy
@ 2018-09-13 23:46       ` Anuj Mittal
  2018-09-14  0:03         ` Andre McCurdy
  2018-09-14 10:43       ` Burton, Ross
  1 sibling, 1 reply; 7+ messages in thread
From: Anuj Mittal @ 2018-09-13 23:46 UTC (permalink / raw)
  To: Andre McCurdy, Martin Jansa
  Cc: Patches and discussions about the oe-core layer

On 09/14/2018 06:50 AM, Andre McCurdy wrote:
> On Thu, Sep 13, 2018 at 3:16 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
>> Is this different issue than what was discussed in:
>> https://www.mail-archive.com/openembedded-core@lists.openembedded.org/msg109516.html
>>
>> The message is slightly different (might be changed in newer qemu used now),
>> but the issue I had before was that features of selected -cpu and host cpu
>> didn't match and qemu failed with:
>> qemu-system-x86_64: warning: host doesn't support requested feature:
>> CPUID.01H:EDX.ss [bit 27]
>> when some features were missing and kvm was used.
>>

The message is different in this case because that one was for KVM, this
one is when using user space emulation so it's checking what can be
emulated and what is being asked by way of -cpu parameter [1].

>> If it's the same root cause, then it's not a bug in qemu.
> 
> Thanks. Looks like it could be the same issue - if qemu is running
> with KVM on a host which isn't natively compatible with the full
> core2duo feature set.

Similar problem, but a different issue in my opinion. So these features
(lm, syscall) that we see warnings about are only seen when building for
32 bit while running qemu-i386 for executing postinsts.

Looking at qemu commit logs, it doesn't look like these two features are
supported with qemu-i386. So, I changed the qemu -cpu value that is used
with qemu-i386 to a lower denominator which still supports the
instruction set that we build for for 32 bit.

[1] https://wiki.qemu.org/Documentation/TCG
[2]
https://github.com/qemu/qemu/commit/4586f157757acc5c8edcc954289c7aa51661235c

> 
> From the Yocto bug these warnings are coming from the nightly builds:
> 
>   https://bugzilla.yoctoproject.org/show_bug.cgi?id=12916
> 
> Has something changed recently? Have the nightly builds moved onto an
> AMD machine?
> 
> 
>> On Thu, Sep 13, 2018 at 11:33 PM Andre McCurdy <armccurdy@gmail.com> wrote:
>>>
>>> On Thu, Sep 13, 2018 at 12:25 AM, Anuj Mittal <anuj.mittal@intel.com>
>>> wrote:
>>>> Fixes warnings in builds using core2-32 tune:
>>>>
>>>> warning: TCG doesn't support requested feature:
>>>> CPUID.80000001H:EDX.syscall [bit 11]
>>>> warning: TCG doesn't support requested feature: CPUID.80000001H:EDX.lm
>>>> [bit 29]
>>>>
>>>> when executing postinsts using qemu-i386.
>>>>
>>>> i386 target doesn't enable CPUID_EXT2_SYSCALL and CPUID_EXT2_LM [1]
>>>> while cpu choice of core2duo that we use for core2-32 TUNE does [2].
>>>> Use n270 cpu instead to use with qemu which supports SSSE3 and doesn't
>>>> have these bits enabled [3].
>>>>
>>>> [1] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L739
>>>> [2] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L1439
>>>> [3] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L1603
>>>>
>>>> Fixes [YOCTO #12916]
>>>
>>> Is this working around a bug in qemu?
>>>
>>>> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>> ---
>>>>  meta/conf/machine/include/tune-core2.inc | 2 +-
>>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>>
>>>> diff --git a/meta/conf/machine/include/tune-core2.inc
>>>> b/meta/conf/machine/include/tune-core2.inc
>>>> index c686bb4682..ddde719bde 100644
>>>> --- a/meta/conf/machine/include/tune-core2.inc
>>>> +++ b/meta/conf/machine/include/tune-core2.inc
>>>> @@ -21,7 +21,7 @@ TUNE_FEATURES_tune-core2-32 =
>>>> "${TUNE_FEATURES_tune-x86} core2"
>>>>  BASE_LIB_tune-core2-32 = "lib"
>>>>  TUNE_PKGARCH_tune-core2-32 = "core2-32"
>>>>  PACKAGE_EXTRA_ARCHS_tune-core2-32 = "${PACKAGE_EXTRA_ARCHS_tune-i686}
>>>> core2-32"
>>>> -QEMU_EXTRAOPTIONS_core2-32 = " -cpu core2duo"
>>>> +QEMU_EXTRAOPTIONS_core2-32 = " -cpu n270"
>>>>
>>>>  AVAILTUNES += "core2-64"
>>>>  TUNE_FEATURES_tune-core2-64 = "${TUNE_FEATURES_tune-x86-64} core2"
>>>> --
>>>> 2.17.1
>>>>
>>>> --
>>>> _______________________________________________
>>>> Openembedded-core mailing list
>>>> Openembedded-core@lists.openembedded.org
>>>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>>> --
>>> _______________________________________________
>>> Openembedded-core mailing list
>>> Openembedded-core@lists.openembedded.org
>>> http://lists.openembedded.org/mailman/listinfo/openembedded-core



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] tune-core2: use n270 instead of core2duo
  2018-09-13 23:46       ` Anuj Mittal
@ 2018-09-14  0:03         ` Andre McCurdy
  0 siblings, 0 replies; 7+ messages in thread
From: Andre McCurdy @ 2018-09-14  0:03 UTC (permalink / raw)
  To: Anuj Mittal; +Cc: Patches and discussions about the oe-core layer

On Thu, Sep 13, 2018 at 4:46 PM, Anuj Mittal <anuj.mittal@intel.com> wrote:
> On 09/14/2018 06:50 AM, Andre McCurdy wrote:
>> On Thu, Sep 13, 2018 at 3:16 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
>>> Is this different issue than what was discussed in:
>>> https://www.mail-archive.com/openembedded-core@lists.openembedded.org/msg109516.html
>>>
>>> The message is slightly different (might be changed in newer qemu used now),
>>> but the issue I had before was that features of selected -cpu and host cpu
>>> didn't match and qemu failed with:
>>> qemu-system-x86_64: warning: host doesn't support requested feature:
>>> CPUID.01H:EDX.ss [bit 27]
>>> when some features were missing and kvm was used.
>>>
>
> The message is different in this case because that one was for KVM, this
> one is when using user space emulation so it's checking what can be
> emulated and what is being asked by way of -cpu parameter [1].
>
>>> If it's the same root cause, then it's not a bug in qemu.
>>
>> Thanks. Looks like it could be the same issue - if qemu is running
>> with KVM on a host which isn't natively compatible with the full
>> core2duo feature set.
>
> Similar problem, but a different issue in my opinion. So these features
> (lm, syscall) that we see warnings about are only seen when building for
> 32 bit while running qemu-i386 for executing postinsts.
>
> Looking at qemu commit logs, it doesn't look like these two features are
> supported with qemu-i386. So, I changed the qemu -cpu value that is used
> with qemu-i386 to a lower denominator which still supports the
> instruction set that we build for for 32 bit.

If KVM isn't involved then it does look like a qemu bug, ie the -cpu
core2duo option enables features which the emulator doesn't support.

Right?

> [1] https://wiki.qemu.org/Documentation/TCG
> [2]
> https://github.com/qemu/qemu/commit/4586f157757acc5c8edcc954289c7aa51661235c
>
>>
>> From the Yocto bug these warnings are coming from the nightly builds:
>>
>>   https://bugzilla.yoctoproject.org/show_bug.cgi?id=12916
>>
>> Has something changed recently? Have the nightly builds moved onto an
>> AMD machine?
>>
>>
>>> On Thu, Sep 13, 2018 at 11:33 PM Andre McCurdy <armccurdy@gmail.com> wrote:
>>>>
>>>> On Thu, Sep 13, 2018 at 12:25 AM, Anuj Mittal <anuj.mittal@intel.com>
>>>> wrote:
>>>>> Fixes warnings in builds using core2-32 tune:
>>>>>
>>>>> warning: TCG doesn't support requested feature:
>>>>> CPUID.80000001H:EDX.syscall [bit 11]
>>>>> warning: TCG doesn't support requested feature: CPUID.80000001H:EDX.lm
>>>>> [bit 29]
>>>>>
>>>>> when executing postinsts using qemu-i386.
>>>>>
>>>>> i386 target doesn't enable CPUID_EXT2_SYSCALL and CPUID_EXT2_LM [1]
>>>>> while cpu choice of core2duo that we use for core2-32 TUNE does [2].
>>>>> Use n270 cpu instead to use with qemu which supports SSSE3 and doesn't
>>>>> have these bits enabled [3].
>>>>>
>>>>> [1] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L739
>>>>> [2] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L1439
>>>>> [3] https://github.com/qemu/qemu/blob/master/target/i386/cpu.c#L1603
>>>>>
>>>>> Fixes [YOCTO #12916]
>>>>
>>>> Is this working around a bug in qemu?
>>>>
>>>>> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>> ---
>>>>>  meta/conf/machine/include/tune-core2.inc | 2 +-
>>>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>>>
>>>>> diff --git a/meta/conf/machine/include/tune-core2.inc
>>>>> b/meta/conf/machine/include/tune-core2.inc
>>>>> index c686bb4682..ddde719bde 100644
>>>>> --- a/meta/conf/machine/include/tune-core2.inc
>>>>> +++ b/meta/conf/machine/include/tune-core2.inc
>>>>> @@ -21,7 +21,7 @@ TUNE_FEATURES_tune-core2-32 =
>>>>> "${TUNE_FEATURES_tune-x86} core2"
>>>>>  BASE_LIB_tune-core2-32 = "lib"
>>>>>  TUNE_PKGARCH_tune-core2-32 = "core2-32"
>>>>>  PACKAGE_EXTRA_ARCHS_tune-core2-32 = "${PACKAGE_EXTRA_ARCHS_tune-i686}
>>>>> core2-32"
>>>>> -QEMU_EXTRAOPTIONS_core2-32 = " -cpu core2duo"
>>>>> +QEMU_EXTRAOPTIONS_core2-32 = " -cpu n270"
>>>>>
>>>>>  AVAILTUNES += "core2-64"
>>>>>  TUNE_FEATURES_tune-core2-64 = "${TUNE_FEATURES_tune-x86-64} core2"
>>>>> --
>>>>> 2.17.1
>>>>>
>>>>> --
>>>>> _______________________________________________
>>>>> Openembedded-core mailing list
>>>>> Openembedded-core@lists.openembedded.org
>>>>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>>>> --
>>>> _______________________________________________
>>>> Openembedded-core mailing list
>>>> Openembedded-core@lists.openembedded.org
>>>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] tune-core2: use n270 instead of core2duo
  2018-09-13 22:50     ` Andre McCurdy
  2018-09-13 23:46       ` Anuj Mittal
@ 2018-09-14 10:43       ` Burton, Ross
  1 sibling, 0 replies; 7+ messages in thread
From: Burton, Ross @ 2018-09-14 10:43 UTC (permalink / raw)
  To: Andre McCurdy; +Cc: Patches and discussions about the oe-core layer

On 13 September 2018 at 23:50, Andre McCurdy <armccurdy@gmail.com> wrote:
> From the Yocto bug these warnings are coming from the nightly builds:
>
>   https://bugzilla.yoctoproject.org/show_bug.cgi?id=12916
>
> Has something changed recently? Have the nightly builds moved onto an
> AMD machine?

No, the new AB code surfaces build warnings: previously only errors
were surfaced (as they are fatal) and you had to look at each stdio to
see if there were any warnings.

Ross


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-09-14 10:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-13  7:25 [PATCH] tune-core2: use n270 instead of core2duo Anuj Mittal
2018-09-13 21:33 ` Andre McCurdy
2018-09-13 22:16   ` Martin Jansa
2018-09-13 22:50     ` Andre McCurdy
2018-09-13 23:46       ` Anuj Mittal
2018-09-14  0:03         ` Andre McCurdy
2018-09-14 10:43       ` Burton, Ross

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.