diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-10 20:40:57 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-12 12:00:43 +0100 |
| commit | ce08cf4825f0e4e42509794a2dcd53a3ea5126e4 (patch) | |
| tree | e3011eb9603bbc7fdadae10c43eb4cdc4e5b0c20 /meta/lib/oeqa/utils | |
| parent | ff525695f27ce2d9033f6f03f6b22fe06aa01960 (diff) | |
| download | poky-ce08cf4825f0e4e42509794a2dcd53a3ea5126e4.tar.gz | |
lib: Add copyright statements to files without one
Where there isn't a copyright statement, add one to make it explicit.
Also add license identifiers as MIT if there isn't one.
(From OE-Core rev: bb731d1f3d2a1d50ec0aed864dbca54cf795b040)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/utils')
| -rw-r--r-- | meta/lib/oeqa/utils/__init__.py | 2 | ||||
| -rw-r--r-- | meta/lib/oeqa/utils/dump.py | 2 | ||||
| -rw-r--r-- | meta/lib/oeqa/utils/ftools.py | 2 | ||||
| -rw-r--r-- | meta/lib/oeqa/utils/httpserver.py | 2 | ||||
| -rw-r--r-- | meta/lib/oeqa/utils/logparser.py | 2 | ||||
| -rw-r--r-- | meta/lib/oeqa/utils/network.py | 2 | ||||
| -rw-r--r-- | meta/lib/oeqa/utils/nfs.py | 4 | ||||
| -rw-r--r-- | meta/lib/oeqa/utils/package_manager.py | 2 | ||||
| -rw-r--r-- | meta/lib/oeqa/utils/subprocesstweak.py | 2 |
9 files changed, 20 insertions, 0 deletions
diff --git a/meta/lib/oeqa/utils/__init__.py b/meta/lib/oeqa/utils/__init__.py index 6d1ec4cb99..fbc7f7d525 100644 --- a/meta/lib/oeqa/utils/__init__.py +++ b/meta/lib/oeqa/utils/__init__.py | |||
| @@ -1,4 +1,6 @@ | |||
| 1 | # | 1 | # |
| 2 | # Copyright OpenEmbedded Contributors | ||
| 3 | # | ||
| 2 | # SPDX-License-Identifier: MIT | 4 | # SPDX-License-Identifier: MIT |
| 3 | # | 5 | # |
| 4 | # Enable other layers to have modules in the same named directory | 6 | # Enable other layers to have modules in the same named directory |
diff --git a/meta/lib/oeqa/utils/dump.py b/meta/lib/oeqa/utils/dump.py index 95a79a571c..bcee03b576 100644 --- a/meta/lib/oeqa/utils/dump.py +++ b/meta/lib/oeqa/utils/dump.py | |||
| @@ -1,4 +1,6 @@ | |||
| 1 | # | 1 | # |
| 2 | # Copyright OpenEmbedded Contributors | ||
| 3 | # | ||
| 2 | # SPDX-License-Identifier: MIT | 4 | # SPDX-License-Identifier: MIT |
| 3 | # | 5 | # |
| 4 | 6 | ||
diff --git a/meta/lib/oeqa/utils/ftools.py b/meta/lib/oeqa/utils/ftools.py index 3093419cc7..a50aaa84c2 100644 --- a/meta/lib/oeqa/utils/ftools.py +++ b/meta/lib/oeqa/utils/ftools.py | |||
| @@ -1,4 +1,6 @@ | |||
| 1 | # | 1 | # |
| 2 | # Copyright OpenEmbedded Contributors | ||
| 3 | # | ||
| 2 | # SPDX-License-Identifier: MIT | 4 | # SPDX-License-Identifier: MIT |
| 3 | # | 5 | # |
| 4 | 6 | ||
diff --git a/meta/lib/oeqa/utils/httpserver.py b/meta/lib/oeqa/utils/httpserver.py index 58d3c3b3f8..8ce1dd42f4 100644 --- a/meta/lib/oeqa/utils/httpserver.py +++ b/meta/lib/oeqa/utils/httpserver.py | |||
| @@ -1,4 +1,6 @@ | |||
| 1 | # | 1 | # |
| 2 | # Copyright OpenEmbedded Contributors | ||
| 3 | # | ||
| 2 | # SPDX-License-Identifier: MIT | 4 | # SPDX-License-Identifier: MIT |
| 3 | # | 5 | # |
| 4 | 6 | ||
diff --git a/meta/lib/oeqa/utils/logparser.py b/meta/lib/oeqa/utils/logparser.py index 879aefca33..7cb79a8402 100644 --- a/meta/lib/oeqa/utils/logparser.py +++ b/meta/lib/oeqa/utils/logparser.py | |||
| @@ -1,4 +1,6 @@ | |||
| 1 | # | 1 | # |
| 2 | # Copyright OpenEmbedded Contributors | ||
| 3 | # | ||
| 2 | # SPDX-License-Identifier: MIT | 4 | # SPDX-License-Identifier: MIT |
| 3 | # | 5 | # |
| 4 | 6 | ||
diff --git a/meta/lib/oeqa/utils/network.py b/meta/lib/oeqa/utils/network.py index 59d01723a1..da4ffda9a9 100644 --- a/meta/lib/oeqa/utils/network.py +++ b/meta/lib/oeqa/utils/network.py | |||
| @@ -1,4 +1,6 @@ | |||
| 1 | # | 1 | # |
| 2 | # Copyright OpenEmbedded Contributors | ||
| 3 | # | ||
| 2 | # SPDX-License-Identifier: MIT | 4 | # SPDX-License-Identifier: MIT |
| 3 | # | 5 | # |
| 4 | 6 | ||
diff --git a/meta/lib/oeqa/utils/nfs.py b/meta/lib/oeqa/utils/nfs.py index a37686c914..c1218656ce 100644 --- a/meta/lib/oeqa/utils/nfs.py +++ b/meta/lib/oeqa/utils/nfs.py | |||
| @@ -1,4 +1,8 @@ | |||
| 1 | # | ||
| 2 | # Copyright OpenEmbedded Contributors | ||
| 3 | # | ||
| 1 | # SPDX-License-Identifier: MIT | 4 | # SPDX-License-Identifier: MIT |
| 5 | # | ||
| 2 | import os | 6 | import os |
| 3 | import sys | 7 | import sys |
| 4 | import tempfile | 8 | import tempfile |
diff --git a/meta/lib/oeqa/utils/package_manager.py b/meta/lib/oeqa/utils/package_manager.py index 6b67f22fdd..db799b64d6 100644 --- a/meta/lib/oeqa/utils/package_manager.py +++ b/meta/lib/oeqa/utils/package_manager.py | |||
| @@ -1,4 +1,6 @@ | |||
| 1 | # | 1 | # |
| 2 | # Copyright OpenEmbedded Contributors | ||
| 3 | # | ||
| 2 | # SPDX-License-Identifier: MIT | 4 | # SPDX-License-Identifier: MIT |
| 3 | # | 5 | # |
| 4 | 6 | ||
diff --git a/meta/lib/oeqa/utils/subprocesstweak.py b/meta/lib/oeqa/utils/subprocesstweak.py index b47975a4bc..3e43ed547b 100644 --- a/meta/lib/oeqa/utils/subprocesstweak.py +++ b/meta/lib/oeqa/utils/subprocesstweak.py | |||
| @@ -1,4 +1,6 @@ | |||
| 1 | # | 1 | # |
| 2 | # Copyright OpenEmbedded Contributors | ||
| 3 | # | ||
| 2 | # SPDX-License-Identifier: MIT | 4 | # SPDX-License-Identifier: MIT |
| 3 | # | 5 | # |
| 4 | import subprocess | 6 | import subprocess |
