summaryrefslogtreecommitdiff
path: root/src/ipa/vimc
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-03-29 07:22:47 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-04-14 02:03:30 +0300
commitebd0cae455ef1605a39b00dec79770f3d52de88f (patch)
tree213123fdf13ebb2e6b12a25e45af5badde67a46f /src/ipa/vimc
parenteab143ee69064092b6bb47297022efa80f47c120 (diff)
libcamera: ipa: Remove IPAModuleInfo license field
The IPAModuleInfo license field isn't needed anymore now that modules are cryptographically signed. Remove it. 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.build3
-rw-r--r--src/ipa/vimc/vimc.cpp1
2 files changed, 1 insertions, 3 deletions
diff --git a/src/ipa/vimc/meson.build b/src/ipa/vimc/meson.build
index 3097a12f..3c932aa7 100644
--- a/src/ipa/vimc/meson.build
+++ b/src/ipa/vimc/meson.build
@@ -7,8 +7,7 @@ mod = shared_module(ipa_name,
dependencies : libcamera_dep,
link_with : libipa,
install : true,
- install_dir : ipa_install_dir,
- cpp_args : '-DLICENSE="LGPL-2.1-or-later"')
+ install_dir : ipa_install_dir)
custom_target(ipa_name + '.so.sign',
input : mod,
diff --git a/src/ipa/vimc/vimc.cpp b/src/ipa/vimc/vimc.cpp
index 566a66e4..d2267e11 100644
--- a/src/ipa/vimc/vimc.cpp
+++ b/src/ipa/vimc/vimc.cpp
@@ -127,7 +127,6 @@ const struct IPAModuleInfo ipaModuleInfo = {
0,
"PipelineHandlerVimc",
"Dummy IPA for Vimc",
- LICENSE,
};
struct ipa_context *ipaCreate()