mirror of https://github.com/xemu-project/xemu.git
kqemu is an external project
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1285 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
bf079a1e70
commit
441c72ba15
16
LICENSE
16
LICENSE
|
@ -7,20 +7,6 @@ The following points clarify the QEMU licenses:
|
||||||
2) The Linux user mode QEMU emulator is released under the GNU General
|
2) The Linux user mode QEMU emulator is released under the GNU General
|
||||||
Public License.
|
Public License.
|
||||||
|
|
||||||
3) The QEMU Accelerator Module is a proprietary product. It is
|
3) QEMU is a trademark of Fabrice Bellard.
|
||||||
available without charge. Commercial use of the QEMU Accelerator
|
|
||||||
Module is allowed.
|
|
||||||
|
|
||||||
Redistribution of the QEMU Accelerator Module: any person or
|
|
||||||
organisation wishing to distribute it, for example on a CD or as a
|
|
||||||
binary or source package, must have an explicit authorization from
|
|
||||||
the author.
|
|
||||||
|
|
||||||
The QEMU Accelerator Module is available without any express or
|
|
||||||
implied warranty. In no event will the author be held liable for
|
|
||||||
any damages arising from the use of this software.
|
|
||||||
|
|
||||||
4) QEMU is a trademark of Fabrice Bellard.
|
|
||||||
|
|
||||||
|
|
||||||
Fabrice Bellard.
|
Fabrice Bellard.
|
|
@ -347,6 +347,13 @@ bindir="$prefix/bin"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# kernel module support
|
# kernel module support
|
||||||
|
if test $kqemu = "yes" ; then
|
||||||
|
# test if the source code is installed
|
||||||
|
if test '!' -f "kqemu/Makefile" ; then
|
||||||
|
kqemu="no"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
if test $kqemu = "yes" ; then
|
if test $kqemu = "yes" ; then
|
||||||
# find the kernel path
|
# find the kernel path
|
||||||
if test -z "$kernel_path" ; then
|
if test -z "$kernel_path" ; then
|
||||||
|
|
Loading…
Reference in New Issue