- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
46 lines
1.1 KiB
PHP
46 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"
|
|
|
|
#
|
|
# 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-crocus', '', d)} \
|
|
"
|
|
|
|
XSERVER_X86_VESA = "xf86-video-vesa"
|
|
|
|
XSERVER_X86_FBDEV = "xf86-video-fbdev"
|
|
|
|
XSERVER_X86_MODESETTING = "xf86-video-modesetting"
|