mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 10:43:02 +01:00
When uvesafb is automatically loaded during boot and FW doesn't support legacy video bios and frame buffer, its user space helper will throw error messages in kernel log: [6.843790] uvesafb: Getting VBE info block failed (eax=0x4f00, err=1) [6.843864] uvesafb: vbe_init() failed with -22 [6.843916] uvesafb: probe of uvesafb.0 failed with error -22 Assuming most x86 boards today don't really rely on this module, this change simply removes it from the common feature list to get rid of these harmless messages. [YOCTO #6584] (From meta-yocto rev: d58fc630b1114dbafa8342de7dcaef8e7d798848) Signed-off-by: Jianxun Zhang <jianxun.zhang@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
636 B
PHP
21 lines
636 B
PHP
include conf/machine/include/x86-base.inc
|
|
MACHINE_FEATURES += "wifi efi pcbios"
|
|
|
|
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
|
|
PREFERRED_VERSION_linux-yocto ?= "4.1%"
|
|
PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg"
|
|
XSERVER ?= "${XSERVER_X86_BASE} \
|
|
${XSERVER_X86_EXT} \
|
|
${XSERVER_X86_I915} \
|
|
${XSERVER_X86_I965} \
|
|
${XSERVER_X86_FBDEV} \
|
|
${XSERVER_X86_VESA} \
|
|
${XSERVER_X86_MODESETTING} \
|
|
"
|
|
|
|
MACHINE_EXTRA_RRECOMMENDS += "linux-firmware eee-acpi-scripts"
|
|
|
|
GLIBC_ADDONS = "nptl"
|
|
|
|
EXTRA_OECONF_append_pn-matchbox-panel-2 = " --with-battery=acpi"
|