diff options
Diffstat (limited to 'documentation/openvino.md')
-rw-r--r-- | documentation/openvino.md | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/documentation/openvino.md b/documentation/openvino.md index 50dc680d..9794b928 100644 --- a/documentation/openvino.md +++ b/documentation/openvino.md | |||
@@ -11,6 +11,7 @@ Follow the [Yocto Project official documentation](https://docs.yoctoproject.org/ | |||
11 | git clone https://git.yoctoproject.org/git/poky | 11 | git clone https://git.yoctoproject.org/git/poky |
12 | git clone https://github.com/openembedded/meta-openembedded | 12 | git clone https://github.com/openembedded/meta-openembedded |
13 | git clone https://git.yoctoproject.org/git/meta-intel | 13 | git clone https://git.yoctoproject.org/git/meta-intel |
14 | git clone https://github.com/intel/meta-openvino | ||
14 | ``` | 15 | ``` |
15 | 16 | ||
16 | 17 | ||
@@ -30,6 +31,7 @@ Follow the [Yocto Project official documentation](https://docs.yoctoproject.org/ | |||
30 | bitbake-layers add-layer ../meta-openembedded/meta-oe | 31 | bitbake-layers add-layer ../meta-openembedded/meta-oe |
31 | bitbake-layers add-layer ../meta-openembedded/meta-python | 32 | bitbake-layers add-layer ../meta-openembedded/meta-python |
32 | bitbake-layers add-layer ../meta-intel | 33 | bitbake-layers add-layer ../meta-intel |
34 | bitbake-layers add-layer ../meta-openvino | ||
33 | 35 | ||
34 | ``` | 36 | ``` |
35 | 37 | ||
@@ -54,9 +56,6 @@ Follow the [Yocto Project official documentation](https://docs.yoctoproject.org/ | |||
54 | # Include OpenVINO Python API package in the target image. | 56 | # Include OpenVINO Python API package in the target image. |
55 | CORE_IMAGE_EXTRA_INSTALL:append = " openvino-inference-engine-python3" | 57 | CORE_IMAGE_EXTRA_INSTALL:append = " openvino-inference-engine-python3" |
56 | 58 | ||
57 | # Include model conversion API in the target image. | ||
58 | CORE_IMAGE_EXTRA_INSTALL:append = " openvino-model-optimizer" | ||
59 | |||
60 | ``` | 59 | ``` |
61 | 60 | ||
62 | ## Step 2: Build a Yocto Image with OpenVINO Packages | 61 | ## Step 2: Build a Yocto Image with OpenVINO Packages |
@@ -88,8 +87,6 @@ If the image build is successful, it will return the list of packages as below: | |||
88 | openvino-inference-engine-python3 | 87 | openvino-inference-engine-python3 |
89 | openvino-inference-engine-samples | 88 | openvino-inference-engine-samples |
90 | openvino-inference-engine-src | 89 | openvino-inference-engine-src |
91 | openvino-model-optimizer | 90 | openvino-inference-engine-doc |
92 | openvino-model-optimizer-dbg | ||
93 | openvino-model-optimizer-dev | ||
94 | 91 | ||
95 | ``` | 92 | ``` |