diff options
author | Paul Elder <paul.elder@ideasonboard.com> | 2020-09-28 16:48:52 +0900 |
---|---|---|
committer | Paul Elder <paul.elder@ideasonboard.com> | 2020-11-11 19:23:16 +0900 |
commit | f4420ef8bf3e12d274b2d9feae7c09ba7138b8d7 (patch) | |
tree | bad01be5776e8295e5c17289dcf552874df3f49e | |
parent | 82ba73535c0966e8ae8fb50db1ea23534d827717 (diff) |
README, meson: Add dependency on ply and jinja2 for IPA interface generation
Specify in the readme and meson file that we depend on python3-ply and
python3-jinja2 for generating the IPA interface.
Signed-off-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | utils/ipc/meson.build | 3 | ||||
-rw-r--r-- | utils/meson.build | 1 |
3 files changed, 5 insertions, 1 deletions
@@ -58,7 +58,7 @@ Meson Build system: [required] pip3 install --user --upgrade meson for the libcamera core: [required] - python3-yaml + python3-yaml python3-ply python3-jinja2 for IPA module signing: [required] libgnutls28-dev openssl diff --git a/utils/ipc/meson.build b/utils/ipc/meson.build new file mode 100644 index 00000000..59f097f0 --- /dev/null +++ b/utils/ipc/meson.build @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: CC0-1.0 + +py_modules += ['jinja2', 'ply'] diff --git a/utils/meson.build b/utils/meson.build index 7f2b9b4d..8e28ada7 100644 --- a/utils/meson.build +++ b/utils/meson.build @@ -1,5 +1,6 @@ # SPDX-License-Identifier: CC0-1.0 +subdir('ipc') subdir('ipu3') subdir('tracepoints') |