diff options
author | Darren Hart <dvhart@linux.intel.com> | 2011-08-08 16:33:00 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-12 17:21:57 +0100 |
commit | 1319890793589baae62d48e80782800063bf92fe (patch) | |
tree | c4bae4690006a94b57c2b0cb2e608fe7c630aeb8 | |
parent | 15c2a7035dbe5b60bf1ef73b6b7ef64ae8cc9471 (diff) | |
download | poky-1319890793589baae62d48e80782800063bf92fe.tar.gz |
recipes-rt: add a README documenting the contents of recipes-rt
Document the non-obvious bits of using the recipes-rt recipes.
(From OE-Core rev: 2c86e636972bd02b35523b36bc81a2765f430f70)
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-rt/README | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/meta/recipes-rt/README b/meta/recipes-rt/README new file mode 100644 index 0000000000..7d7558de49 --- /dev/null +++ b/meta/recipes-rt/README | |||
@@ -0,0 +1,13 @@ | |||
1 | The recipes-rt recipes provide package and image recipes for using and testing | ||
2 | the PREEMPT_RT kernel. The core-image-rt*.bb images are minimal images with | ||
3 | a couple extra packages, including rt-tests. In order to build the image with | ||
4 | the linux-yocto-rt kernel, be sure to include the following line in your | ||
5 | local.conf, bblayers.conf, or your $MACHINE.conf. | ||
6 | |||
7 | PREFERRED_PROVIDER_virtual/kernel = "linux-yocto-rt" | ||
8 | |||
9 | If you are creating a new BSP which should use linux-yocto-rt by default, | ||
10 | use the line above in the $MACHINE.conf in your BSP layer, and specify the | ||
11 | following in a linux-yocto-rt bbappend recipe: | ||
12 | |||
13 | COMPATIBLE_MACHINE_$MACHINE = $MACHINE | ||