diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-04-16 14:49:24 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-04-16 17:37:41 +0300 |
commit | b382f67c833de08717cfec19273b95f5819cab27 (patch) | |
tree | 938585d23a2b15237c385f48e7ffaee02fe68cac /src | |
parent | 06260fdfd6420a6324e20dc11726d6d69747646a (diff) |
libcamera: Make IPA module signing mandatory for the meantime
IPA module signing is optional, but when not available due to missing
dependencies, we hit failures due to a non fully implemented IPA
isolation. Make module signing mandatory until isolation is functional.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/libcamera/meson.build | 2 | ||||
-rw-r--r-- | src/meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build index dcd2fb49..874d2590 100644 --- a/src/libcamera/meson.build +++ b/src/libcamera/meson.build @@ -62,7 +62,7 @@ subdir('proxy') libatomic = cc.find_library('atomic', required : false) libdl = cc.find_library('dl') -libgnutls = cc.find_library('gnutls', required : false) +libgnutls = cc.find_library('gnutls', required : true) libudev = dependency('libudev', required : false) if libgnutls.found() diff --git a/src/meson.build b/src/meson.build index 29668275..f605a420 100644 --- a/src/meson.build +++ b/src/meson.build @@ -2,7 +2,7 @@ if get_option('android') subdir('android') endif -openssl = find_program('openssl', required : false) +openssl = find_program('openssl', required : true) if openssl.found() ipa_gen_priv_key = find_program('ipa/gen-ipa-priv-key.sh') ipa_priv_key = custom_target('ipa-priv-key', |