summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-07-11 17:21:51 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-07-14 12:10:13 +0300
commit2b8ccf53eefc9155cabf0460583599e1dab65eec (patch)
tree7df403dfadf2417ba79a507751f9f6f6dd6821f3
parentf4f5e930412a007b9f862024cccede416da8b2d9 (diff)
Add license and copyright information
Add SPDX tags to describe license and copyright information to all files in the repository. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
-rw-r--r--Makefile2
-rw-r--r--README3
-rw-r--r--tests/Makefile2
-rwxr-xr-xtests/kms-test-allplanes.py2
-rwxr-xr-xtests/kms-test-brxalloc.py2
-rwxr-xr-xtests/kms-test-connectors.py2
-rwxr-xr-xtests/kms-test-crc.py2
-rwxr-xr-xtests/kms-test-formats.py2
-rwxr-xr-xtests/kms-test-legacy-modeset.py2
-rwxr-xr-xtests/kms-test-modes.py2
-rwxr-xr-xtests/kms-test-modeset.py2
-rwxr-xr-xtests/kms-test-pageflip.py2
-rwxr-xr-xtests/kms-test-planeposition.py2
-rwxr-xr-xtests/kms-test-routing.py2
-rwxr-xr-xtests/kmstest.py2
15 files changed, 31 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3fe6ed9..1f0da15 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: CC0-1.0
+
SUBDIRS=tests
recursive=all clean install
diff --git a/README b/README
index 69a3bc5..7f770d4 100644
--- a/README
+++ b/README
@@ -1,3 +1,6 @@
+.. SPDX-License-Identifier: CC-BY-SA-4.0
+.. SPDX-FileCopyrightText: 2017 Renesas Electronics Corporation
+
du-tests
--------
diff --git a/tests/Makefile b/tests/Makefile
index 521761a..0a921e5 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: CC0-1.0
+
SCRIPTS=$(wildcard *.py)
all:
diff --git a/tests/kms-test-allplanes.py b/tests/kms-test-allplanes.py
index ca7baa0..d883262 100755
--- a/tests/kms-test-allplanes.py
+++ b/tests/kms-test-allplanes.py
@@ -1,4 +1,6 @@
#!/usr/bin/python3
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2017-2019 Renesas Electronics Corporation
import kmstest
import pykms
diff --git a/tests/kms-test-brxalloc.py b/tests/kms-test-brxalloc.py
index a0ae46a..dbdc789 100755
--- a/tests/kms-test-brxalloc.py
+++ b/tests/kms-test-brxalloc.py
@@ -1,4 +1,6 @@
#!/usr/bin/python3
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2018-2019 Renesas Electronics Corporation
import kmstest
import pykms
diff --git a/tests/kms-test-connectors.py b/tests/kms-test-connectors.py
index 25fc5dc..4c58b99 100755
--- a/tests/kms-test-connectors.py
+++ b/tests/kms-test-connectors.py
@@ -1,4 +1,6 @@
#!/usr/bin/python3
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2017 Renesas Electronics Corporation
import kmstest
import pykms
diff --git a/tests/kms-test-crc.py b/tests/kms-test-crc.py
index e0e0eab..d936d1d 100755
--- a/tests/kms-test-crc.py
+++ b/tests/kms-test-crc.py
@@ -1,4 +1,6 @@
#!/usr/bin/python3
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2017-2019 Renesas Electronics Corporation
import kmstest
import pykms
diff --git a/tests/kms-test-formats.py b/tests/kms-test-formats.py
index 15e6f59..77c9fe7 100755
--- a/tests/kms-test-formats.py
+++ b/tests/kms-test-formats.py
@@ -1,4 +1,6 @@
#!/usr/bin/python3
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2019 Renesas Electronics Corporation
import kmstest
import pykms
diff --git a/tests/kms-test-legacy-modeset.py b/tests/kms-test-legacy-modeset.py
index 17a8179..4b56053 100755
--- a/tests/kms-test-legacy-modeset.py
+++ b/tests/kms-test-legacy-modeset.py
@@ -1,4 +1,6 @@
#!/usr/bin/python3
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2018-2019 Renesas Electronics Corporation
import kmstest
import pykms
diff --git a/tests/kms-test-modes.py b/tests/kms-test-modes.py
index 82a1a3b..b298a19 100755
--- a/tests/kms-test-modes.py
+++ b/tests/kms-test-modes.py
@@ -1,4 +1,6 @@
#!/usr/bin/python3
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2017-2019 Renesas Electronics Corporation
import kmstest
import pykms
diff --git a/tests/kms-test-modeset.py b/tests/kms-test-modeset.py
index 224b391..0dbe67f 100755
--- a/tests/kms-test-modeset.py
+++ b/tests/kms-test-modeset.py
@@ -1,4 +1,6 @@
#!/usr/bin/python3
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2017-2019 Renesas Electronics Corporation
import kmstest
import pykms
diff --git a/tests/kms-test-pageflip.py b/tests/kms-test-pageflip.py
index bef1f49..19c3ada 100755
--- a/tests/kms-test-pageflip.py
+++ b/tests/kms-test-pageflip.py
@@ -1,4 +1,6 @@
#!/usr/bin/python3
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2017-2019 Renesas Electronics Corporation
import kmstest
import pykms
diff --git a/tests/kms-test-planeposition.py b/tests/kms-test-planeposition.py
index ac4b4d0..a7cc111 100755
--- a/tests/kms-test-planeposition.py
+++ b/tests/kms-test-planeposition.py
@@ -1,4 +1,6 @@
#!/usr/bin/python3
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2017-2019 Renesas Electronics Corporation
import kmstest
import pykms
diff --git a/tests/kms-test-routing.py b/tests/kms-test-routing.py
index a24dc1c..806adb8 100755
--- a/tests/kms-test-routing.py
+++ b/tests/kms-test-routing.py
@@ -1,4 +1,6 @@
#!/usr/bin/python3
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2019 Renesas Electronics Corporation
import kmstest
import pykms
diff --git a/tests/kmstest.py b/tests/kmstest.py
index 8a483d7..f13e3fb 100755
--- a/tests/kmstest.py
+++ b/tests/kmstest.py
@@ -1,4 +1,6 @@
#!/usr/bin/python3
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2017-2019 Renesas Electronics Corporation
import collections.abc
import errno