From: Martin Jansa <martin.jansa@gmail.com>
To: Darren Hart <dvhart@linux.intel.com>
Cc: openembedded-core@lists.openembedded.org,
Poky <poky@yoctoproject.org>,
Paul Eggleton <paul.eggleton@intel.com>
Subject: Re: [PATCH 01/19] x86: Replace ia32 with x86 when referring to the generic architecture
Date: Wed, 22 Jan 2014 02:02:55 +0100 [thread overview]
Message-ID: <20140122010255.GP4100@jama> (raw)
In-Reply-To: <e6c72bf867006ab15d62d0beb1cd8aafe19db72a.1390351667.git.dvhart@linux.intel.com>
[-- Attachment #1: Type: text/plain, Size: 6367 bytes --]
On Tue, Jan 21, 2014 at 04:58:46PM -0800, Darren Hart wrote:
> ia32 implies 32bit, while these files provide descriptions for IA32,
> X86_64, and X32 architectures. The term "x86" fits this used better
> without resorting to using the term "Intel" which isn't quite right as
> it excludes things like the tune-c3 file describing a Via CPU.
>
> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
> Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
> Cc: Paul Eggleton <paul.eggleton@intel.com>
> Cc: Tom Zanussi <tom.zanussi@intel.com>
> Cc: Nitin Kamble <nitin.a.kamble@intel.com>
> Cc: Mark Hatle <mark.hatle@windriver.com>
> Cc: Bruce Ashfield <bruce.ashfield@windriver.com>
> Cc: Martin Jansa <martin.jansa@gmail.com>
> ---
> meta/conf/machine/include/tune-c3.inc | 2 +-
> meta/conf/machine/include/tune-i586.inc | 2 +-
> meta/conf/machine/include/tune-x86_64.inc | 2 +-
> .../include/{ia32-base.inc => x86-base.inc} | 18 +++++++++---------
> meta/conf/machine/include/{ia32 => x86}/README | 6 +++---
> .../{ia32/arch-ia32.inc => x86/arch-x86.inc} | 2 +-
> 6 files changed, 16 insertions(+), 16 deletions(-)
> rename meta/conf/machine/include/{ia32-base.inc => x86-base.inc} (72%)
> rename meta/conf/machine/include/{ia32 => x86}/README (81%)
> rename meta/conf/machine/include/{ia32/arch-ia32.inc => x86/arch-x86.inc} (97%)
>
> diff --git a/meta/conf/machine/include/tune-c3.inc b/meta/conf/machine/include/tune-c3.inc
> index 18865b7..fafc28a 100644
> --- a/meta/conf/machine/include/tune-c3.inc
> +++ b/meta/conf/machine/include/tune-c3.inc
> @@ -1,4 +1,4 @@
> -require conf/machine/include/ia32/arch-ia32.inc
> +require conf/machine/include/x86/arch-x86.inc
>
> TUNEVALID[c3] = "VIA Cyrix III or VIA C3 specific optimizations"
> TUNECONFLICTS[c3] = "m64 mx32"
> diff --git a/meta/conf/machine/include/tune-i586.inc b/meta/conf/machine/include/tune-i586.inc
> index 4542b9b..a315b35 100644
> --- a/meta/conf/machine/include/tune-i586.inc
> +++ b/meta/conf/machine/include/tune-i586.inc
> @@ -1,6 +1,6 @@
> DEFAULTTUNE ?= "i586"
>
> -require conf/machine/include/ia32/arch-ia32.inc
> +require conf/machine/include/x86/arch-x86.inc
>
> # Extra tune features
> TUNEVALID[i586] = "Enable i586 specific processor optimizations"
> diff --git a/meta/conf/machine/include/tune-x86_64.inc b/meta/conf/machine/include/tune-x86_64.inc
> index 31e06da..ae48124 100644
> --- a/meta/conf/machine/include/tune-x86_64.inc
> +++ b/meta/conf/machine/include/tune-x86_64.inc
> @@ -1,4 +1,4 @@
> DEFAULTTUNE ?= "x86-64"
>
> -require conf/machine/include/ia32/arch-ia32.inc
> +require conf/machine/include/x86/arch-x86.inc
>
> diff --git a/meta/conf/machine/include/ia32-base.inc b/meta/conf/machine/include/x86-base.inc
> similarity index 72%
> rename from meta/conf/machine/include/ia32-base.inc
> rename to meta/conf/machine/include/x86-base.inc
> index e15f927..d6c4d60 100644
> --- a/meta/conf/machine/include/ia32-base.inc
> +++ b/meta/conf/machine/include/x86-base.inc
> @@ -1,9 +1,9 @@
> #
> -# base machine settings for ia32-architecture BSPs
> +# Base machine settings for X86 architecture BSPs
> #
>
> #
> -# common settings for Intel-based machines
> +# common settings for X86 machines
> #
> MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \
> acpi serial usbgadget alsa"
> @@ -25,28 +25,28 @@ PREFERRED_VERSION_linux-yocto ??= "3.0%"
> #
> # XSERVER subcomponents, used to build the XSERVER variable
> #
> -XSERVER_IA32_BASE = "xserver-xorg \
> +XSERVER_X86_BASE = "xserver-xorg \
> xf86-input-mouse \
> xf86-input-keyboard \
> xf86-input-evdev \
> xf86-input-synaptics \
> "
>
> -XSERVER_IA32_EXT = " \
> +XSERVER_X86_EXT = " \
> ${@base_contains('DISTRO_FEATURES', 'opengl', 'xserver-xorg-extension-glx', '', d)} \
> xserver-xorg-module-libint10 \
> "
>
> -XSERVER_IA32_I915 = "xf86-video-intel \
> +XSERVER_X86_I915 = "xf86-video-intel \
> ${@base_contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-i915', '', d)} \
> "
>
> -XSERVER_IA32_I965 = "xf86-video-intel \
> +XSERVER_X86_I965 = "xf86-video-intel \
> ${@base_contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-i965', '', d)} \
> "
>
> -XSERVER_IA32_VESA = "xf86-video-vesa"
> +XSERVER_X86_VESA = "xf86-video-vesa"
>
> -XSERVER_IA32_FBDEV = "xf86-video-fbdev"
> +XSERVER_X86_FBDEV = "xf86-video-fbdev"
>
> -XSERVER_IA32_MODESETTING = "xf86-video-modesetting"
> +XSERVER_X86_MODESETTING = "xf86-video-modesetting"
> diff --git a/meta/conf/machine/include/ia32/README b/meta/conf/machine/include/x86/README
> similarity index 81%
> rename from meta/conf/machine/include/ia32/README
> rename to meta/conf/machine/include/x86/README
> index 8f80a5b..d8b6793 100644
> --- a/meta/conf/machine/include/ia32/README
> +++ b/meta/conf/machine/include/x86/README
> @@ -1,12 +1,12 @@
> 2012/03/30 - Mark Hatle <mark.hatle@windriver.com>
> - Initial version
>
> -Most of the items for the IA architecture are defined in the single
> -arch-ia32 file.
> +Most of the items for the Intel architectures are defined in the single
> +arch-x86 file.
still few intel-isms left
> Three ABIs are define, m32, mx32 and m64.
>
> -The following is the list of ia32 specific variables:
> +The following is the list of intel specific variables:
still few intel-isms left
> X86ARCH32 - This is the 32-bit architecture GNU canonical arch, TUNE_ARCH.
>
> diff --git a/meta/conf/machine/include/ia32/arch-ia32.inc b/meta/conf/machine/include/x86/arch-x86.inc
> similarity index 97%
> rename from meta/conf/machine/include/ia32/arch-ia32.inc
> rename to meta/conf/machine/include/x86/arch-x86.inc
> index aa83896..298bddc 100644
> --- a/meta/conf/machine/include/ia32/arch-ia32.inc
> +++ b/meta/conf/machine/include/x86/arch-x86.inc
> @@ -1,5 +1,5 @@
> #
> -# IA32 Architecture definition
> +# X86 Architecture definition (IA32, X86_64, and X32)
> #
>
> DEFAULTTUNE ?= "x86"
> --
> 1.7.9.5
>
--
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-22 1:02 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-22 0:59 [PATCH v2 00/19] Update x86 tune files Darren Hart
2014-01-22 0:58 ` [PATCH 01/19] x86: Replace ia32 with x86 when referring to the generic architecture Darren Hart
2014-01-22 1:02 ` Martin Jansa [this message]
2014-01-22 4:07 ` Darren Hart
2014-01-22 0:58 ` [PATCH 02/19] i586: Only add the current tune to PACKAGE_EXTRA_ARCHS Darren Hart
2014-01-22 0:58 ` [PATCH 03/19] tune-core2: Replace -mtune=generic with -mtune=core2 Darren Hart
2014-01-22 0:58 ` [PATCH 04/19] tune-core2: Only add the current ARCH to PACKAGE_EXTRA_ARCHS Darren Hart
2014-01-22 0:58 ` [PATCH 05/19] tune: Make 32b or 64b explicit in tune name for core2 Darren Hart
2014-01-22 0:58 ` [PATCH 06/19] tune-corei7: Add support for cpu-type corei7 Darren Hart
2014-01-22 0:58 ` [PATCH 07/19] tune: Remove tune-x86_64.inc Darren Hart
2014-01-22 0:58 ` [PATCH 08/19] tune: README: Whitespace cleanup Darren Hart
2014-01-22 0:58 ` [PATCH 09/19] tune: README: Document best practice Darren Hart
2014-01-22 0:58 ` [PATCH 10/19] tune: README: Typographical corrections Darren Hart
2014-01-22 0:58 ` [PATCH 11/19] qemux86_64: Use the core2-64 tune Darren Hart
2014-01-22 0:58 ` [PATCH 12/19] genericx86: Use the core2 tune file Darren Hart
2014-01-22 0:58 ` [PATCH 13/19] genericx86-64: Use the core2-64 tune Darren Hart
2014-01-22 0:58 ` [PATCH 14/19] genericx86: Use new x86 tune files Darren Hart
2014-01-22 0:59 ` [PATCH 15/19] genericx86: Use require instead of include Darren Hart
2014-01-22 0:59 ` [PATCH 16/19] yocto-bsp: Update substrate to use the new x86 tune files Darren Hart
2014-01-22 0:59 ` [PATCH 17/19] eglibc-ld.inc: Update the inc file to match the new x86 tune Darren Hart
2014-01-22 0:59 ` [PATCH 18/19] doc: Update profile-manual to use new core2_32 tune name Darren Hart
2014-01-22 0:59 ` [PATCH 19/19] yocto-bsp: Add core2 and corei7 tune choice to x86_64 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=20140122010255.GP4100@jama \
--to=martin.jansa@gmail.com \
--cc=dvhart@linux.intel.com \
--cc=openembedded-core@lists.openembedded.org \
--cc=paul.eggleton@intel.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox