diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-02-07 19:58:54 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-05-13 16:46:24 +0300 |
commit | 7a653369cb42e1611b884f4a16de60d1b60aa8e7 (patch) | |
tree | 934828a83a02c02cd2c44daf1373d86d587ba351 /test | |
parent | cc8215f3819279678731727087acabd2f17c9412 (diff) |
licenses: License all meson files under CC0-1.0
In an attempt to clarify the license terms of all files in the libcamera
project, the build system files deserve particular attention. While they
describe how the binaries are created, they are not themselves
transformed into any part of binary distributions of the software, and
thus don't influence the copyright on the binary packages. They are
however subject to copyright, and thus influence the distribution terms
of the source packages.
Most of the meson.build files would not meet the threshold of
originality criteria required for copyright protection. Some of the more
complex meson.build files may be eligible for copyright protection. To
avoid any ambiguity and uncertainty, state our intent to not assert
copyrights on the build system files by putting them in the public
domain with the CC0-1.0 license.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Acked-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
Acked-by: Jacopo Mondi <jacopo@jmondi.org>
Acked-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Acked-by: Naushir Patuck <naush@raspberrypi.com>
Acked-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Acked-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Acked-by: Paul Elder <paul.elder@ideasonboard.com>
Acked-by: Show Liu <show.liu@linaro.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/camera/meson.build | 2 | ||||
-rw-r--r-- | test/controls/meson.build | 2 | ||||
-rw-r--r-- | test/ipa/meson.build | 2 | ||||
-rw-r--r-- | test/ipc/meson.build | 2 | ||||
-rw-r--r-- | test/libtest/meson.build | 2 | ||||
-rw-r--r-- | test/log/meson.build | 2 | ||||
-rw-r--r-- | test/media_device/meson.build | 2 | ||||
-rw-r--r-- | test/meson.build | 2 | ||||
-rw-r--r-- | test/pipeline/ipu3/meson.build | 2 | ||||
-rw-r--r-- | test/pipeline/meson.build | 2 | ||||
-rw-r--r-- | test/pipeline/rkisp1/meson.build | 2 | ||||
-rw-r--r-- | test/process/meson.build | 2 | ||||
-rw-r--r-- | test/serialization/meson.build | 2 | ||||
-rw-r--r-- | test/stream/meson.build | 2 | ||||
-rw-r--r-- | test/v4l2_subdevice/meson.build | 2 | ||||
-rw-r--r-- | test/v4l2_videodevice/meson.build | 2 |
16 files changed, 32 insertions, 0 deletions
diff --git a/test/camera/meson.build b/test/camera/meson.build index e2a6660a..0395e7dd 100644 --- a/test/camera/meson.build +++ b/test/camera/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + # Tests are listed in order of complexity. # They are not alphabetically sorted. camera_tests = [ diff --git a/test/controls/meson.build b/test/controls/meson.build index 7fff2413..545fb03b 100644 --- a/test/controls/meson.build +++ b/test/controls/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + control_tests = [ [ 'control_info', 'control_info.cpp' ], [ 'control_info_map', 'control_info_map.cpp' ], diff --git a/test/ipa/meson.build b/test/ipa/meson.build index f925c50a..ba672f3f 100644 --- a/test/ipa/meson.build +++ b/test/ipa/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + ipa_test = [ ['ipa_module_test', 'ipa_module_test.cpp'], ['ipa_interface_test', 'ipa_interface_test.cpp'], diff --git a/test/ipc/meson.build b/test/ipc/meson.build index cc46b41c..650df1d6 100644 --- a/test/ipc/meson.build +++ b/test/ipc/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + ipc_tests = [ [ 'unixsocket', 'unixsocket.cpp' ], ] diff --git a/test/libtest/meson.build b/test/libtest/meson.build index 33565e0e..481f6d6b 100644 --- a/test/libtest/meson.build +++ b/test/libtest/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + libtest_sources = files([ 'buffer_source.cpp', 'camera_test.cpp', diff --git a/test/log/meson.build b/test/log/meson.build index 95f6c1a2..8cd664e0 100644 --- a/test/log/meson.build +++ b/test/log/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + log_test = [ ['log_api', 'log_api.cpp'], ['log_process', 'log_process.cpp'], diff --git a/test/media_device/meson.build b/test/media_device/meson.build index 6a0e4684..1dfcdd8b 100644 --- a/test/media_device/meson.build +++ b/test/media_device/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + lib_mdev_test_sources = files([ 'media_device_test.cpp', ]) diff --git a/test/meson.build b/test/meson.build index 5a45a85e..bd7da147 100644 --- a/test/meson.build +++ b/test/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + subdir('libtest') subdir('camera') diff --git a/test/pipeline/ipu3/meson.build b/test/pipeline/ipu3/meson.build index d02927c9..d062ecd2 100644 --- a/test/pipeline/ipu3/meson.build +++ b/test/pipeline/ipu3/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + ipu3_test = [ ['ipu3_pipeline_test', 'ipu3_pipeline_test.cpp'], ] diff --git a/test/pipeline/meson.build b/test/pipeline/meson.build index 157f789c..6e7901fe 100644 --- a/test/pipeline/meson.build +++ b/test/pipeline/meson.build @@ -1,2 +1,4 @@ +# SPDX-License-Identifier: CC0-1.0 + subdir('ipu3') subdir('rkisp1') diff --git a/test/pipeline/rkisp1/meson.build b/test/pipeline/rkisp1/meson.build index d3f97496..ece147b0 100644 --- a/test/pipeline/rkisp1/meson.build +++ b/test/pipeline/rkisp1/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + rkisp1_test = [ ['rkisp1_pipeline_test', 'rkisp1_pipeline_test.cpp'], ] diff --git a/test/process/meson.build b/test/process/meson.build index c4d83d6c..c215fa7e 100644 --- a/test/process/meson.build +++ b/test/process/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + process_tests = [ [ 'process_test', 'process_test.cpp' ], ] diff --git a/test/serialization/meson.build b/test/serialization/meson.build index d78d92e6..a9d9cbcb 100644 --- a/test/serialization/meson.build +++ b/test/serialization/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + serialization_tests = [ [ 'control_serialization', 'control_serialization.cpp' ], ] diff --git a/test/stream/meson.build b/test/stream/meson.build index 005f4aa4..2b9b29a9 100644 --- a/test/stream/meson.build +++ b/test/stream/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + stream_tests = [ [ 'stream_formats', 'stream_formats.cpp' ], ] diff --git a/test/v4l2_subdevice/meson.build b/test/v4l2_subdevice/meson.build index 0521984b..5f0882ca 100644 --- a/test/v4l2_subdevice/meson.build +++ b/test/v4l2_subdevice/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + v4l2_subdevice_tests = [ [ 'list_formats', 'list_formats.cpp'], [ 'test_formats', 'test_formats.cpp'], diff --git a/test/v4l2_videodevice/meson.build b/test/v4l2_videodevice/meson.build index 685fcf6d..b4bb3090 100644 --- a/test/v4l2_videodevice/meson.build +++ b/test/v4l2_videodevice/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + # Tests are listed in order of complexity. # They are not alphabetically sorted. v4l2_videodevice_tests = [ |