When trying to build a WR Linux 9 RCPL0014 x86_64 project there is a warning about "only standard kernel" is supported. The resulting project is configured for standard kernel and not preempt-rt. > bitbake wrlinux-image-glibc-std -c populate_sdk WARNING: /wr9/projects/online-ws/rcpl0014-rt/layers/wr-ovp/recipes-kernel/linux/linux-windriver-ovp-kvm_4.8.bb: linux-windriver-ovp-kvm doesn't support preempt-rt, supported types are: ['standard'] WARNING: /wr9/projects/online-ws/rcpl0014-rt/layers/wr-ovp/recipes-kernel/linux/linux-windriver-ovp-guest_4.8.bb: linux-windriver-ovp-guest doesn't support preempt-rt, supported types are: ['standard']
### Setup Info ## # Create and setup wrlinux-9 mirror for RCPL0014 >git clone --branch WRLINUX_9_LTS_CVE_RCPL0014 https://windshare.windriver.com/remote.php/gitsmart/WRLinux-9-LTS-CVE/wrlinux-9 >./wrlinux-9/setup.sh --mirror --all-layers --dl-layers --accept-eula yes # Setup new workspace >git clone --branch WRLINUX_9_LTS_CVE_RCPL0014 {path_to_mirror}}/wrlinux-9 >./wrlinux-9/setup.sh --accept-eula yes --machine intel-x86-64 --distro wrlinux --kernel preempt-rt --recipes wrlinux-image-glibc-std --all-layers --dl-layers # README reports... This is a Wind River Linux build project. It was constructed by the setup program using the following arguments: --machine intel-x86-64 --distro wrlinux --recipes wrlinux-image-glibc-std --all-layers --dl-layers ### Notice the --kernel preempt-rt option is not listed as in previous RCPL0011 release. build/conf/local.conf: LINUX_KERNEL_TYPE ??= "standard" Fixed the above line to be: LINUX_KERNEL_TYPE = "preempt-rt"