diff options
| author | Darren Hart <dvhart@linux.intel.com> | 2014-01-17 22:25:36 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-28 00:50:53 +0000 |
| commit | 939fec6ffc8f51f4f7f98f908554646b50b1ecaf (patch) | |
| tree | afc34dd2c6a97fa714120deed068ed7cffc1f9d0 /meta/conf/machine/include/x86-base.inc | |
| parent | 721773072da08cf0f5e1206961ada3083b6722b4 (diff) | |
| download | poky-939fec6ffc8f51f4f7f98f908554646b50b1ecaf.tar.gz | |
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>
Diffstat (limited to 'meta/conf/machine/include/x86-base.inc')
| -rw-r--r-- | meta/conf/machine/include/x86-base.inc | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/meta/conf/machine/include/x86-base.inc b/meta/conf/machine/include/x86-base.inc new file mode 100644 index 0000000000..d6c4d6010f --- /dev/null +++ b/meta/conf/machine/include/x86-base.inc | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | # | ||
| 2 | # Base machine settings for X86 architecture BSPs | ||
| 3 | # | ||
| 4 | |||
| 5 | # | ||
| 6 | # common settings for X86 machines | ||
| 7 | # | ||
| 8 | MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \ | ||
| 9 | acpi serial usbgadget alsa" | ||
| 10 | |||
| 11 | MACHINE_EXTRA_RRECOMMENDS += "kernel-modules" | ||
| 12 | |||
| 13 | IMAGE_FSTYPES += "live" | ||
| 14 | |||
| 15 | KERNEL_IMAGETYPE ?= "bzImage" | ||
| 16 | |||
| 17 | SERIAL_CONSOLE ?= "115200 ttyS0" | ||
| 18 | |||
| 19 | # | ||
| 20 | # kernel-related variables | ||
| 21 | # | ||
| 22 | PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto" | ||
| 23 | PREFERRED_VERSION_linux-yocto ??= "3.0%" | ||
| 24 | |||
| 25 | # | ||
| 26 | # XSERVER subcomponents, used to build the XSERVER variable | ||
| 27 | # | ||
| 28 | XSERVER_X86_BASE = "xserver-xorg \ | ||
| 29 | xf86-input-mouse \ | ||
| 30 | xf86-input-keyboard \ | ||
| 31 | xf86-input-evdev \ | ||
| 32 | xf86-input-synaptics \ | ||
| 33 | " | ||
| 34 | |||
| 35 | XSERVER_X86_EXT = " \ | ||
| 36 | ${@base_contains('DISTRO_FEATURES', 'opengl', 'xserver-xorg-extension-glx', '', d)} \ | ||
| 37 | xserver-xorg-module-libint10 \ | ||
| 38 | " | ||
| 39 | |||
| 40 | XSERVER_X86_I915 = "xf86-video-intel \ | ||
| 41 | ${@base_contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-i915', '', d)} \ | ||
| 42 | " | ||
| 43 | |||
| 44 | XSERVER_X86_I965 = "xf86-video-intel \ | ||
| 45 | ${@base_contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-i965', '', d)} \ | ||
| 46 | " | ||
| 47 | |||
| 48 | XSERVER_X86_VESA = "xf86-video-vesa" | ||
| 49 | |||
| 50 | XSERVER_X86_FBDEV = "xf86-video-fbdev" | ||
| 51 | |||
| 52 | XSERVER_X86_MODESETTING = "xf86-video-modesetting" | ||
