* Re: Point of gpl-only modules (flame) [not found] <fa.uOYpsaQzzWwjjKspWNuGWwuESHM@ifi.uio.no> @ 2007-10-04 2:08 ` Robert Hancock 0 siblings, 0 replies; 7+ messages in thread From: Robert Hancock @ 2007-10-04 2:08 UTC (permalink / raw) To: Jimmy; +Cc: linux-kernel Jimmy wrote: > I know I'll be getting hell for this, I must be a masochist. > > Anyway, I've been trying to figure out what purpose the gpl-only code > serves. > What good comes out of disabling people from probing modules that do not > have a gpl-compatible license? Who is disabling anything? > Of cause, I would love to see more hardware manufactures release either > full specs, or GPL'd drivers, and I'm sure it will happen, in time. > But until then, why are people wasting time writing code to inhibit > those who do not agree with them on licensing? > > It seems pretty childish to try and force some license on people, > imagine trying to install firefox on Windows Vista, an error-dialog box > appears: > "This application has been denied access to the Windows API as its > license are compatible with the Microsoft Philosophy" ? > > Now, i don't want to waste clock cycles on executing code that serves no > purpose but restraining me from using my $1500 gfx card as intended, so > will me removing that crap from the source result in somebody trying to > obfuscate it to a point where neither of us know what is what? > > Also, how about a list of PROS, explain to me whats so cool about it? The kernel gets marked as tainted when you load proprietary modules because with no source code available there is no way to determine what kind of badness the code may have done to break the kernel. Bug reports from tainted kernels are generally given fairly little weight. -- Robert Hancock Saskatoon, SK, Canada To email, remove "nospam" from hancockr@nospamshaw.ca Home Page: http://www.roberthancock.com/ ^ permalink raw reply [flat|nested] 7+ messages in thread
* Point of gpl-only modules (flame)
@ 2007-10-02 21:49 Jimmy
2007-10-02 22:58 ` Olivier Galibert
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Jimmy @ 2007-10-02 21:49 UTC (permalink / raw)
To: linux-kernel
I know I'll be getting hell for this, I must be a masochist.
Anyway, I've been trying to figure out what purpose the gpl-only code
serves.
What good comes out of disabling people from probing modules that do not
have a gpl-compatible license?
Of cause, I would love to see more hardware manufactures release either
full specs, or GPL'd drivers, and I'm sure it will happen, in time.
But until then, why are people wasting time writing code to inhibit
those who do not agree with them on licensing?
It seems pretty childish to try and force some license on people,
imagine trying to install firefox on Windows Vista, an error-dialog box
appears:
"This application has been denied access to the Windows API as its
license are compatible with the Microsoft Philosophy" ?
Now, i don't want to waste clock cycles on executing code that serves no
purpose but restraining me from using my $1500 gfx card as intended, so
will me removing that crap from the source result in somebody trying to
obfuscate it to a point where neither of us know what is what?
Also, how about a list of PROS, explain to me whats so cool about it?
- Jimmy
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: Point of gpl-only modules (flame) 2007-10-02 21:49 Jimmy @ 2007-10-02 22:58 ` Olivier Galibert 2007-10-02 23:01 ` Jan Engelhardt 2007-10-02 23:25 ` Arjan van de Ven 2 siblings, 0 replies; 7+ messages in thread From: Olivier Galibert @ 2007-10-02 22:58 UTC (permalink / raw) To: linux-kernel On Tue, Oct 02, 2007 at 11:49:04PM +0200, Jimmy wrote: > Also, how about a list of PROS, explain to me whats so cool about it? People who do binary-only drivers have a much better chance of not doing a derivative work when they only use non-EXPORT_GPL exports, and as a result not being in the wrong legally. OG. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Point of gpl-only modules (flame) 2007-10-02 21:49 Jimmy 2007-10-02 22:58 ` Olivier Galibert @ 2007-10-02 23:01 ` Jan Engelhardt 2007-10-03 11:32 ` linux-os (Dick Johnson) 2007-10-02 23:25 ` Arjan van de Ven 2 siblings, 1 reply; 7+ messages in thread From: Jan Engelhardt @ 2007-10-02 23:01 UTC (permalink / raw) To: Jimmy; +Cc: linux-kernel On Oct 2 2007 23:49, Jimmy wrote: > > Anyway, I've been trying to figure out what purpose the gpl-only code serves. > What good comes out of disabling people from probing modules that do not have a > gpl-compatible license? find /lib/modules/`uname -r` -iname '*.ko' | wc -l: 2021 Proprietary modules that I can think of: 5 to 10 It's not even 1/2 a !#$ percent. (Though knowing that many modules are for not-so-common hw.) > It seems pretty childish to try and force some license on people, imagine > trying to install firefox on Windows Vista, an error-dialog box appears: > "This application has been denied access to the Windows API as its license are > compatible with the Microsoft Philosophy" ? Not a kernel problem. (That said, MS would probably face yet another antitrust charge if it did that. Or better yet, people would just thankfully stop using it.) > Now, i don't want to waste clock cycles on executing code that serves no > purpose but restraining me from using my $1500 gfx card as intended, Perhaps you intended to buy a game console instead? That said, no one is restraining you. You can edit the kernel source and rip out all the GPL checks. On top, it's not like the ati or nvidia blob-ola would not load in today's kernel. 01:00 ichi:~ > lsmod | grep nv nvidia 4717076 22 Oh yeah, my kernel (unpatched, btw) really tries to stop me hard from loading it. > so will me > removing that crap from the source result in somebody trying to obfuscate it to > a point where neither of us know what is what? > > Also, how about a list of PROS, explain to me whats so cool about it? > > - Jimmy ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Point of gpl-only modules (flame) 2007-10-02 23:01 ` Jan Engelhardt @ 2007-10-03 11:32 ` linux-os (Dick Johnson) 2007-10-03 16:50 ` David Newall 0 siblings, 1 reply; 7+ messages in thread From: linux-os (Dick Johnson) @ 2007-10-03 11:32 UTC (permalink / raw) To: Jan Engelhardt; +Cc: Jimmy, linux-kernel On Tue, 2 Oct 2007, Jan Engelhardt wrote: > > On Oct 2 2007 23:49, Jimmy wrote: >> >> Anyway, I've been trying to figure out what purpose the gpl-only code serves. >> What good comes out of disabling people from probing modules that do not have a >> gpl-compatible license? > > find /lib/modules/`uname -r` -iname '*.ko' | wc -l: > > 2021 > > Proprietary modules that I can think of: > > 5 to 10 > > It's not even 1/2 a !#$ percent. (Though knowing that many modules are for > not-so-common hw.) > >> It seems pretty childish to try and force some license on people, imagine >> trying to install firefox on Windows Vista, an error-dialog box appears: >> "This application has been denied access to the Windows API as its license are >> compatible with the Microsoft Philosophy" ? > > Not a kernel problem. > > (That said, MS would probably face yet another antitrust charge if it did that. > Or better yet, people would just thankfully stop using it.) > >> Now, i don't want to waste clock cycles on executing code that serves no >> purpose but restraining me from using my $1500 gfx card as intended, > > Perhaps you intended to buy a game console instead? > > That said, no one is restraining you. You can edit the kernel source > and rip out all the GPL checks. On top, it's not like the ati or > nvidia blob-ola would not load in today's kernel. > > 01:00 ichi:~ > lsmod | grep nv > nvidia 4717076 22 > > Oh yeah, my kernel (unpatched, btw) really tries to stop me hard > from loading it. > >> so will me >> removing that crap from the source result in somebody trying to obfuscate it to >> a point where neither of us know what is what? >> >> Also, how about a list of PROS, explain to me whats so cool about it? >> >> - Jimmy > - Jimmy, a simple script can generate a link object that will resolve any kernel symbols for your module without any "export symbol" stuff at all. This was previously demonstrated to the enraged few who considered it immoral. Nevertheless, it's just as moral as bypassing RIAA copy protection. Just don't expect the kernel developers to authorize its use, or show you how to do it! Cheers, Dick Johnson Penguin : Linux version 2.6.16.24 on an i686 machine (5592.59 BogoMips). My book : http://www.AbominableFirebug.com/ _ **************************************************************** The information transmitted in this message is confidential and may be privileged. Any review, retransmission, dissemination, or other use of this information by persons or entities other than the intended recipient is prohibited. If you are not the intended recipient, please notify Analogic Corporation immediately - by replying to this message or by sending an email to DeliveryErrors@analogic.com - and destroy all copies of this information, including any attachments, without reading or disclosing them. Thank you. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Point of gpl-only modules (flame) 2007-10-03 11:32 ` linux-os (Dick Johnson) @ 2007-10-03 16:50 ` David Newall 0 siblings, 0 replies; 7+ messages in thread From: David Newall @ 2007-10-03 16:50 UTC (permalink / raw) To: linux-os (Dick Johnson); +Cc: Jan Engelhardt, Jimmy, linux-kernel linux-os (Dick Johnson) wrote: > Just don't expect the kernel developers to authorize > its use, or show you how to do it! Well of course you can be totally up-front and public about it. That, after all, is the point of GPL. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Point of gpl-only modules (flame) 2007-10-02 21:49 Jimmy 2007-10-02 22:58 ` Olivier Galibert 2007-10-02 23:01 ` Jan Engelhardt @ 2007-10-02 23:25 ` Arjan van de Ven 2 siblings, 0 replies; 7+ messages in thread From: Arjan van de Ven @ 2007-10-02 23:25 UTC (permalink / raw) To: linux-kernel On Tue, 02 Oct 2007 23:49:04 +0200 Jimmy <lists@dusted.dk> wrote: > I know I'll be getting hell for this, I must be a masochist. > DO NOT FEED THE TROLL. ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2007-10-04 2:09 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <fa.uOYpsaQzzWwjjKspWNuGWwuESHM@ifi.uio.no>
2007-10-04 2:08 ` Point of gpl-only modules (flame) Robert Hancock
2007-10-02 21:49 Jimmy
2007-10-02 22:58 ` Olivier Galibert
2007-10-02 23:01 ` Jan Engelhardt
2007-10-03 11:32 ` linux-os (Dick Johnson)
2007-10-03 16:50 ` David Newall
2007-10-02 23:25 ` Arjan van de Ven
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox