installing-openvino-yocto.md: fix install instructions (#10785)
Change _ to : as per the new override syntax. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
This commit is contained in:
parent
69ad9e80e1
commit
7e8bbf4968
@ -43,26 +43,26 @@ MACHINE = "intel-skylake-64"
|
||||
# Enable clDNN GPU plugin when needed.
|
||||
# This requires meta-clang and meta-oe layers to be included in bblayers.conf
|
||||
# and is not enabled by default.
|
||||
PACKAGECONFIG_append_pn-openvino-inference-engine = " opencl"
|
||||
PACKAGECONFIG:append:pn-openvino-inference-engine = " opencl"
|
||||
|
||||
# Enable building OpenVINO Python API.
|
||||
# This requires meta-python layer to be included in bblayers.conf.
|
||||
PACKAGECONFIG_append_pn-openvino-inference-engine = " python3"
|
||||
PACKAGECONFIG:append:pn-openvino-inference-engine = " python3"
|
||||
|
||||
# This adds OpenVINO related libraries in the target image.
|
||||
CORE_IMAGE_EXTRA_INSTALL_append = " openvino-inference-engine"
|
||||
CORE_IMAGE_EXTRA_INSTALL:append = " openvino-inference-engine"
|
||||
|
||||
# This adds OpenVINO samples in the target image.
|
||||
CORE_IMAGE_EXTRA_INSTALL_append = " openvino-inference-engine-samples"
|
||||
CORE_IMAGE_EXTRA_INSTALL:append = " openvino-inference-engine-samples"
|
||||
|
||||
# Include OpenVINO Python API package in the target image.
|
||||
CORE_IMAGE_EXTRA_INSTALL_append = " openvino-inference-engine-python3"
|
||||
CORE_IMAGE_EXTRA_INSTALL:append = " openvino-inference-engine-python3"
|
||||
|
||||
# Enable MYRIAD plugin
|
||||
CORE_IMAGE_EXTRA_INSTALL_append = " openvino-inference-engine-vpu-firmware"
|
||||
CORE_IMAGE_EXTRA_INSTALL:append = " openvino-inference-engine-vpu-firmware"
|
||||
|
||||
# Include Model Optimizer in the target image.
|
||||
CORE_IMAGE_EXTRA_INSTALL_append = " openvino-model-optimizer"
|
||||
CORE_IMAGE_EXTRA_INSTALL:append = " openvino-model-optimizer"
|
||||
```
|
||||
|
||||
## Step 2: Build a Yocto Image with OpenVINO Packages
|
||||
|
Loading…
Reference in New Issue
Block a user