summaryrefslogtreecommitdiff
path: root/src/ipa/vimc
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-03-29 04:48:59 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-04-14 02:03:09 +0300
commitec9231889156fc9b5debcdb99605fe32964ebaaa (patch)
treebce651032ef06ecdad3e705a087cb518ad8e4d95 /src/ipa/vimc
parente62bc9db73531462dc4b28b42596d0ae26369cbd (diff)
libcamera: Add IPA module signing infrastructure
Add infrastructure to generate an RSA private key and sign IPA modules. The signatures are stored in separate files with a .sign suffix. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'src/ipa/vimc')
-rw-r--r--src/ipa/vimc/meson.build12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/ipa/vimc/meson.build b/src/ipa/vimc/meson.build
index e827e75f..3097a12f 100644
--- a/src/ipa/vimc/meson.build
+++ b/src/ipa/vimc/meson.build
@@ -1,4 +1,7 @@
-ipa = shared_module('ipa_vimc', 'vimc.cpp',
+ipa_name = 'ipa_vimc'
+
+mod = shared_module(ipa_name,
+ 'vimc.cpp',
name_prefix : '',
include_directories : [ipa_includes, libipa_includes],
dependencies : libcamera_dep,
@@ -6,3 +9,10 @@ ipa = shared_module('ipa_vimc', 'vimc.cpp',
install : true,
install_dir : ipa_install_dir,
cpp_args : '-DLICENSE="LGPL-2.1-or-later"')
+
+custom_target(ipa_name + '.so.sign',
+ input : mod,
+ output : ipa_name + '.so.sign',
+ command : [ ipa_sign, ipa_priv_key, '@INPUT@', '@OUTPUT@' ],
+ install : true,
+ install_dir : ipa_install_dir)