From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1CzNm7-0001bF-6y for qemu-devel@nongnu.org; Thu, 10 Feb 2005 18:31:07 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1CzNlR-0001Tk-Rn for qemu-devel@nongnu.org; Thu, 10 Feb 2005 18:30:26 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CzNlM-0001Ix-LX for qemu-devel@nongnu.org; Thu, 10 Feb 2005 18:30:20 -0500 Received: from [161.58.242.233] (helo=hotwww5.hotwww.com) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1CzNFS-0000O9-SW for qemu-devel@nongnu.org; Thu, 10 Feb 2005 17:57:22 -0500 Subject: Re: [Qemu-devel] qemu/kqemu install.sh kmod.c kqemu.h kqemu-mod-... From: Thayne Harbaugh In-Reply-To: References: Content-Type: text/plain Date: Thu, 10 Feb 2005 15:57:16 -0700 Message-Id: <1108076236.584.44.camel@localhost.localdomain> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel On Thu, 2005-02-10 at 17:10 -0500, Fabrice Bellard wrote: > CVSROOT: /cvsroot/qemu > Module name: qemu > Branch: > Changes by: Fabrice Bellard 05/02/10 22:10:28 > > Added files: > kqemu : install.sh kmod.c kqemu.h kqemu-mod-i386.o > Makefile > > Log message: > kqemu support > > CVSWeb URLs: > http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/kqemu/install.sh?rev=1.1 > http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/kqemu/kmod.c?rev=1.1 > http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/kqemu/kqemu.h?rev=1.1 > http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/kqemu/kqemu-mod-i386.o?rev=1.1 > http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/kqemu/Makefile?rev=1.1 >>From qemu/kqemu/kmod.c: int init_module(void) { . . . printk("QEMU Accelerator Module version %d.%d.%d, Copyright (c) 2005 Fabrice Bellard\n" "This is a proprietary product. Read the LICENSE file for more information\n" "Redistribution of this module is prohibited without authorization\n", (KQEMU_VERSION >> 16), (KQEMU_VERSION >> 8) & 0xff, (KQEMU_VERSION) & 0xff); What's up with the "Redistribution of this module is prohibited without authorization" statement? I was hoping to see a MODULE_LICENSE("GPL").