mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
This reverts commit 44010756b0ae91e0ac7715b7840285d59f991141. With the packported patch from rt-tests (67da9d8af7d8a0e1a0822e6ee99d68fa3d5a46d2) that allows build for all archs this patch can be reverted. An error is dumped in run-time is frc() is not present. (From OE-Core rev: 89ca044a9aeb73e15dbe4e29aae1b38d9823fbea) Signed-off-by: Peter Bergin <peter@berginkonsult.se> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
859 B
BlitzBasic
21 lines
859 B
BlitzBasic
require recipes-core/images/core-image-minimal.bb
|
|
|
|
# Skip processing of this recipe if linux-yocto-rt is not explicitly specified as the
|
|
# PREFERRED_PROVIDER for virtual/kernel. This avoids errors when trying
|
|
# to build multiple virtual/kernel providers.
|
|
python () {
|
|
if d.getVar("PREFERRED_PROVIDER_virtual/kernel") != "linux-yocto-rt":
|
|
raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it")
|
|
}
|
|
|
|
DESCRIPTION = "Small image capable of booting a device with a test suite and \
|
|
tools for real-time use. It includes the full meta-toolchain, development \
|
|
headers and libraries to form a standalone SDK."
|
|
DEPENDS += "linux-yocto-rt"
|
|
|
|
IMAGE_FEATURES += "dev-pkgs tools-sdk tools-debug eclipse-debug tools-profile tools-testapps debug-tweaks"
|
|
|
|
IMAGE_INSTALL += "rt-tests hwlatdetect kernel-dev"
|
|
|
|
LICENSE = "MIT"
|