Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot]  [PATCH 1/3] lmbench: Add license info
@ 2012-08-03  9:45 Kelvin Cheung
  2012-08-03  9:45 ` [Buildroot] [PATCH 2/3] bwm-ng: " Kelvin Cheung
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Kelvin Cheung @ 2012-08-03  9:45 UTC (permalink / raw)
  To: buildroot

Add license info for lmbench.
---
 package/lmbench/lmbench.mk |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/package/lmbench/lmbench.mk b/package/lmbench/lmbench.mk
index bccb2de..3d3c3da 100644
--- a/package/lmbench/lmbench.mk
+++ b/package/lmbench/lmbench.mk
@@ -6,6 +6,8 @@
 LMBENCH_VERSION:=3.0-a9
 LMBENCH_SOURCE:=lmbench-$(LMBENCH_VERSION).tgz
 LMBENCH_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/lmbench/development/lmbench-3.0-a9/
+LMBENCH_LICENSE = GPLv2
+LMBENCH_LICENSE_FILES = COPYING
 
 define LMBENCH_CONFIGURE_CMDS
 	$(call CONFIG_UPDATE,$(@D))
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot]  [PATCH 2/3] bwm-ng: Add license info
  2012-08-03  9:45 [Buildroot] [PATCH 1/3] lmbench: Add license info Kelvin Cheung
@ 2012-08-03  9:45 ` Kelvin Cheung
  2012-08-04 11:20   ` Thomas Petazzoni
  2012-08-03  9:45 ` [Buildroot] [PATCH 3/3] input-event-daemon: " Kelvin Cheung
  2012-08-04 11:18 ` [Buildroot] [PATCH 1/3] lmbench: " Thomas Petazzoni
  2 siblings, 1 reply; 6+ messages in thread
From: Kelvin Cheung @ 2012-08-03  9:45 UTC (permalink / raw)
  To: buildroot

Add license info for bwm-ng.
---
 package/bwm-ng/bwm-ng.mk |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/package/bwm-ng/bwm-ng.mk b/package/bwm-ng/bwm-ng.mk
index 55ac2f1..ddc6f5b 100644
--- a/package/bwm-ng/bwm-ng.mk
+++ b/package/bwm-ng/bwm-ng.mk
@@ -7,6 +7,8 @@
 BWM_NG_VERSION = 0.6
 BWM_NG_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/bwmng/bwmng/$(BWM_NG_VERSION)/
 BWM_NG_CONF_OPT = --with-procnetdev --with-diskstats
+BWM_NG_LICENSE = GPLv2
+BWM_NG_LICENSE_FILES = COPYING
 
 ifeq ($(BR2_PACKAGE_NCURSES),y)
 BWM_NG_CONF_OPT += --with-ncurses
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot]  [PATCH 3/3] input-event-daemon: Add license info
  2012-08-03  9:45 [Buildroot] [PATCH 1/3] lmbench: Add license info Kelvin Cheung
  2012-08-03  9:45 ` [Buildroot] [PATCH 2/3] bwm-ng: " Kelvin Cheung
@ 2012-08-03  9:45 ` Kelvin Cheung
  2012-08-04 11:18 ` [Buildroot] [PATCH 1/3] lmbench: " Thomas Petazzoni
  2 siblings, 0 replies; 6+ messages in thread
From: Kelvin Cheung @ 2012-08-03  9:45 UTC (permalink / raw)
  To: buildroot

Add license info for input-event-daemon.
---
 package/input-event-daemon/input-event-daemon.mk |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/package/input-event-daemon/input-event-daemon.mk b/package/input-event-daemon/input-event-daemon.mk
index 0683056..f99bfbe 100644
--- a/package/input-event-daemon/input-event-daemon.mk
+++ b/package/input-event-daemon/input-event-daemon.mk
@@ -6,6 +6,8 @@
 
 INPUT_EVENT_DAEMON_VERSION = v0.1.3
 INPUT_EVENT_DAEMON_SITE = git://github.com/gandro/input-event-daemon.git
