summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine/include/x86/x86-base.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/conf/machine/include/x86/x86-base.inc')
-rw-r--r--meta/conf/machine/include/x86/x86-base.inc45
1 files changed, 45 insertions, 0 deletions
diff --git a/meta/conf/machine/include/x86/x86-base.inc b/meta/conf/machine/include/x86/x86-base.inc
new file mode 100644
index 0000000000..fc6c39148d
--- /dev/null
+++ b/meta/conf/machine/include/x86/x86-base.inc
@@ -0,0 +1,45 @@
1#
2# Base machine settings for X86 architecture BSPs
3#
4
5#
6# common settings for X86 machines
7#
8MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \
9 acpi serial usbgadget alsa"
10
11IMAGE_FSTYPES ?= "wic"
12
13KERNEL_IMAGETYPE ?= "bzImage"
14
15SERIAL_CONSOLES ?= "115200;ttyS0"
16
17#
18# kernel-related variables
19#
20PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
21
22#
23# XSERVER subcomponents, used to build the XSERVER variable
24#
25XSERVER_X86_BASE = "xserver-xorg \
26 "
27
28XSERVER_X86_EXT = " \
29 ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'xserver-xorg-extension-glx', '', d)} \
30 xserver-xorg-module-libint10 \
31 "
32
33XSERVER_X86_I915 = "xf86-video-intel \
34 ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-i915', '', d)} \
35 "
36
37XSERVER_X86_I965 = "xf86-video-intel \
38 ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-crocus', '', d)} \
39 "
40
41XSERVER_X86_VESA = "xf86-video-vesa"
42
43XSERVER_X86_FBDEV = "xf86-video-fbdev"
44
45XSERVER_X86_MODESETTING = "xf86-video-modesetting"