summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorTom Zanussi <tom.zanussi@intel.com>2012-08-24 23:34:47 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-29 16:02:07 -0700
commita6588b8f79afa0a06c346dc00aa1eb3b1e691a7a (patch)
treed3d654500ac049479652da88af459c98350a7062 /meta/conf
parent266d9ce1cf97d3d7587a47903e7d629e9a32af9b (diff)
downloadpoky-a6588b8f79afa0a06c346dc00aa1eb3b1e691a7a.tar.gz
ia32-base.inc: new include file
This is the ia32-base.inc moved over from meta-intel. See meta-intel for the complete history of contributions to this file. Here's the initial commit text that explains the purpose of this file: The meta-intel BSPs currently have a number of machine settings common to all - factor these out into a common include file. Also add several new intel-specific XSERVER variables for building XSERVER variables in BSPs. (From OE-Core rev: 9a8b4fcac639404caa8ac87717118b3380239838) Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/machine/include/ia32-base.inc58
1 files changed, 58 insertions, 0 deletions
diff --git a/meta/conf/machine/include/ia32-base.inc b/meta/conf/machine/include/ia32-base.inc
new file mode 100644
index 0000000000..af583ae184
--- /dev/null
+++ b/meta/conf/machine/include/ia32-base.inc
@@ -0,0 +1,58 @@
1#
2# base machine settings for ia32-architecture BSPs
3#
4
5#
6# common settings for Intel-based machines
7#
8MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \
9 acpi serial usbgadget alsa"
10
11MACHINE_EXTRA_RRECOMMENDS += "kernel-modules eee-acpi-scripts"
12MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "grub"
13
14IMAGE_FSTYPES += "ext3 cpio.gz live"
15
16KERNEL_IMAGETYPE ?= "bzImage"
17
18SERIAL_CONSOLE ?= "115200 ttyS0"
19
20#
21# glibc-related variables
22#
23GLIBC_ADDONS ?= "nptl"
24
25#
26# kernel-related variables
27#
28PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
29PREFERRED_VERSION_linux-yocto ??= "3.0%"
30
31#
32# XSERVER subcomponents, used to build the XSERVER variable
33#
34XSERVER_IA32_BASE = "xserver-xorg \
35 xf86-input-mouse \
36 xf86-input-keyboard \
37 xf86-input-evdev \
38 xf86-input-synaptics \
39 mesa-dri \
40 "
41
42XSERVER_IA32_EXT = "xserver-xorg-extension-dri \
43 xserver-xorg-extension-dri2 \
44 xserver-xorg-extension-glx \
45 xserver-xorg-extension-extmod \
46 xserver-xorg-extension-dbe \
47 xserver-xorg-module-libint10 \
48 "
49
50XSERVER_IA32_I915 = "xf86-video-intel \
51 mesa-dri-driver-i915 \
52 "
53
54XSERVER_IA32_I965 = "xf86-video-intel \
55 mesa-dri-driver-i965 \
56 "
57
58XSERVER_IA32_VESA = "xf86-video-vesa"