| 1 |
/** |
|---|
| 2 |
* Copyright (c) 2006, Jonas Zaddach & Brad DeMorrow |
|---|
| 3 |
* All rights reserved. |
|---|
| 4 |
* |
|---|
| 5 |
* Redistribution and use in source and binary forms, |
|---|
| 6 |
* with or without modification, are permitted provided |
|---|
| 7 |
* that the following conditions are met: |
|---|
| 8 |
* |
|---|
| 9 |
* * Redistributions of source code must retain the above copyright notice, |
|---|
| 10 |
* this list of conditions and the following disclaimer. |
|---|
| 11 |
* * Redistributions in binary form must reproduce the above copyright notice, |
|---|
| 12 |
* this list of conditions and the following disclaimer in the documentation |
|---|
| 13 |
* and/or other materials provided with the distribution. |
|---|
| 14 |
* * Neither the name of the <ORGANIZATION> nor the names of its contributors |
|---|
| 15 |
* may be used to endorse or promote products derived from this software |
|---|
| 16 |
* without specific prior written permission. |
|---|
| 17 |
* |
|---|
| 18 |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|---|
| 19 |
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
|---|
| 20 |
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
|---|
| 21 |
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
|---|
| 22 |
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
|---|
| 23 |
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
|---|
| 24 |
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
|---|
| 25 |
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
|---|
| 26 |
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
|---|
| 27 |
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
|---|
| 28 |
* POSSIBILITY OF SUCH DAMAGE. |
|---|
| 29 |
*/ |
|---|
| 30 |
|
|---|
| 31 |
This is the Llama/osian operating system. It is an effort of creating a |
|---|
| 32 |
Microkernel in D. |
|---|
| 33 |
|
|---|
| 34 |
If you are interested in helping us, please contact us: |
|---|
| 35 |
Jonas Zaddach - jonas.zaddach@freenet.de |
|---|
| 36 |
Brad DeMorrow - syllogism711@gmail.com |
|---|
| 37 |
|
|---|
| 38 |
Also read the README.STYLE for coding style and README.LAYOUT to see what |
|---|
| 39 |
you can find where. README.BUILD informs about how to build the system |
|---|
| 40 |
and what bugs may occur during build. |
|---|
| 41 |
|
|---|
| 42 |
This distribution includes a binary version of Grub, the grand unified |
|---|
| 43 |
bootloader. Grub is released under the GPL |
|---|
| 44 |
(see http://www.gnu.org/copyleft/gpl.html ). You can get the sources and |
|---|
| 45 |
more information on grub from http://www.gnu.org/software/grub/ . |
|---|