diff options
author | Joe MacDonald <joe.macdonald@windriver.com> | 2012-11-30 11:45:00 -0500 |
---|---|---|
committer | Joe MacDonald <joe.macdonald@windriver.com> | 2012-11-30 11:49:56 -0500 |
commit | 85ab35f4edac91ecc180161e97c6698f1c10928b (patch) | |
tree | 115aad0e0c33ae08a478b6788496eeff2bf6faa6 /meta-networking | |
parent | 2c112985206902e9ba3ab303d603c148b9842d17 (diff) | |
download | meta-openembedded-85ab35f4edac91ecc180161e97c6698f1c10928b.tar.gz |
netperf: Correct license flags
From: Mark Hatle <mark.hatle@windriver.com>
I was helping someone with building netperf from meta-networking last
night, and stumbled on what I think is a bug.
SUMMARY = "A networking benchmarking tool"
DESCRIPTION = "Network performance benchmark including tests for TCP,
UDP, sockets, ATM and more."
SECTION = "console/network"
HOMEPAGE = "http://www.netperf.org/"
LICENSE = "netperf"
LICENSE_FLAGS = "commercial"
In the above, the LICENSE_FLAGS are set to 'commercial'. I think this
is incorrect. It should be set to 'non-commercial'.
There is a subtle difference between them which is why I think it's a
bug...
commercial -- there are some commercial requirements necessary to use
this recipe in a commercial device... you are responsible for
understanding them and doing whatever is necessary... (for
non-commercial devices you can likely use it...)
non-commercial -- this item is restricted to non-commercial users only.
As in the case of netperf, the license says it's only for
non-commercial use.
So anyway, my suggestion is to simply change the value of the flag.
Reported-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
Diffstat (limited to 'meta-networking')
-rw-r--r-- | meta-networking/recipes-support/netperf/netperf_2.6.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-support/netperf/netperf_2.6.0.bb b/meta-networking/recipes-support/netperf/netperf_2.6.0.bb index 2c30951d4..7b7884060 100644 --- a/meta-networking/recipes-support/netperf/netperf_2.6.0.bb +++ b/meta-networking/recipes-support/netperf/netperf_2.6.0.bb | |||
@@ -3,7 +3,7 @@ DESCRIPTION = "Network performance benchmark including tests for TCP, UDP, socke | |||
3 | SECTION = "console/network" | 3 | SECTION = "console/network" |
4 | HOMEPAGE = "http://www.netperf.org/" | 4 | HOMEPAGE = "http://www.netperf.org/" |
5 | LICENSE = "netperf" | 5 | LICENSE = "netperf" |
6 | LICENSE_FLAGS = "commercial" | 6 | LICENSE_FLAGS = "non-commercial" |
7 | 7 | ||
8 | PR = "r0" | 8 | PR = "r0" |
9 | 9 | ||