All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium
@ 2019-05-13 15:33 Alexander Kanavin
  2019-05-13 15:33 ` [PATCH 2/2] packagegroup-self-hosted: drop epiphany Alexander Kanavin
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Alexander Kanavin @ 2019-05-13 15:33 UTC (permalink / raw)
  To: openembedded-core

This matches what the qemux86_64 is currently using, and
will allow testing the instructions added in the meantime;
particularly various SSE extensions are now enabled.

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/conf/machine/include/qemuboot-x86.inc | 4 ++--
 meta/conf/machine/qemux86.conf             | 3 +--
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/meta/conf/machine/include/qemuboot-x86.inc b/meta/conf/machine/include/qemuboot-x86.inc
index 5fdbe4df50e..82ce46d8604 100644
--- a/meta/conf/machine/include/qemuboot-x86.inc
+++ b/meta/conf/machine/include/qemuboot-x86.inc
@@ -1,8 +1,8 @@
 # For runqemu
 IMAGE_CLASSES += "qemuboot"
 QB_SYSTEM_NAME_x86 = "qemu-system-i386"
-QB_CPU_x86 = "-cpu pentium2"
-QB_CPU_KVM_x86 = "-cpu pentium2"
+QB_CPU_x86 = "-cpu core2duo"
+QB_CPU_KVM_x86 = "-cpu core2duo"
 
 QB_SYSTEM_NAME_x86-64 = "qemu-system-x86_64"
 QB_CPU_x86-64 = "-cpu core2duo"
diff --git a/meta/conf/machine/qemux86.conf b/meta/conf/machine/qemux86.conf
index f2434a4b5f5..272ad1e1870 100644
--- a/meta/conf/machine/qemux86.conf
+++ b/meta/conf/machine/qemux86.conf
@@ -8,8 +8,7 @@ PREFERRED_PROVIDER_virtual/libgles1 ?= "mesa"
 PREFERRED_PROVIDER_virtual/libgles2 ?= "mesa"
 
 require conf/machine/include/qemu.inc
-DEFAULTTUNE ?= "i586"
-X86ARCH32 ?= "i586"
+DEFAULTTUNE ?= "core2-32"
 require conf/machine/include/tune-corei7.inc
 require conf/machine/include/qemuboot-x86.inc
 
-- 
2.17.1



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

* [PATCH 2/2] packagegroup-self-hosted: drop epiphany
  2019-05-13 15:33 [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium Alexander Kanavin
@ 2019-05-13 15:33 ` Alexander Kanavin
  2019-05-13 15:54 ` [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium Khem Raj
  2019-05-14 10:08 ` Richard Purdie
  2 siblings, 0 replies; 12+ messages in thread
From: Alexander Kanavin @ 2019-05-13 15:33 UTC (permalink / raw)
  To: openembedded-core

Originally a web browser was added to build-appliance-image to
enable Hob's use cases that involve opening a URI; with Hob long gone,
a web browser is no longer necessary to have in build-appliance-image.

This will also address the out-of-resources problem when
build-appliance-image builds itself in a VM, as a test case.

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-core/packagegroups/packagegroup-self-hosted.bb | 1 -
 1 file changed, 1 deletion(-)

diff --git a/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb b/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
index b296db5457e..f206cee3731 100644
--- a/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
+++ b/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
@@ -189,7 +189,6 @@ RDEPENDS_packagegroup-self-hosted-graphics = "\
     libx11-dev \
     adwaita-icon-theme \
     xdg-utils \
-    epiphany \
     l3afpad \
     pcmanfm \
     vte \
-- 
2.17.1



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

