Linux Wireless Driver Violates BSD License?
bsdphx writes "After years of encouragement from the OpenBSD community for others to use Reyk Floeter's free Atheros wireless driver, it seems that the Linux world is finally listening. Unfortunately, they seem to think that they can strip the BSD license right out of it."
It appears that someone's submitted a patch to the LKML that wrongly strips the BSD atheros driver of its license - a clear violation of copyright.
However, until it's in Linus's tree (or even the MM tree), the violation is not by "linux", but the contributor, Jiri Slaby.
Anyway, thanks to the OpenBSD team for these great drivers. Thanks to the Linux team for including them (under the correct license).
There are shills on slashdot. Apparently, I'm one of them.
Let me remind you however, that this was the work of an individual who posted to a public mailing list. It hasn't been accepted into Linus's or Morton's tree.
There are shills on slashdot. Apparently, I'm one of them.
http://lkml.org/lkml/2007/8/29/69
Someone pointed out the problem and a patch is likely on its way.
Conversion Rate Optimisation French / English consultant
Ignoring moral issues, is there a problem? The source was dual-licensed under GPL and BSD licenses ("Alternatively, this software may be distributed under the terms of the GNU General Public License ("GPL") version 2 as published by the Free Software Foundation."), so isn't it allowed to release it under just the GPL? IANAL.
I'll leave moral issues to another thread.
The response from the person involved is at least much more responsible and reasonable than in the earlier incident: http://lkml.org/lkml/2007/8/29/69
"I think it would be a good idea!"
Gandhi, about Internet Security
The fact is the original patch post was on Tue, 28 Aug 2007 12:00:50. Since then, the discussions are ongoing as how best to proceed. Recently, this was posted:
...
Date Wed, 29 Aug 2007 08:35:05 -0200
From "Jiri Slaby"
Subject Re: [PATCH 4/5] Net: ath5k, license is GPLv2
On 8/29/07, Johannes Berg wrote:
> On Tue, 2007-08-28 at 12:00 -0400, Jiri Slaby wrote:
>
> > The files are available only under GPLv2 since now.
>
> Since the BSD people are already getting upset about (for various
> reasons among which seem to be a clear non-understanding) I'd suggest
> changing it to:
yes, please. Can somebody do it, I'm away from my box.
> + * Parts of this file were originally licenced under the BSD licence:
> + *
> > * Permission to use, copy, modify, and distribute this software for any
> > * purpose with or without fee is hereby granted, provided that the above
> > * copyright notice and this permission notice appear in all copies.
> > *
> > * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
> WARRANTIES
> > * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
> > * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
> > * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
> > * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
> > * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
> > * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
> + *
> + * Further changes to this file since the moment this notice was extended
> + * are now distributed under the terms of the GPL version two as published
> + * by the Free Software Foundation
>
> johannes
>
As mentioned before, it is the LKML, not the Rosetta stone. Things change
The little guy just ain't getting it, is he?
Basically, you are allowed to link GPL'd code to BSD code. So if I wrote "The boy hit the baseball" under the BSD license and you alter it to "The large boy hit the baseball well" under the GPL, the original statement is still available for use under the BSD license - even in your second statement. As long as they remove your GPL'd addition (the intertwined words "large" and "well"), they are free to use it under the BSD's terms.
The practical point is that the BSD code, when linked with GPL code, must adhere to the restrictions of both licenses. Most people just say that it has been relicensed under the GPL. That isn't exactly true. From most practical standpoints, the BSD license has so few restrictions that it doesn't matter, but technically that BSD code is still under the BSD license and it's requirements must be met.
So, that BSD code can easily be linked and intertwined with GPL code, but those few requirements of the BSD license must be met so long as there is any BSD code in the GPL'd derivative work.
Personally, I would probably add another GPL poison pill to whatever I released after that, though - to require people to actually contact me and have the code relicensed if they want to hack around with the GPL. And convincing me to relicense would include convincing me that they knew exactly what they were doing and had sound reasons for needing/wanting to use the GPL instead of sticking with a more free license; I see routine licensing under the GPL as damaging, and want to do my little bit against it.
Eivind.
Doubting the existence of evolution is like doubting the existence of China: It just shows that you're uninformed.
An Anonymous Coward wrote this by the original article....
How much you will to bet this won't instantly appear on Slashdot
;-)
Got them moderator blues I blieve I walk out the do', With these mod-points I been gettin', I 'most never post no mo'
The notion come from the fact that If I had taken the time in the first place I would have been able to post a more accurate and coherent post, rather than having to submit updates with corrections in, not good form.
To begin with, I just contacted one of the authors and it appears
this is just miscommunication by some people who didn't bother to ask:
the code is really dual-licensed BSD and GPL, so that people
from all sides can get the benefit. The case that wasn't.
Let's remind that GPL and BSD are different licences.
You can turn a BSD code into GPL but not vice versa
and this has some serious implications, since GPL *does not*
enforce author back reference as long as the code remains GPL;
short of "the copyright holder is FSF" itself.
It means that this is a legally valid path:
BSD code with ref. -> GPL code with ref. -> GPL code without ref.
It is not clear to me though if BSD's request for author reference
should be considered "a further restriction" under GPL's regime.
A lawyer please?
We all agree that some back reference would be nice,
if not for credit at least for documentation reasons.
It appears that you can't read this particular patch style. The lines with + mean added, the lines with - mean removed.
.c files were handled appropriately and it was merely the .h files that had the license completely ripped out. The .c files were dual-licensed and said you could choose either. They just removed the BSD license as that was "choosing" GPLv2. The .h files are just some interfaces and don't change often anyways, so the BSD license is good enough for them (they should have left those). The .c files are the actual implementation, which would change between operating systems.
.h files since they didn't have the dual-license notice in them. If they aren't dual-licensed under both, you can relicense as GPLv2, but you have to include the BSD notice under its own terms. The GPL itself even says not just attribution, but the original notices themselves must be preserved. One additionally might say that since the GPL says to preserve the original notice, that even in the dual-license case you must preserve the BSD license in order to initially comply with the GPL, although that's a requirement of the GPL and not a dual-licensing/BSD provision. A dual-licensing (as you can see in this case) clearly says you can pick either, since the word "Alternatively" (e.g. the ath5k_reg.h license) implies if you chose the following path, you can ignore the provisions of the previous path.
The lines without either mean that's context for the differences.
If you look at the original patch, no attribution was removed. The attribution was in the context lines.
It looks like the
Here's a link to the actual diff as provided in the original article:
http://lkml.org/lkml/2007/8/28/157
You'll also note that the dual-licensed code had the committer's copyright notice on it. In some cases it was only his notice, originally. With the data immediately available, maybe he stripped it out in a commit before this one, but they don't seem to be accusing him of that. They are mainly accusing him of ripping out the BSD license from a couple
In summary, it looks like a lot of this was nit-picking over how to actually do the license notice preservation, rather than preserving somebody's attribution. I imagine it'll be fixed up in very little time and few people will care about this in more than a day or two.
This line (taken from the diff in the link) says it all, really.
The original implementation was dual licensed BSD/GPL.
The submitter changed some bits and decided to pick the GPL license (both would have been allowed).
Now the submitted code is GPL-restricted.
It's a pretty pathetic thing to do, cutting off the source from any usefull changes, but perfectly legal nonetheless.
Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
Really? Because this is what I read from Theo: It boggles the mind. One writes legal text which says "You may not delete this", and their approach is to delete it, and splatter GPL-gizm all over it. "Screw the everyone and theirlaws, we are GNU...". He sounds like an ass to me regardless of who's right or wrong.
We always knew Comcast was corrupt, here's the proof: http://tech.slashdot.org/comments.pl?sid=1909890&cid=34545432
it's a copy paste job:
6
o ld=1&commentsort=0&mode=thread&cid=13343214
http://www.kuro5hin.org/story/2003/2/13/8422/1665
http://slashdot.org/comments.pl?sid=159323&thresh
sarcasm:
-noun
1. harsh or bitter derision or irony.
Some points...
/ah5k_hw.h / ath5kreg.h and ath5k.h do not come from openbsd tree, they have code from bsd (that's why Reyk's copyright is there) but are written from scratch. They first appeared on madwifi svn (http://madwifi.org/changeset/2232) and are part of madwifi-old-openhal project. They have a different layout (eg. code is not split per-chip as in openbsd cvs but it's common for all chips, lot more documentation on registers etc) and you can see that changes have been done since http://madwifi.org/log/branches/madwifi-old-openha l/openhal (initial register writes for example are done in a different way than original openbsd code). So it's a derivative work or a "fork", not a "copy" as the license says ("copyright notice and this permission notice appear in all copies."). So if those files had from start a GPLv2 license it wouldn't be a problem (since they are not "copies" of the original code and author's copyright -Reyk's- is still there so there is no copyright violation either).
l opers-Steal-OpenBSD-Code-for-Wireless-Driver) and this is really anoying !!!
/ ic/), so "bad linux developers against openbsd" scenario doesn't apply here...
0 7-April/004370.html), not a test branch like -mm, the core cvs. Also have in mind that Theo back then criticized Mike for doing this on a public mailing list etc and now he didn't say a thing about publicity.
a) ath5k_hw.c
b) Original author of those files (mickflemm) later uploaded them on madwifi svn repository again but now with a different license (http://madwifi.org/changeset/2670), GPLv2 as you see (Reyk's copyright is still there of course)...
So where is the problem ???
I see no violation, only people calling other people thieves (http://www.osnews.com/story.php/18528/Linux-Deve
Also have in mind that Madwifi team have provided patches on openbsd (you can see that on openbsd cvs http://www.openbsd.org/cgi-bin/cvsweb/src/sys/dev
To summarize the whole thing IMHO is nonsense, Theo just wanted to make a point against linux developers after a serious (even copyright was removed) violation commited on openbsd's cvs (http://lists.berlios.de/pipermail/bcm43xx-dev/20
Now, one of the BSDL projects I support is PostgreSQL. As your post suggests, there are a number of companies that either currently or in the past have offered proprietary versions of the software. These include Command Prompt, EnterpriseDB, Fujitsu, Green Plum, Pervasive, and SRA.
Of these, Command Prompt still has *one* proprietary add-on (but they no longer sell proprietary versions of the software), Fujitsu has dropped off the radar screen, Pervasive has given up competing with Free, and so has SRA. EnterpriseDB and Green Plum market niche products but they are hardly mainstream. In short, in a few years, pretty every proprietary version which even had a hope of being mainstream died.
In case you are wondering, EnterpriseDB offers a version of PostgreSQL with some extra Oracle compatibility. Nobody in the PostgreSQL community (myself included) wants this in our software. So we are happy to let them sell that. After all, they contribute a lot of code back to the main version. After all, they want to be competing against Oracle ($$$), not PostgreSQL (Free).
Similarly Green Plum makes a version of PostgreSQL aimed at buisness intelligence markets. They release a single-node version open source, and a version capable of parallelism under a proprietary license. The parallelism is what you pay for in BI space, so that is what they keep to themselves. Again, they want to be competing with Teradata, Oracle, and DB2 ($$$), not PostgreSQL (Free).
Pervasive tried to compete with Free and discovered it didn't work...
Where the BSDL has some drawbacks though is that it discourages businesses from being first movers in the development. The basic problem is this: You license your software, and your competitor can take that as you released it to get ahead. The GPL solves this problem, but in my view, but another option might be to approach some competitors and ask for contracts stating that for 1-2 years, they will contribute all the code thee write for it back. By then, you should have a larger community.
LedgerSMB: Open source Accounting/ERP