Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 03 Jan 2018 17:15:07
Message-Id: 1514999692.38bce48ced4a3541ca86151ec83c1d286471907b.ulm@gentoo
1 commit: 38bce48ced4a3541ca86151ec83c1d286471907b
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 3 17:08:23 2018 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 17:14:52 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38bce48c
7
8 kernel-2.eclass: Specify LICENSE for firmware more precisely.
9
10 Acked-by: Thomas Deutschmann <whissi <AT> gentoo.org>
11
12 eclass/kernel-2.eclass | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass
16 index 84909f30ca3..6d75c7fa65b 100644
17 --- a/eclass/kernel-2.eclass
18 +++ b/eclass/kernel-2.eclass
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2016 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: kernel-2.eclass
25 @@ -146,7 +146,7 @@
26 # @DESCRIPTION:
27 # This kernel was already deblobbed elsewhere.
28 # If false, either optional deblobbing will be available
29 -# or the license will note the inclusion of freedist code.
30 +# or the license will note the inclusion of linux-firmware code.
31
32 # @ECLASS-VARIABLE: K_LONGTERM
33 # @DEFAULT_UNSET
34 @@ -624,7 +624,7 @@ if [[ ${ETYPE} == sources ]]; then
35
36 # Reflect that kernels contain firmware blobs unless otherwise
37 # stripped
38 - LICENSE="${LICENSE} !deblob? ( freedist )"
39 + LICENSE="${LICENSE} !deblob? ( linux-firmware )"
40
41 DEPEND+=" deblob? ( ${PYTHON_DEPS} )"
42
43 @@ -661,7 +661,7 @@ if [[ ${ETYPE} == sources ]]; then
44 else
45 # We have no way to deblob older kernels, so just mark them as
46 # tainted with non-libre materials.
47 - LICENSE="${LICENSE} freedist"
48 + LICENSE="${LICENSE} linux-firmware"
49 fi
50 fi