diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2023-01-30 22:54:35 +0000 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2023-03-21 23:45:35 +0000 |
commit | d9371444c487878e0bc37e89441d025efc0f3567 (patch) | |
tree | 7e0c12ea58a112ffe44bd1415bdf2c13e4c013af | |
parent | ffa3afdd61b74e254477247050b5e2881f1a7192 (diff) |
meson: libcamera: Report IPA signature method
Use the Configuration section to report which dependency is used to
handle IPA module signatures.
In the event that it is not found, report directly in the configuration
that modules are Isolated.
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r-- | src/libcamera/meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build index 9869bfe7..d4385041 100644 --- a/src/libcamera/meson.build +++ b/src/libcamera/meson.build @@ -90,6 +90,10 @@ endif if not libcrypto.found() warning('Neither gnutls nor libcrypto found, all IPA modules will be isolated') + summary({'IPA modules signed with': 'None (modules will run isolated)'}, + section: 'Configuration') +else + summary({'IPA modules signed with': libcrypto.name()}, section: 'Configuration') endif if liblttng.found() |