diff options
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" | ||