diff options
author | Bastian Germann <bage@debian.org> | 2025-01-31 20:25:20 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-05 12:49:55 +0000 |
commit | bdcc24a44faa1054bd5d458c1cdb9ac0b06a3cfe (patch) | |
tree | 5a0fe7b4554dae9720cc24e0eeb76ccb3d6aba35 | |
parent | bf76c0aa98e269a349ab419c4188198b441f3ee0 (diff) | |
download | poky-bdcc24a44faa1054bd5d458c1cdb9ac0b06a3cfe.tar.gz |
licenses: Map SGIv1 to SGI-OpenGL
SGI-1 is not a SPDX license identifier. However, the SGI-1 license has
the same license text as SGI-OpenGL. Map the old SGIv1 name to SGI-OpenGL.
(From OE-Core rev: e97a9c3c86a8fe27a26ad69174ba50e5228846e5)
Signed-off-by: Bastian Germann <bage@debian.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/licenses.conf | 2 | ||||
-rwxr-xr-x | scripts/contrib/convert-spdx-licenses.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/licenses.conf b/meta/conf/licenses.conf index 991fb6cc23..dcb499c3f3 100644 --- a/meta/conf/licenses.conf +++ b/meta/conf/licenses.conf | |||
@@ -112,7 +112,7 @@ SPDXLICENSEMAP[tcl] = "TCL" | |||
112 | SPDXLICENSEMAP[vim] = "Vim" | 112 | SPDXLICENSEMAP[vim] = "Vim" |
113 | 113 | ||
114 | # Silicon Graphics variations | 114 | # Silicon Graphics variations |
115 | SPDXLICENSEMAP[SGIv1] = "SGI-1" | 115 | SPDXLICENSEMAP[SGIv1] = "SGI-OpenGL" |
116 | 116 | ||
117 | # Additional license directories. Add your custom licenses directories this path. | 117 | # Additional license directories. Add your custom licenses directories this path. |
118 | # LICENSE_PATH += "${COREBASE}/custom-licenses" | 118 | # LICENSE_PATH += "${COREBASE}/custom-licenses" |
diff --git a/scripts/contrib/convert-spdx-licenses.py b/scripts/contrib/convert-spdx-licenses.py index 4e194dee3f..13cf12a33f 100755 --- a/scripts/contrib/convert-spdx-licenses.py +++ b/scripts/contrib/convert-spdx-licenses.py | |||
@@ -93,7 +93,7 @@ license_map = { | |||
93 | "Nauman" : "Naumen", | 93 | "Nauman" : "Naumen", |
94 | "tcl" : "TCL", | 94 | "tcl" : "TCL", |
95 | "vim" : "Vim", | 95 | "vim" : "Vim", |
96 | "SGIv1" : "SGI-1", | 96 | "SGIv1" : "SGI-OpenGL", |
97 | } | 97 | } |
98 | 98 | ||
99 | def processfile(fn): | 99 | def processfile(fn): |