mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 21:23:04 +01:00
SERIAL_CONSOLE was already deprecated in 2013, yet still some machine configuration files were using it. This patch replaces it with SERIAL_CONSOLES, which is the successor. The default value in systemd-serialgetty.bb can also be safely transitioned from SERIAL_CONSOLE to SERIAL_CONSOLES, as this recipe already uses SERIAL_CONSOLES within do_install(). The documentation seems to be already up do date. beaglebone-yocto.conf in the bsp-guide already uses SERIAL_CONSOLES. The ref-manual redirects from SERIAL_CONSOLE to SERIAL_CONSOLES. [YOCTO #12653] (From OE-Core rev: e5bde3d466869df9fce559e49842ac245153d045) Signed-off-by: Maciej Pijanowski <maciej.pijanowski@3mdeb.com> 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 ?= "hddimg"
|
|
|
|
KERNEL_IMAGETYPE ?= "bzImage"
|
|
|
|
SERIAL_CONSOLES ?= "115200;ttyS0"
|
|
|
|
#
|
|
# kernel-related variables
|
|
#
|
|
PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
|
|
PREFERRED_VERSION_linux-yocto ??= "4.15%"
|
|
|
|
#
|
|
# 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"
|