summaryrefslogtreecommitdiffstats
path: root/external/poky/meta/conf/machine/include/x86-base.inc
diff options
context:
space:
mode:
authorToshikazuOhiwa <toshikazu_ohiwa@mail.toyota.co.jp>2020-03-30 09:24:26 +0900
committerToshikazuOhiwa <toshikazu_ohiwa@mail.toyota.co.jp>2020-03-30 09:24:26 +0900
commit5b80bfd7bffd4c20d80b7c70a7130529e9a755dd (patch)
treeb4bb18dcd1487dbf1ea8127e5671b7bb2eded033 /external/poky/meta/conf/machine/include/x86-base.inc
parent706ad73eb02caf8532deaf5d38995bd258725cb8 (diff)
agl-basesystem
Diffstat (limited to 'external/poky/meta/conf/machine/include/x86-base.inc')
-rw-r--r--external/poky/meta/conf/machine/include/x86-base.inc46
1 files changed, 46 insertions, 0 deletions
diff --git a/external/poky/meta/conf/machine/include/x86-base.inc b/external/poky/meta/conf/machine/include/x86-base.inc
new file mode 100644
index 00000000..c2927920
--- /dev/null
+++ b/external/poky/meta/conf/machine/include/x86-base.inc
@@ -0,0 +1,46 @@
+#
+# Base machine settings for X86 architecture BSPs
+#
+
+#
+# common settings for X86 machines
+#
+MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \
+ acpi serial usbgadget alsa"
+
+IMAGE_FSTYPES ?= "hddimg"
+
+KERNEL_IMAGETYPE ?= "bzImage"
+
+SERIAL_CONSOLES ?= "115200;ttyS0"
+
+#
+# kernel-related variables
+#
+PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
+PREFERRED_VERSION_linux-yocto ??= "4.18%"
+
+#
+# XSERVER subcomponents, used to build the XSERVER variable
+#
+XSERVER_X86_BASE = "xserver-xorg \
+ "
+
+XSERVER_X86_EXT = " \
+ ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'xserver-xorg-extension-glx', '', d)} \
+ xserver-xorg-module-libint10 \
+ "
+
+XSERVER_X86_I915 = "xf86-video-intel \
+ ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-i915', '', d)} \
+ "
+
+XSERVER_X86_I965 = "xf86-video-intel \
+ ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-i965', '', d)} \
+ "
+
+XSERVER_X86_VESA = "xf86-video-vesa"
+
+XSERVER_X86_FBDEV = "xf86-video-fbdev"
+
+XSERVER_X86_MODESETTING = "xf86-video-modesetting"