+INPUT_EVENT_DAEMON_LICENSE = input-event-daemon license
+INPUT_EVENT_DAEMON_LICENSE_FILES = README
 
 define INPUT_EVENT_DAEMON_BUILD_CMDS
 	touch  $(@D)/input-event-table.h
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 1/3] lmbench: Add license info
  2012-08-03  9:45 [Buildroot] [PATCH 1/3] lmbench: Add license info Kelvin Cheung
  2012-08-03  9:45 ` [Buildroot] [PATCH 2/3] bwm-ng: " Kelvin Cheung
  2012-08-03  9:45 ` [Buildroot] [PATCH 3/3] input-event-daemon: " Kelvin Cheung
@ 2012-08-04 11:18 ` Thomas Petazzoni
  2 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2012-08-04 11:18 UTC (permalink / raw)
  To: buildroot

Le Fri,  3 Aug 2012 17:45:04 +0800,
Kelvin Cheung <keguang.zhang@gmail.com> a ?crit :

> +LMBENCH_LICENSE = GPLv2

No, see the file COPYING-2. The license of lmbench seems more
complicated. This file adds some fairly strong restrictions on top of
the GPLv2, which probably makes this program non-free software.

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 2/3] bwm-ng: Add license info
  2012-08-03  9:45 ` [Buildroot] [PATCH 2/3] bwm-ng: " Kelvin Cheung
@ 2012-08-04 11:20   ` Thomas Petazzoni
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2012-08-04 11:20 UTC (permalink / raw)
  To: buildroot

Le Fri,  3 Aug 2012 17:45:05 +0800,
Kelvin Cheung <keguang.zhang@gmail.com> a ?crit :

> Add license info for bwm-ng.
> ---

Please add your Signed-off-by on all the patches you submit.

Thanks!

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot]  [PATCH 2/3] bwm-ng: Add license info
  2012-08-06  2:21 Kelvin Cheung
@ 2012-08-06  2:21 ` Kelvin Cheung
  0 siblings, 0 replies; 6+ messages in thread
From: Kelvin Cheung @ 2012-08-06  2:21 UTC (permalink / raw)
  To: buildroot

Add license info for bwm-ng.

Signed-off-by: Kelvin Cheung <keguang.zhang@gmail.com>
---
 package/bwm-ng/bwm-ng.mk |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/package/bwm-ng/bwm-ng.mk b/package/bwm-ng/bwm-ng.mk
index 55ac2f1..ddc6f5b 100644
--- a/package/bwm-ng/bwm-ng.mk
+++ b/package/bwm-ng/bwm-ng.mk
@@ -7,6 +7,8 @@
 BWM_NG_VERSION = 0.6
 BWM_NG_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/bwmng/bwmng/$(BWM_NG_VERSION)/
 BWM_NG_CONF_OPT = --with-procnetdev --with-diskstats
+BWM_NG_LICENSE = GPLv2
+BWM_NG_LICENSE_FILES = COPYING
 
 ifeq ($(BR2_PACKAGE_NCURSES),y)
 BWM_NG_CONF_OPT += --with-ncurses
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-08-06  2:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-03  9:45 [Buildroot] [PATCH 1/3] lmbench: Add license info Kelvin Cheung
2012-08-03  9:45 ` [Buildroot] [PATCH 2/3] bwm-ng: " Kelvin Cheung
2012-08-04 11:20   ` Thomas Petazzoni
2012-08-03  9:45 ` [Buildroot] [PATCH 3/3] input-event-daemon: " Kelvin Cheung
2012-08-04 11:18 ` [Buildroot] [PATCH 1/3] lmbench: " Thomas Petazzoni
  -- strict thread matches above, loose matches on Subject: below --
2012-08-06  2:21 Kelvin Cheung
2012-08-06  2:21 ` [Buildroot] [PATCH 2/3] bwm-ng: " Kelvin Cheung

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox