diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-07-11 17:35:23 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-07-14 12:12:02 +0300 |
commit | 46018778d2494189cb8d9f49966ca64cf82e70bc (patch) | |
tree | 61be6d39da26e7064426f7acd1b364d12fb7f19f /scripts | |
parent | 6d0da32ad190069976c1744b5fa189730e216941 (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>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile | 2 | ||||
-rwxr-xr-x | scripts/bin2png.sh | 2 | ||||
-rwxr-xr-x | scripts/histo2png.py | 2 | ||||
-rwxr-xr-x | scripts/logger.sh | 2 | ||||
-rwxr-xr-x | scripts/vsp-lib.sh | 2 | ||||
-rwxr-xr-x | scripts/vsp-tests.sh | 2 |
6 files changed, 12 insertions, 0 deletions
diff --git a/scripts/Makefile b/scripts/Makefile index 6586b29..6511c3c 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC0-1.0 + SCRIPTS=$(wildcard *.sh) all: diff --git a/scripts/bin2png.sh b/scripts/bin2png.sh index 6422ee5..d231d19 100755 --- a/scripts/bin2png.sh +++ b/scripts/bin2png.sh @@ -1,4 +1,6 @@ #!/bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later +# SPDX-FileCopyrightText: 2016-2017 Renesas Electronics Corporation FILE=${1:-.} diff --git a/scripts/histo2png.py b/scripts/histo2png.py index ff1da21..aef2363 100755 --- a/scripts/histo2png.py +++ b/scripts/histo2png.py @@ -1,4 +1,6 @@ #!/usr/bin/python +# SPDX-License-Identifier: GPL-2.0-or-later +# SPDX-FileCopyrightText: 2016 Renesas Electronics Corporation import matplotlib.pyplot as plt import struct diff --git a/scripts/logger.sh b/scripts/logger.sh index 8412b0b..97e1f58 100755 --- a/scripts/logger.sh +++ b/scripts/logger.sh @@ -1,4 +1,6 @@ #!/bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later +# SPDX-FileCopyrightText: 2016 Renesas Electronics Corporation now() { awk '/^now/ {time=$3; printf("[%u.%06u]", time / 1000000000, (time % 1000000000) / 1000) ; exit}' /proc/timer_list diff --git a/scripts/vsp-lib.sh b/scripts/vsp-lib.sh index c0eb1ca..a8898e8 100755 --- a/scripts/vsp-lib.sh +++ b/scripts/vsp-lib.sh @@ -1,4 +1,6 @@ #!/bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later +# SPDX-FileCopyrightText: 2016-2017 Renesas Electronics Corporation genimage='./gen-image' mediactl='media-ctl' diff --git a/scripts/vsp-tests.sh b/scripts/vsp-tests.sh index 1ed8171..e6cae04 100755 --- a/scripts/vsp-tests.sh +++ b/scripts/vsp-tests.sh @@ -1,4 +1,6 @@ #!/bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later +# SPDX-FileCopyrightText: 2016-2017 Renesas Electronics Corporation ## ## VSP Tests runner |