aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvi Kivity <avi@qumranet.com>2006-11-15 08:07:45 +0000
committerAvi Kivity <avi@qumranet.com>2006-11-15 08:07:45 +0000
commit6015a41e825e6217e939e75c49225346858131bb (patch)
treea35d2bf6eedabb11b41d1f7698da53efd8340065
parent25557610ec27f234bd40e647dda110b62f2537ce (diff)
kvm: libkvm: add copyright blurbs
-rw-r--r--kvm/user/COPYRIGHT4
-rw-r--r--kvm/user/kvmctl.c16
-rw-r--r--kvm/user/main.c16
3 files changed, 36 insertions, 0 deletions
diff --git a/kvm/user/COPYRIGHT b/kvm/user/COPYRIGHT
new file mode 100644
index 000000000..d35649cb9
--- /dev/null
+++ b/kvm/user/COPYRIGHT
@@ -0,0 +1,4 @@
+Copyright (C) 2006 Qumranet.
+
+The files in this directory and its subdirectories are licensed under the
+GNU LGPL, version 2.
diff --git a/kvm/user/kvmctl.c b/kvm/user/kvmctl.c
index bf04d2c11..6757761fb 100644
--- a/kvm/user/kvmctl.c
+++ b/kvm/user/kvmctl.c
@@ -1,3 +1,19 @@
+/*
+ * Kernel-based Virtual Machine control library
+ *
+ * This library provides an API to control the kvm hardware virtualization
+ * module.
+ *
+ * Copyright (C) 2006 Qumranet
+ *
+ * Authors:
+ *
+ * Avi Kivity <avi@qumranet.com>
+ * Yaniv Kamay <yaniv@qumranet.com>
+ *
+ * This work is licensed under the GNU LGPL license, version 2.
+ */
+
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
diff --git a/kvm/user/main.c b/kvm/user/main.c
index 1ba844cd6..94ff34aaa 100644
--- a/kvm/user/main.c
+++ b/kvm/user/main.c
@@ -1,3 +1,19 @@
+/*
+ * Kernel-based Virtual Machine test driver
+ *
+ * This test driver provides a simple way of testing kvm, without a full
+ * device model.
+ *
+ * Copyright (C) 2006 Qumranet
+ *
+ * Authors:
+ *
+ * Avi Kivity <avi@qumranet.com>
+ * Yaniv Kamay <yaniv@qumranet.com>
+ *
+ * This work is licensed under the GNU LGPL license, version 2.
+ */
+
#include "kvmctl.h"
#include <stdio.h>