diff options
author | Rahul Bedarkar <rahul.bedarkar@imgtec.com> | 2016-10-19 23:11:54 +0530 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-10-19 23:28:09 +0200 |
commit | 1ab240a14b9149fff4832ef6a9cf3798639b5dfd (patch) | |
tree | 7bf224d553b780dc594feea50d4f977b702e4459 | |
parent | 29673c8b1e5d5764fce58b2dcef839d412286552 (diff) |
kmod: annotate licenses with components
library libkmod.so is licensed under LGPLv2.1+ and kmod tools are
licensed under GPLv2+.
Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/kmod/kmod.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/kmod/kmod.mk b/package/kmod/kmod.mk index 1753b1d5e..7492b926f 100644 --- a/package/kmod/kmod.mk +++ b/package/kmod/kmod.mk @@ -12,7 +12,7 @@ KMOD_DEPENDENCIES = host-pkgconf HOST_KMOD_DEPENDENCIES = host-pkgconf # license info for libkmod only, conditionally add more below -KMOD_LICENSE = LGPLv2.1+ +KMOD_LICENSE = LGPLv2.1+ (library) KMOD_LICENSE_FILES = libkmod/COPYING # static linking not supported, see @@ -40,7 +40,7 @@ endif ifeq ($(BR2_PACKAGE_KMOD_TOOLS),y) # add license info for kmod tools -KMOD_LICENSE += GPLv2+ +KMOD_LICENSE := $(KMOD_LICENSE), GPLv2+ (tools) KMOD_LICENSE_FILES += COPYING # take precedence over busybox implementation |