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/x86_mmu.c | |
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/x86_mmu.c')
-rw-r--r-- | target/i386/hvf-utils/x86_mmu.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/target/i386/hvf-utils/x86_mmu.c b/target/i386/hvf-utils/x86_mmu.c index 4bb1664104..26e9e95b0b 100644 --- a/target/i386/hvf-utils/x86_mmu.c +++ b/target/i386/hvf-utils/x86_mmu.c @@ -3,17 +3,17 @@ * Copyright (C) 2017 Google Inc, * * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 or - * (at your option) version 3 of the License. + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. * - * You should have received a copy of the GNU General Public License along - * with this program; if not, see <http://www.gnu.org/licenses/>. + * You should have received a copy of the GNU Lesser General Public + * License along with this program; if not, see <http://www.gnu.org/licenses/>. */ #include "qemu/osdep.h" |