From 42e43afd5f39b2c46a91093eb14496073fc5ccb7 Mon Sep 17 00:00:00 2001
authorXin Xiaohui <xiaohui.xin@intel.com>
Tue, 8 Jan 2013 03:21:25 +0000 (11:21 +0800)
committerZhai Edwin <edwin.zhai@intel.com>
Tue, 8 Jan 2013 05:23:13 +0000 (13:23 +0800)
Subject: [PATCH] Add boilerplate-for-HAXM

Signed-off-by: Xin Xiaohui <xiaohui.xin@intel.com>
hax.h
target-i386/hax-all.c
target-i386/hax-darwin.c
target-i386/hax-darwin.h
target-i386/hax-i386.h
target-i386/hax-interface.h
target-i386/hax-windows.c
target-i386/hax-windows.h

diff --git a/hax.h b/hax.h
index 4c184f20b5317b243b070e1d9816b0866b794c34..0e782aca95ba20e87bbee1e502794d6b288220ec 100644 (file)
--- a/hax.h
+++ b/hax.h
@@ -1,3 +1,21 @@
+/*
+ * QEMU HAXM support
+ *
+ * Copyright IBM, Corp. 2008
+ *
+ * Authors:
+ *  Anthony Liguori   <aliguori@us.ibm.com>
+ * 
+ * Copyright (c) 2011 Intel Corporation
+ *  Written by:
+ *  Jiang Yunhong<yunhong.jiang@intel.com>
+ *  Xin Xiaohui<xiaohui.xin@intel.com>
+ *  Zhang Xiantao<xiantao.zhang@intel.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ *
+ */
+
 /* header to be included in non-HAX-specific code */
 #ifndef _HAX_H
 #define _HAX_H
index a60065f185db50a3dcd8a9f5a3601eeb85c1b29e..9792b06639e4a159912e7e6625a30fad53b485f1 100644 (file)
@@ -1,3 +1,24 @@
+/*
+ * QEMU KVM support
+ *
+ * Copyright IBM, Corp. 2008
+ *           Red Hat, Inc. 2008
+ *
+ * Authors:
+ *  Anthony Liguori   <aliguori@us.ibm.com>
+ *  Glauber Costa     <gcosta@redhat.com>
+ *
+ * Copyright (c) 2011 Intel Corporation
+ *  Written by:
+ *  Jiang Yunhong<yunhong.jiang@intel.com>
+ *  Xin Xiaohui<xiaohui.xin@intel.com>
+ *  Zhang Xiantao<xiantao.zhang@intel.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ *
+ */
+
 /*
  * HAX common code for both windows and darwin
  * some code from KVM side
index b3127f661978d25f7c4b3d4acc5d7886e6f295a6..546973f45e026fbbc144817b0f16e6a41e0d2bc4 100644 (file)
@@ -1,3 +1,14 @@
+/*
+ * QEMU HAXM support
+ *
+ * Copyright (c) 2011 Intel Corporation
+ *  Written by:
+ *  Jiang Yunhong<yunhong.jiang@intel.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ *
+ */
+
 /* HAX module interface - darwin version */
 #include <sys/types.h>
 #include <sys/stat.h>
index 594a616289aacf18d18e621f1218a269becd1e19..1a20cc9b71c5785fd347e658c5a91777f658762d 100644 (file)
@@ -1,3 +1,17 @@
+/*
+ * QEMU KVM support
+ *
+ * Copyright (c) 2011 Intel Corporation
+ *  Written by:
+ *  Jiang Yunhong<yunhong.jiang@intel.com>
+ *  Xin Xiaohui<xiaohui.xin@intel.com>
+ *  Zhang Xiantao<xiantao.zhang@intel.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ *
+ */
+
 #ifndef __HAX_UNIX_H
 #define __HAX_UNIX_H
 
index 29415652fd6e65205a8d466f1ea5652a0021a0df..ac69e956b9ff8d8e8f6bd4a306821e0d5d3ae0d6 100644 (file)
@@ -1,3 +1,14 @@
+/*
+ * QEMU HAXM support
+ *
+ * Copyright (c) 2011 Intel Corporation
+ *  Written by:
+ *  Jiang Yunhong<yunhong.jiang@intel.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ *
+ */
+
 #ifndef _HAX_I386_H
 #define _HAX_I386_H
 
index b9126904cad864e3df401496c41fa5307a61c61d..ca0f958ca6b144f5a88c41ce9649f0fe9cfbc6ae 100644 (file)
@@ -1,3 +1,16 @@
+/*
+ * QEMU HAXM support
+ *
+ * Copyright (c) 2011 Intel Corporation
+ *  Written by:
+ *  Jiang Yunhong<yunhong.jiang@intel.com>
+ *  Xin Xiaohui<xiaohui.xin@intel.com>
+ *  Zhang Xiantao<xiantao.zhang@intel.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ *
+ */
+
 /* Interface with HAX kernel module */
 
 #ifndef _HAX_INTERFACE_H
index c510cac2144080519aa9e060a6954c9b66fd4393..0c8e261253bc62632d24213e778b7125d56d76c7 100644 (file)
@@ -1,3 +1,14 @@
+/*
+ * QEMU HAXM support
+ *
+ * Copyright (c) 2011 Intel Corporation
+ *  Written by:
+ *  Jiang Yunhong<yunhong.jiang@intel.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ *
+ */
+
 #include "hax-i386.h"
 
 /*
index 48569cdb86581e832847fa704c8188a239963795..eb561febc2ad9439384af89b3665b818f1400eb9 100644 (file)
@@ -1,3 +1,21 @@
+/*
+ * QEMU HAXM support
+ *
+ * Copyright IBM, Corp. 2008
+ *
+ * Authors:
+ *  Anthony Liguori   <aliguori@us.ibm.com>
+ *
+ * Copyright (c) 2011 Intel Corporation
+ *  Written by:
+ *  Jiang Yunhong<yunhong.jiang@intel.com>
+ *  Xin Xiaohui<xiaohui.xin@intel.com>
+ *  Zhang Xiantao<xiantao.zhang@intel.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ *
+ */
+
 #ifndef __HAX_WINDOWS_H
 #define __HAX_WINDOWS_H