You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+42-6
Original file line number
Diff line number
Diff line change
@@ -4,26 +4,62 @@ This repository contains the official recipes to build Monkey on [Yocto Project]
4
4
5
5
## Getting Started
6
6
7
-
The following instructions assumes that your are building [Yocto](https://www.yoctoproject.org/) images from scratch using the [Poky](https://www.yoctoproject.org/tools-resources/projects/poky) tool:
7
+
The following instructions assumes that your are building [Yocto](https://www.yoctoproject.org/) images from scratch using the [Poky](https://www.yoctoproject.org/tools-resources/projects/poky) tool, the first step is to get a copy of the [Monkey-Yocto](https://github.com/monkey/monkey-yocto) repository in your local computer:
8
8
9
-
Get a copy of this repository in your local computer, then copy the __monkey__ directory into your __meta recipes-extended__ directory:
NOTE: Tasks Summary: Attempted 391 tasks of which 391 didn't need to be rerun and all succeeded.
49
+
```
50
+
51
+
## Add Monkey to your Yocto Image
52
+
53
+
As any other extra package for your Image, the Build system needs to be aware that you want to include Monkey. For that purpose edit your __build/conf/local.conf__ configuration file and add the following line at bottom:
24
54
25
55
```
26
56
IMAGE_INSTALL_append = " monkey"
27
57
```
28
58
29
-
The next time your re-build your system image, Monkey will be packaged into it.
59
+
That line tells the Build system to include __monkey__ package when creating the final image. If for some reason the variable already exists, just append the __monkey__ package name at the end, e.g:
0 commit comments