From: Martin Jansa <martin.jansa@gmail.com>
To: Darren Hart <dvhart@linux.intel.com>
Cc: Poky <poky@yoctoproject.org>, openembedded-core@lists.openembedded.org
Subject: Re: [PATCH 12/15] genericx86: Use the core2 tune file
Date: Tue, 21 Jan 2014 23:58:25 +0100 [thread overview]
Message-ID: <20140121225825.GM4100@jama> (raw)
In-Reply-To: <c65b846c5d5882f4adcb504ca01291173bd4bcf8.1390342768.git.dvhart@linux.intel.com>
[-- Attachment #1: Type: text/plain, Size: 1454 bytes --]
On Tue, Jan 21, 2014 at 02:39:58PM -0800, Darren Hart wrote:
> Aside from the movbe and specialized instruction scheduling for the lack
> of out-of-order scheduling in the older Atom CPUs, the core2 tune covers
> these CPUs adequately. Since the current atom tune just uses core2
> anyway, go ahead and make this explicit here.
>
> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
> ---
> meta-yocto-bsp/conf/machine/genericx86.conf | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/meta-yocto-bsp/conf/machine/genericx86.conf b/meta-yocto-bsp/conf/machine/genericx86.conf
> index 9d29f62..549fc8e 100644
> --- a/meta-yocto-bsp/conf/machine/genericx86.conf
> +++ b/meta-yocto-bsp/conf/machine/genericx86.conf
This isn't for oe-core, is it?
> @@ -3,5 +3,6 @@
>
> #@DESCRIPTION: Machine configuration for generic X86 (32-bit) PCs. Supports a moderately wide range of drivers that should boot and be usable on "typical" hardware.
>
> -include conf/machine/include/tune-atom.inc
> +DEFAULTTUNE ?= "core2-32"
> +include conf/machine/include/tune-core2.inc
> include conf/machine/include/genericx86-common.inc
> --
> 1.7.9.5
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Martin Jansa <martin.jansa@gmail.com>
To: Darren Hart <dvhart@linux.intel.com>
Cc: Poky <poky@yoctoproject.org>, openembedded-core@lists.openembedded.org
Subject: Re: [OE-core] [PATCH 12/15] genericx86: Use the core2 tune file
Date: Tue, 21 Jan 2014 23:58:25 +0100 [thread overview]
Message-ID: <20140121225825.GM4100@jama> (raw)
In-Reply-To: <c65b846c5d5882f4adcb504ca01291173bd4bcf8.1390342768.git.dvhart@linux.intel.com>
[-- Attachment #1: Type: text/plain, Size: 1454 bytes --]
On Tue, Jan 21, 2014 at 02:39:58PM -0800, Darren Hart wrote:
> Aside from the movbe and specialized instruction scheduling for the lack
> of out-of-order scheduling in the older Atom CPUs, the core2 tune covers
> these CPUs adequately. Since the current atom tune just uses core2
> anyway, go ahead and make this explicit here.
>
> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
> ---
> meta-yocto-bsp/conf/machine/genericx86.conf | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/meta-yocto-bsp/conf/machine/genericx86.conf b/meta-yocto-bsp/conf/machine/genericx86.conf
> index 9d29f62..549fc8e 100644
> --- a/meta-yocto-bsp/conf/machine/genericx86.conf
> +++ b/meta-yocto-bsp/conf/machine/genericx86.conf
This isn't for oe-core, is it?
> @@ -3,5 +3,6 @@
>
> #@DESCRIPTION: Machine configuration for generic X86 (32-bit) PCs. Supports a moderately wide range of drivers that should boot and be usable on "typical" hardware.
>
> -include conf/machine/include/tune-atom.inc
> +DEFAULTTUNE ?= "core2-32"
> +include conf/machine/include/tune-core2.inc
> include conf/machine/include/genericx86-common.inc
> --
> 1.7.9.5
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
next prev parent reply other threads:[~2014-01-21 22:58 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-21 22:40 [PATCH 00/15] Update x86 tune files Darren Hart
2014-01-21 22:39 ` [PATCH 01/15] x86: Replace ia32 with x86 when referring to the generic architecture Darren Hart
2014-01-21 22:55 ` Martin Jansa
2014-01-21 22:55 ` [OE-core] " Martin Jansa
2014-01-21 23:19 ` Darren Hart
2014-01-21 23:19 ` [OE-core] " Darren Hart
2014-01-21 22:39 ` [PATCH 02/15] i586: Only add the current tune to PACKAGE_EXTRA_ARCHS Darren Hart
2014-01-21 22:39 ` [PATCH 03/15] tune-core2: Replace -mtune=generic with -mtune=core2 Darren Hart
2014-01-21 22:39 ` [PATCH 04/15] tune-core2: Only add the current ARCH to PACKAGE_EXTRA_ARCHS Darren Hart
2014-01-21 22:39 ` [PATCH 05/15] tune: Make 32b or 64b explicit in tune name for core2 Darren Hart
2014-01-21 22:39 ` [PATCH 06/15] tune-corei7: Add support for cpu-type corei7 Darren Hart
2014-01-21 22:39 ` [PATCH 07/15] tune: Remove tune-x86_64.inc Darren Hart
2014-01-21 22:39 ` [PATCH 08/15] tune: README: Whitespace cleanup Darren Hart
2014-01-21 22:39 ` [PATCH 09/15] tune: README: Document best practice Darren Hart
2014-01-21 22:39 ` [PATCH 10/15] tune: README: Typographical corrections Darren Hart
2014-01-21 22:39 ` [PATCH 11/15] qemux86_64: Use the core2-64 tune Darren Hart
2014-01-21 22:39 ` [PATCH 12/15] genericx86: Use the core2 tune file Darren Hart
2014-01-21 22:58 ` Martin Jansa [this message]
2014-01-21 22:58 ` [OE-core] " Martin Jansa
2014-01-21 23:12 ` Darren Hart
2014-01-21 23:12 ` [OE-core] " Darren Hart
2014-01-21 23:18 ` Martin Jansa
2014-01-21 23:18 ` [OE-core] " Martin Jansa
2014-01-21 22:39 ` [PATCH 13/15] genericx86-64: Use the core2-64 tune Darren Hart
2014-01-21 22:40 ` [PATCH 14/15] genericx86: Use new x86 tune files Darren Hart
2014-01-21 22:40 ` [PATCH 15/15] generixx86: Use require instead of include Darren Hart
2014-01-21 23:55 ` [PATCH 00/15] Update x86 tune files Darren Hart
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140121225825.GM4100@jama \
--to=martin.jansa@gmail.com \
--cc=dvhart@linux.intel.com \
--cc=openembedded-core@lists.openembedded.org \
--cc=poky@yoctoproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.