blob: 624b7d9430c7eea427c84dac58c3094c21f47af8 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001require recipes-core/images/core-image-minimal.bb
2
Patrick Williamsc0f7c042017-02-23 20:41:17 -06003# Skip processing of this recipe if linux-yocto-rt is not explicitly specified as the
4# PREFERRED_PROVIDER for virtual/kernel. This avoids errors when trying
5# to build multiple virtual/kernel providers.
6python () {
Brad Bishop6e60e8b2018-02-01 10:27:11 -05007 if d.getVar("PREFERRED_PROVIDER_virtual/kernel") != "linux-yocto-rt":
Brad Bishop316dfdd2018-06-25 12:45:53 -04008 raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it")
Patrick Williamsc0f7c042017-02-23 20:41:17 -06009}
10
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011DESCRIPTION = "Small image capable of booting a device with a test suite and \
12tools for real-time use. It includes the full meta-toolchain, development \
13headers and libraries to form a standalone SDK."
Brad Bishopc342db32019-05-15 21:57:59 -040014DEPENDS += "linux-yocto-rt"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015
16IMAGE_FEATURES += "dev-pkgs tools-sdk tools-debug eclipse-debug tools-profile tools-testapps debug-tweaks"
17
18IMAGE_INSTALL += "rt-tests hwlatdetect kernel-dev"
19
20LICENSE = "MIT"