Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


reduced debugging messages
[palacios.git] / 3RD_PARTY_LICENSES
1 src/devices/ramdisk.c
2 include/devices/ramdisk.h
3 include/devices/ide.h
4
5 Taken from BOCHS
6 LPGL
7
8 =====================================================================
9 include/palacios/vmm_list.h
10
11 Taken From Linux
12 GPL...
13
14
15 =====================================================================
16 src/palacios/vmm_symbol.asm
17 src/palacios/vmm_string.c
18 include/palacios/vmm_string.h
19
20 Taken from GeekOS
21 /*
22  * Copyright (c) 2001,2003,2004 David H. Hovemeyer <daveho@cs.umd.edu>
23  * Copyright (c) 2003, Jeffrey K. Hollingsworth <hollings@cs.umd.edu>
24  *
25  * Permission is hereby granted, free of charge, to any person
26  * obtaining a copy of this software and associated documentation
27  * files (the "Software"), to deal in the Software without restriction,
28  * including without limitation the rights to use, copy, modify, merge,
29  * publish, distribute, sublicense, and/or sell copies of the Software,
30  * and to permit persons to whom the Software is furnished to do so,
31  * subject to the following conditions:
32  *
33  * The above copyright notice and this permission notice shall be
34  * included in all copies or substantial portions of the Software.
35  *
36  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
37  * ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
38  * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
39  * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
40  * SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
41  * FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
42  * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
43  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
44  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.
45  */
46
47
48 =====================================================================
49
50 src/palacios/vmm_hashtable.c
51 include/palacios/vmm_hashtable.h
52
53 hash table implementation based on work by Christopher Clark:
54
55 Copyright (c) 2002, 2004, Christopher Clark
56 All rights reserved.
57
58 Redistribution and use in source and binary forms, with or without
59 modification, are permitted provided that the following conditions
60 are met:
61
62         * Redistributions of source code must retain the above copyright
63 notice, this list of conditions and the following disclaimer.
64
65         * Redistributions in binary form must reproduce the above copyright
66 notice, this list of conditions and the following disclaimer in the
67 documentation and/or other materials provided with the distribution.
68
69         * Neither the name of the original author; nor the names of any contributors
70 may be used to endorse or promote products derived from this software
71 without specific prior written permission.
72
73
74 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
75 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
76 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
77 A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
78 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
79 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
80 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
81 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
82 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
83 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
84 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.