mirror of
https://git.yoctoproject.org/poky
synced 2026-02-25 02:49:40 +01:00
In the current releases, not all linux-yocto derived kernels have NFS support, or NFS support fragments availble. To ensure that derived kernels like linux-yocto-cutom continue to work against poky-lsb, we can make the KERNEL_FEATURE append more specific to the linux-yocto recipe. (From OE-Core rev: 799f53e8844748a930a9cbc7a4cf1056f19bb037) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
872 B
PHP
29 lines
872 B
PHP
PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg"
|
|
PREFERRED_PROVIDER_virtual/libgl ?= "mesa"
|
|
PREFERRED_PROVIDER_virtual/libgles1 ?= "mesa"
|
|
PREFERRED_PROVIDER_virtual/libgles2 ?= "mesa"
|
|
|
|
XSERVER ?= "xserver-xorg \
|
|
mesa-driver-swrast \
|
|
xf86-input-evdev \
|
|
xf86-input-mouse \
|
|
xf86-video-fbdev \
|
|
xf86-input-keyboard"
|
|
|
|
MACHINE_FEATURES = "apm alsa pcmcia bluetooth irda usbgadget screen"
|
|
|
|
MACHINEOVERRIDES =. "qemuall:"
|
|
|
|
IMAGE_FSTYPES += "tar.bz2 ext3"
|
|
|
|
# Don't include kernels in standard images
|
|
RDEPENDS_kernel-base = ""
|
|
|
|
# Use a common kernel recipe for all QEMU machines
|
|
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
|
|
|
|
EXTRA_IMAGEDEPENDS += "qemu-native qemu-helper-native"
|
|
|
|
# Provide the nfs server kernel module for all qemu images
|
|
KERNEL_FEATURES_append_pn-linux-yocto = " features/nfsd/nfsd-enable.scc"
|