diff options
author | Ulrich Müller <ulm@gentoo.org> | 2018-01-03 18:08:23 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2018-01-03 18:14:52 +0100 |
commit | 38bce48ced4a3541ca86151ec83c1d286471907b (patch) | |
tree | 718b06ade487e31bb5d2297579750a18a44a6b52 /eclass | |
parent | dev-python/sabyenc: fix tests with pytest-3.2.2 (diff) | |
download | gentoo-38bce48ced4a3541ca86151ec83c1d286471907b.tar.gz gentoo-38bce48ced4a3541ca86151ec83c1d286471907b.tar.bz2 gentoo-38bce48ced4a3541ca86151ec83c1d286471907b.zip |
kernel-2.eclass: Specify LICENSE for firmware more precisely.
Acked-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kernel-2.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index 84909f30ca32..6d75c7fa65bf 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # @ECLASS: kernel-2.eclass @@ -146,7 +146,7 @@ # @DESCRIPTION: # This kernel was already deblobbed elsewhere. # If false, either optional deblobbing will be available -# or the license will note the inclusion of freedist code. +# or the license will note the inclusion of linux-firmware code. # @ECLASS-VARIABLE: K_LONGTERM # @DEFAULT_UNSET @@ -624,7 +624,7 @@ if [[ ${ETYPE} == sources ]]; then # Reflect that kernels contain firmware blobs unless otherwise # stripped - LICENSE="${LICENSE} !deblob? ( freedist )" + LICENSE="${LICENSE} !deblob? ( linux-firmware )" DEPEND+=" deblob? ( ${PYTHON_DEPS} )" @@ -661,7 +661,7 @@ if [[ ${ETYPE} == sources ]]; then else # We have no way to deblob older kernels, so just mark them as # tainted with non-libre materials. - LICENSE="${LICENSE} freedist" + LICENSE="${LICENSE} linux-firmware" fi fi |