mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
Create the bbappend for v6.6 and bump the default kernel to v6.6 for all the machines. In the v6.6 kernel the dtb files for beaglebone have been moved to a vendor specific directory, so we also need to adjust the corresponding variables for its DTB generation. (From meta-yocto rev: 58ac51b7a44fbb165311c7226ae8b15cd004114d) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
797 B
PHP
24 lines
797 B
PHP
include conf/machine/include/x86/x86-base.inc
|
|
require conf/machine/include/x86/qemuboot-x86.inc
|
|
MACHINE_FEATURES += "wifi efi pcbios"
|
|
|
|
PREFERRED_VERSION_linux-yocto ?= "6.6%"
|
|
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
|
|
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 += "kernel-modules linux-firmware"
|
|
|
|
IMAGE_FSTYPES += "wic wic.bmap"
|
|
WKS_FILE ?= "genericx86.wks.in"
|
|
EFI_PROVIDER ??= "grub-efi"
|
|
do_image_wic[depends] += "gptfdisk-native:do_populate_sysroot"
|
|
do_image_wic[recrdeptask] += "do_bootimg"
|