Re: What "module license" applies to public domain code?

Alan Cox (alan@lxorguk.ukuu.org.uk)
Sat, 9 Feb 2002 00:05:00 +0000 (GMT)


> Of course, anyone else would be free to take the code and apply any
> license whatsoever to it, but my concern is simply what MODULE_LICENSE()
> line I can legitimately include, if any.

We have to be careful about this because MODULE_LICENSE("Public domain")
doesn't mean anything if the resulting code is then shipped binary only.
GPL and additional rights is probably closest or even just a

/*
* When linked into the Linux kernel the resulting work is GPL, you
* are however free to use this work under other licenses if you
* so wish. See README.blah
*/

MODULE_LICENSE("GPL"); /* When part of Linux */

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/