[PATCH] List LGPL (v2 / v2.1) as GPL compatible inlicense_is_gpl_compatible()

From: Harald Welte
Date: Thu May 31 2012 - 18:49:47 EST


It may be a highly unusual choice to license Linux kernel drivers under
LGPL, but at least as long as LGPLv2 or LGPLv2.1 is used, this is fully
GPL compatible and shouldn't taint the kernel.

Signed-off-by: Harald Welte <laforge@xxxxxxxxxxxx>
---
include/linux/license.h | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)

NOTE: I've actually seen this happen in practise, where an embedded
system ships with a LPGL licensed driver which in turn taints the
kernel. I suppose this was not really the intention...

diff --git a/include/linux/license.h b/include/linux/license.h
index decdbf4..9c0df0e 100644
--- a/include/linux/license.h
+++ b/include/linux/license.h
@@ -8,7 +8,10 @@ static inline int license_is_gpl_compatible(const char *license)
|| strcmp(license, "GPL and additional rights") == 0
|| strcmp(license, "Dual BSD/GPL") == 0
|| strcmp(license, "Dual MIT/GPL") == 0
- || strcmp(license, "Dual MPL/GPL") == 0);
+ || strcmp(license, "Dual MPL/GPL") == 0
+ || strcmp(license, "LGPL") == 0
+ || strcmp(license, "LGPL v2") == 0
+ || strcmp(license, "LGPL v2.1") == 0);
}

#endif
--
1.7.10
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/