| 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 |
directory layout: |
|---|
| 32 |
|
|---|
| 33 |
osian - contains source code |
|---|
| 34 |
dist - contains files which are included in binary distribution (iso), but |
|---|
| 35 |
do not need to be compiled (bootloader, images, ...) |
|---|
| 36 |
emu - contains emulator configuration files (vmware, qemu, ...) |
|---|
| 37 |
tmp - directory created by makefiles. Delete (clean) before giving |
|---|
| 38 |
to someone else |
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
osian/kernel/ - contains microkernel files |
|---|
| 42 |
/boot/ - contains files for initial setup of the kernel |
|---|
| 43 |
(assembler files mostly) |
|---|
| 44 |
/memory - contains memory manager files |
|---|
| 45 |
/processes - contains files for process manager |
|---|
| 46 |
/interrupt - contains files for interrupt handling |
|---|
| 47 |
/hardware/ - contains hardware specific files |
|---|
| 48 |
(drivers for apic, real-time clock, ...) |
|---|
| 49 |
/drivers/ - contains device drivers running in user mode |
|---|