diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2010-04-01 21:12:20 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2010-04-01 21:12:20 +0000 |
commit | 035cbbc4a67fd62f707e4767a7da22bcb11975d1 (patch) | |
tree | 38ad58afa021ffde7b2763f1877f675c129b89a5 /eclass | |
parent | Version bump (bug #312637). Respect LDFLAGS. (diff) | |
download | gentoo-2-035cbbc4a67fd62f707e4767a7da22bcb11975d1.tar.gz gentoo-2-035cbbc4a67fd62f707e4767a7da22bcb11975d1.tar.bz2 gentoo-2-035cbbc4a67fd62f707e4767a7da22bcb11975d1.zip |
Bug #266157: Until such time as we have full deblob support for all sources, mark that kernels contain firmware blobs that are covered under the freedist license, not GPL-2.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kernel-2.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index 7482ce70208a..aa03770c25b1 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.224 2009/12/13 18:56:49 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.225 2010/04/01 21:12:20 robbat2 Exp $ # Description: kernel.eclass rewrite for a clean base regarding the 2.6 # series of kernel with back-compatibility for 2.4 @@ -74,7 +74,9 @@ if [[ ${CTARGET} == ${CHOST} && ${CATEGORY/cross-} != ${CATEGORY} ]]; then fi HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/ ${HOMEPAGE}" -LICENSE="GPL-2" +# Reflect that kernels contain firmware blobs unless otherwise stripped +[[ -z ${LICENSE} ]] && \ + LICENSE="GPL-2 freedist" # No need to run scanelf/strip on kernel sources/headers (bug #134453). RESTRICT="binchecks strip" |