* Re: [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium
  2019-05-13 15:33 [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium Alexander Kanavin
  2019-05-13 15:33 ` [PATCH 2/2] packagegroup-self-hosted: drop epiphany Alexander Kanavin
@ 2019-05-13 15:54 ` Khem Raj
  2019-05-13 16:00   ` Burton, Ross
  2019-05-13 17:45   ` Adrian Bunk
  2019-05-14 10:08 ` Richard Purdie
  2 siblings, 2 replies; 12+ messages in thread
From: Khem Raj @ 2019-05-13 15:54 UTC (permalink / raw)
  To: Alexander Kanavin; +Cc: openembedded-core

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

On Mon, May 13, 2019 at 8:33 AM Alexander Kanavin <alex.kanavin@gmail.com>
wrote:

> This matches what the qemux86_64 is currently using, and
> will allow testing the instructions added in the meantime;
> particularly various SSE extensions are now enabled.
>

While I like this change I also worry if we are leaving out any significant
x86 implementation out there in embedded space x86-64 is relatively newer
compared to 32 bit which was long stable

>
> Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> ---
>  meta/conf/machine/include/qemuboot-x86.inc | 4 ++--
>  meta/conf/machine/qemux86.conf             | 3 +--
>  2 files changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/meta/conf/machine/include/qemuboot-x86.inc
> b/meta/conf/machine/include/qemuboot-x86.inc
> index 5fdbe4df50e..82ce46d8604 100644
> --- a/meta/conf/machine/include/qemuboot-x86.inc
> +++ b/meta/conf/machine/include/qemuboot-x86.inc
> @@ -1,8 +1,8 @@
>  # For runqemu
>  IMAGE_CLASSES += "qemuboot"
>  QB_SYSTEM_NAME_x86 = "qemu-system-i386"
> -QB_CPU_x86 = "-cpu pentium2"
> -QB_CPU_KVM_x86 = "-cpu pentium2"
> +QB_CPU_x86 = "-cpu core2duo"
> +QB_CPU_KVM_x86 = "-cpu core2duo"
>
>  QB_SYSTEM_NAME_x86-64 = "qemu-system-x86_64"
>  QB_CPU_x86-64 = "-cpu core2duo"
> diff --git a/meta/conf/machine/qemux86.conf
> b/meta/conf/machine/qemux86.conf
> index f2434a4b5f5..272ad1e1870 100644
> --- a/meta/conf/machine/qemux86.conf
> +++ b/meta/conf/machine/qemux86.conf
> @@ -8,8 +8,7 @@ PREFERRED_PROVIDER_virtual/libgles1 ?= "mesa"
>  PREFERRED_PROVIDER_virtual/libgles2 ?= "mesa"
>
>  require conf/machine/include/qemu.inc
> -DEFAULTTUNE ?= "i586"
> -X86ARCH32 ?= "i586"
> +DEFAULTTUNE ?= "core2-32"
>  require conf/machine/include/tune-corei7.inc
>  require conf/machine/include/qemuboot-x86.inc
>
> --
> 2.17.1
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>

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

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

* Re: [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium
  2019-05-13 15:54 ` [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium Khem Raj
@ 2019-05-13 16:00   ` Burton, Ross
  2019-05-13 16:01     ` Khem Raj
  2019-05-13 17:45   ` Adrian Bunk
  1 sibling, 1 reply; 12+ messages in thread
From: Burton, Ross @ 2019-05-13 16:00 UTC (permalink / raw)
  To: Khem Raj; +Cc: OE-core

On Mon, 13 May 2019 at 08:55, Khem Raj <raj.khem@gmail.com> wrote:
> While I like this change I also worry if we are leaving out any significant x86 implementation out there in embedded space x86-64 is relatively newer compared to 32 bit which was long stable

core2duo isn't exactly a modern chipset though, first released in
2006.  Does anyone *know* of any significant 32-bit x86 deployments
which are using significantly older hardware?

Ross


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

* Re: [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium
  2019-05-13 16:00   ` Burton, Ross
@ 2019-05-13 16:01     ` Khem Raj
  2019-05-13 16:07       ` Burton, Ross
  2019-05-13 16:07       ` Alexander Kanavin
  0 siblings, 2 replies; 12+ messages in thread
From: Khem Raj @ 2019-05-13 16:01 UTC (permalink / raw)
  To: Burton, Ross; +Cc: OE-core

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

On Mon, May 13, 2019 at 9:00 AM Burton, Ross <ross.burton@intel.com> wrote:

> On Mon, 13 May 2019 at 08:55, Khem Raj <raj.khem@gmail.com> wrote:
> > While I like this change I also worry if we are leaving out any
> significant x86 implementation out there in embedded space x86-64 is
> relatively newer compared to 32 bit which was long stable
>
> core2duo isn't exactly a modern chipset though, first released in
> 2006.  Does anyone *know* of any significant 32-bit x86 deployments
> which are using significantly older hardware?
>

If intel bsp folks are okay with this then let’s go for it

>
> Ross
>

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

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

* Re: [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium
  2019-05-13 16:01     ` Khem Raj
@ 2019-05-13 16:07       ` Burton, Ross
  2019-05-13 16:07       ` Alexander Kanavin
  1 sibling, 0 replies; 12+ messages in thread
From: Burton, Ross @ 2019-05-13 16:07 UTC (permalink / raw)
  To: Khem Raj; +Cc: OE-core

On Mon, 13 May 2019 at 09:02, Khem Raj <raj.khem@gmail.com> wrote:
> If intel bsp folks are okay with this then let’s go for it

Putting my Intel hat on, we don't use these BSPs.  meta-intel ships
its own 32-bit and 64-bit machines.

Ross


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

* Re: [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium
  2019-05-13 16:01     ` Khem Raj
  2019-05-13 16:07       ` Burton, Ross
@ 2019-05-13 16:07       ` Alexander Kanavin
  2019-05-13 17:19         ` Khem Raj
  1 sibling, 1 reply; 12+ messages in thread
From: Alexander Kanavin @ 2019-05-13 16:07 UTC (permalink / raw)
  To: Khem Raj; +Cc: OE-core

Note that the 32 bit machine from meta-intel has actually been using
core2-32 tune for a while, so we are simply catching up here.

Alex

On Mon, 13 May 2019 at 18:02, Khem Raj <raj.khem@gmail.com> wrote:
>
>
>
> On Mon, May 13, 2019 at 9:00 AM Burton, Ross <ross.burton@intel.com> wrote:
>>
>> On Mon, 13 May 2019 at 08:55, Khem Raj <raj.khem@gmail.com> wrote:
>> > While I like this change I also worry if we are leaving out any significant x86 implementation out there in embedded space x86-64 is relatively newer compared to 32 bit which was long stable
>>
>> core2duo isn't exactly a modern chipset though, first released in
>> 2006.  Does anyone *know* of any significant 32-bit x86 deployments
>> which are using significantly older hardware?
>
>
> If intel bsp folks are okay with this then let’s go for it
>>
>>
>> Ross


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

* Re: [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium
  2019-05-13 16:07       ` Alexander Kanavin
@ 2019-05-13 17:19         ` Khem Raj
  0 siblings, 0 replies; 12+ messages in thread
From: Khem Raj @ 2019-05-13 17:19 UTC (permalink / raw)
  To: Alexander Kanavin; +Cc: OE-core

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

Sounds good then unless someone else has more
Info

On Mon, May 13, 2019 at 9:07 AM Alexander Kanavin <alex.kanavin@gmail.com>
wrote:

> Note that the 32 bit machine from meta-intel has actually been using
> core2-32 tune for a while, so we are simply catching up here.
>
> Alex
>
> On Mon, 13 May 2019 at 18:02, Khem Raj <raj.khem@gmail.com> wrote:
> >
> >
> >
> > On Mon, May 13, 2019 at 9:00 AM Burton, Ross <ross.burton@intel.com>
> wrote:
> >>
> >> On Mon, 13 May 2019 at 08:55, Khem Raj <raj.khem@gmail.com> wrote:
> >> > While I like this change I also worry if we are leaving out any
> significant x86 implementation out there in embedded space x86-64 is
> relatively newer compared to 32 bit which was long stable
> >>
> >> core2duo isn't exactly a modern chipset though, first released in
> >> 2006.  Does anyone *know* of any significant 32-bit x86 deployments
> >> which are using significantly older hardware?
> >
> >
> > If intel bsp folks are okay with this then let’s go for it
> >>
> >>
> >> Ross
>

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

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

* Re: [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium
  2019-05-13 15:54 ` [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium Khem Raj
  2019-05-13 16:00   ` Burton, Ross
@ 2019-05-13 17:45   ` Adrian Bunk
  2019-05-13 18:00     ` Khem Raj
  1 sibling, 1 reply; 12+ messages in thread
From: Adrian Bunk @ 2019-05-13 17:45 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-core

On Mon, May 13, 2019 at 08:54:50AM -0700, Khem Raj wrote:
> On Mon, May 13, 2019 at 8:33 AM Alexander Kanavin <alex.kanavin@gmail.com>
> wrote:
> 
> > This matches what the qemux86_64 is currently using, and
> > will allow testing the instructions added in the meantime;
> > particularly various SSE extensions are now enabled.
> 
> While I like this change I also worry if we are leaving out any significant
> x86 implementation out there in embedded space x86-64 is relatively newer
> compared to 32 bit which was long stable

Intel Quark and AMD Geode LX are still available to buy today
(Geode for at least 2 more years).

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed



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

* Re: [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium
  2019-05-13 17:45   ` Adrian Bunk
@ 2019-05-13 18:00     ` Khem Raj
  0 siblings, 0 replies; 12+ messages in thread
From: Khem Raj @ 2019-05-13 18:00 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: Patches and discussions about the oe-core layer

On Mon, May 13, 2019 at 10:45 AM Adrian Bunk <bunk@stusta.de> wrote:
>
> On Mon, May 13, 2019 at 08:54:50AM -0700, Khem Raj wrote:
> > On Mon, May 13, 2019 at 8:33 AM Alexander Kanavin <alex.kanavin@gmail.com>
> > wrote:
> >
> > > This matches what the qemux86_64 is currently using, and
> > > will allow testing the instructions added in the meantime;
> > > particularly various SSE extensions are now enabled.
> >
> > While I like this change I also worry if we are leaving out any significant
> > x86 implementation out there in embedded space x86-64 is relatively newer
> > compared to 32 bit which was long stable
>
> Intel Quark and AMD Geode LX are still available to buy today
> (Geode for at least 2 more years).

I think they have their own BSP layers, so they lose out on least
common denominator here. I don't have strong objection to that, given
that using core2 is going to enhance our testing coverage quite a bit.

>
> cu
> Adrian
>
> --
>
>        "Is there not promise of rain?" Ling Tan asked suddenly out
>         of the darkness. There had been need of rain for many days.
>        "Only a promise," Lao Er said.
>                                        Pearl S. Buck - Dragon Seed
>


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

* Re: [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium
  2019-05-13 15:33 [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium Alexander Kanavin
  2019-05-13 15:33 ` [PATCH 2/2] packagegroup-self-hosted: drop epiphany Alexander Kanavin
  2019-05-13 15:54 ` [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium Khem Raj
@ 2019-05-14 10:08 ` Richard Purdie
  2019-05-14 12:25   ` Alexander Kanavin
  2 siblings, 1 reply; 12+ messages in thread
From: Richard Purdie @ 2019-05-14 10:08 UTC (permalink / raw)
  To: Alexander Kanavin, openembedded-core

On Mon, 2019-05-13 at 17:33 +0200, Alexander Kanavin wrote:
> This matches what the qemux86_64 is currently using, and
> will allow testing the instructions added in the meantime;
> particularly various SSE extensions are now enabled.
> 
> Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> ---
>  meta/conf/machine/include/qemuboot-x86.inc | 4 ++--
>  meta/conf/machine/qemux86.conf             | 3 +--
>  2 files changed, 3 insertions(+), 4 deletions(-)

There is some kind of bad assumption somewhere in the sdk/mingw code:

https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/152

and another glitch somewhere in the SDK code:

https://autobuilder.yoctoproject.org/typhoon/#/builders/59/builds/588

I was also worried that:

http://git.yoctoproject.org/cgit.cgi/yocto-autobuilder-helper/tree/scripts/publish-artefacts
may need fixes but it looks like it might be ok.

Cheers,

Richard



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

* Re: [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium
  2019-05-14 10:08 ` Richard Purdie
@ 2019-05-14 12:25   ` Alexander Kanavin
  0 siblings, 0 replies; 12+ messages in thread
From: Alexander Kanavin @ 2019-05-14 12:25 UTC (permalink / raw)
  To: Richard Purdie; +Cc: OE-core

On Tue, 14 May 2019 at 12:08, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
>
> On Mon, 2019-05-13 at 17:33 +0200, Alexander Kanavin wrote:
> > This matches what the qemux86_64 is currently using, and
> > will allow testing the instructions added in the meantime;
> > particularly various SSE extensions are now enabled.
> >
> > Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> > ---
> >  meta/conf/machine/include/qemuboot-x86.inc | 4 ++--
> >  meta/conf/machine/qemux86.conf             | 3 +--
> >  2 files changed, 3 insertions(+), 4 deletions(-)
>
> There is some kind of bad assumption somewhere in the sdk/mingw code:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/152
>
> and another glitch somewhere in the SDK code:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/59/builds/588

Seems like packagegroup-cross-canadian is erroneously taken from
sstate, instead of being repackaged when TUNE_ARCH changes but MACHINE
does not. I will send a fix in a moment, even though I am not totally
sure if it's the correct one.

Alex


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

end of thread, other threads:[~2019-05-14 12:26 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-13 15:33 [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium Alexander Kanavin
2019-05-13 15:33 ` [PATCH 2/2] packagegroup-self-hosted: drop epiphany Alexander Kanavin
2019-05-13 15:54 ` [PATCH 1/2] qemux86: use a Core 2 Duo CPU instead of the original circa-1993 Pentium Khem Raj
2019-05-13 16:00   ` Burton, Ross
2019-05-13 16:01     ` Khem Raj
2019-05-13 16:07       ` Burton, Ross
2019-05-13 16:07       ` Alexander Kanavin
2019-05-13 17:19         ` Khem Raj
2019-05-13 17:45   ` Adrian Bunk
2019-05-13 18:00     ` Khem Raj
2019-05-14 10:08 ` Richard Purdie
2019-05-14 12:25   ` Alexander Kanavin

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.