diff options
author | Sergio Andres Gomez Del Real | 2017-09-13 11:05:11 +0200 |
---|---|---|
committer | Paolo Bonzini | 2017-12-22 15:01:46 +0100 |
commit | 996feed462fa7f249f03ffb0520c2ef0c5bc3312 (patch) | |
tree | f284fc249afb28189e468050adb4ad6a0309653c /target/i386/hvf-utils/Makefile.objs | |
parent | i386: hvf: add code base from Google's QEMU repository (diff) | |
download | qemu-996feed462fa7f249f03ffb0520c2ef0c5bc3312.tar.gz qemu-996feed462fa7f249f03ffb0520c2ef0c5bc3312.tar.xz qemu-996feed462fa7f249f03ffb0520c2ef0c5bc3312.zip |
i386: hvf: fix licensing issues; isolate task handling code (GPL v2-only)
This patch replaces the license header for those files that were either
GPL v2-or-v3, or GPL v2-only; the replacing license is GPL v2-or-later.
The code for task switching/handling, which is derived from KVM and
hence is GPL v2-only, is isolated in the new files (with this license)
x86_task.c/.h, and the corresponding compilation rule is added to
target/i386/hvf-utils/Makefile.objs.
Signed-off-by: Sergio Andres Gomez Del Real <Sergio.G.DelReal@gmail.com>
Message-Id: <20170913090522.4022-4-Sergio.G.DelReal@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/i386/hvf-utils/Makefile.objs')
-rw-r--r-- | target/i386/hvf-utils/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/i386/hvf-utils/Makefile.objs b/target/i386/hvf-utils/Makefile.objs index 7df219ad9c..79d8969ca8 100644 --- a/target/i386/hvf-utils/Makefile.objs +++ b/target/i386/hvf-utils/Makefile.objs @@ -1 +1 @@ -obj-y += x86.o x86_cpuid.o x86_decode.o x86_descr.o x86_emu.o x86_flags.o x86_mmu.o x86hvf.o +obj-y += x86.o x86_cpuid.o x86_decode.o x86_descr.o x86_emu.o x86_flags.o x86_mmu.o x86hvf.o x86_task.o |