mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
x86: Replace ia32 with x86 when referring to the generic architecture
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. (From OE-Core rev: f5e0a574d87b7dc6466bfe01593fab5aa13464ff) 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> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
721773072d
commit
939fec6ffc
@@ -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"
|
TUNEVALID[c3] = "VIA Cyrix III or VIA C3 specific optimizations"
|
||||||
TUNECONFLICTS[c3] = "m64 mx32"
|
TUNECONFLICTS[c3] = "m64 mx32"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
DEFAULTTUNE ?= "i586"
|
DEFAULTTUNE ?= "i586"
|
||||||
|
|
||||||
require conf/machine/include/ia32/arch-ia32.inc
|
require conf/machine/include/x86/arch-x86.inc
|
||||||
|
|
||||||
# Extra tune features
|
# Extra tune features
|
||||||
TUNEVALID[i586] = "Enable i586 specific processor optimizations"
|
TUNEVALID[i586] = "Enable i586 specific processor optimizations"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
DEFAULTTUNE ?= "x86-64"
|
DEFAULTTUNE ?= "x86-64"
|
||||||
|
|
||||||
require conf/machine/include/ia32/arch-ia32.inc
|
require conf/machine/include/x86/arch-x86.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 \
|
MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \
|
||||||
acpi serial usbgadget alsa"
|
acpi serial usbgadget alsa"
|
||||||
@@ -25,28 +25,28 @@ PREFERRED_VERSION_linux-yocto ??= "3.0%"
|
|||||||
#
|
#
|
||||||
# XSERVER subcomponents, used to build the XSERVER variable
|
# XSERVER subcomponents, used to build the XSERVER variable
|
||||||
#
|
#
|
||||||
XSERVER_IA32_BASE = "xserver-xorg \
|
XSERVER_X86_BASE = "xserver-xorg \
|
||||||
xf86-input-mouse \
|
xf86-input-mouse \
|
||||||
xf86-input-keyboard \
|
xf86-input-keyboard \
|
||||||
xf86-input-evdev \
|
xf86-input-evdev \
|
||||||
xf86-input-synaptics \
|
xf86-input-synaptics \
|
||||||
"
|
"
|
||||||
|
|
||||||
XSERVER_IA32_EXT = " \
|
XSERVER_X86_EXT = " \
|
||||||
${@base_contains('DISTRO_FEATURES', 'opengl', 'xserver-xorg-extension-glx', '', d)} \
|
${@base_contains('DISTRO_FEATURES', 'opengl', 'xserver-xorg-extension-glx', '', d)} \
|
||||||
xserver-xorg-module-libint10 \
|
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)} \
|
${@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)} \
|
${@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"
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
2012/03/30 - Mark Hatle <mark.hatle@windriver.com>
|
2012/03/30 - Mark Hatle <mark.hatle@windriver.com>
|
||||||
- Initial version
|
- Initial version
|
||||||
|
|
||||||
Most of the items for the IA architecture are defined in the single
|
Most of the items for the X86 architectures are defined in the single
|
||||||
arch-ia32 file.
|
arch-x86 file.
|
||||||
|
|
||||||
Three ABIs are define, m32, mx32 and m64.
|
Three ABIs are define, m32, mx32 and m64.
|
||||||
|
|
||||||
The following is the list of ia32 specific variables:
|
The following is the list of X86 specific variables:
|
||||||
|
|
||||||
X86ARCH32 - This is the 32-bit architecture GNU canonical arch, TUNE_ARCH.
|
X86ARCH32 - This is the 32-bit architecture GNU canonical arch, TUNE_ARCH.
|
||||||
|
|
||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# IA32 Architecture definition
|
# X86 Architecture definition (IA32, X86_64, and X32)
|
||||||
#
|
#
|
||||||
|
|
||||||
DEFAULTTUNE ?= "x86"
|
DEFAULTTUNE ?= "x86"
|
||||||
Reference in New Issue
Block a user