mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 21:32:13 +02:00
Move all of the tune files found in conf/machine/include into their respective architecture directories in that same location. All references to these will need to be updated. So, change the relevant ones for this tree in this commit as well. For the ARM tunes, nest them one further into armv8a, armv8m, etc. and rename some to make them uniform with the rest of the tunes. (From OE-Core rev: b6f15209bcfff953cce69da97a93f9ddff141ced) Signed-off-by: Jon Mason <jdmason@kudzu.us> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
#
|
|
# 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 ?= "wic"
|
|
|
|
KERNEL_IMAGETYPE ?= "bzImage"
|
|
|
|
SERIAL_CONSOLES ?= "115200;ttyS0"
|
|
|
|
#
|
|
# kernel-related variables
|
|
#
|
|
PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
|
|
PREFERRED_VERSION_linux-yocto ??= "5.13%"
|
|
|
|
#
|
|
# 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"
|