1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
##
## OSKit Module configuration file.
##
## Comments are ignored, non-commented words should be
## OSKit directories to include in the build.
##
## Libraries are built in the order defined in this
## file.
##
## Specify this file with the --with-modulesfile=<x>
## option to configure. By default the file 'modules'
## in the OSKit source directory is used.
##
### Always include this module (the header files)
oskit
### The flask module must be compiled before
### most of the other modules.
### It is currently a required module.
flask
### Builds the documentation (Utah only)
#doc
### --- Required components
### The C Runtime (the magic that calls 'main') (required)
crt
### Various bits of kernel magic (required)
kern
### List Memory Manager (required)
lmm
### The Client OS library (required)
clientos
### --- Boot Adaptors
### Build the multiboot compliant boot adaptor
### Requires that ld support '-format binary' (checked)
boot/multiboot
### Build the Linux boot adaptor
### Requires ld support '-oformat binary' (checked)
#boot/linux
### Build the MSDOS boot adaptor (??)
## Requires ld support '-oformat msdos' (checked)
#boot/dos
### Build the BSD boot adaptor
### Requires some sort of a.out linker (checked)
boot/bsd
### --- OSKit-on-UNIX support libraries.
unix
### --- C Libraries
### A minimal standard C library
libc
### A much more complete standard C library
posix/sys
### Thread-safe version of the previous
posix/sys_r
### --- Miscellaneous utility libraries
### Address Map Manager
amm
### Library for contacting a bootp server
bootp
### Com IIDs library (required for most kernels)
com
### For groking disk partitions
diskpart
### Include the Dynamic Packet Filter library
#dpf
### Exec library for loading linked executables
exec
### Read-only access to a number of filesystems
fsread
### Filesystem name parsing library
fsnamespace/fsn
### Same as above, but multithread safe
fsnamespace/fsn_r
### Fake UDP library (Only supports UDP send)
#fudp
### Include the Hierarchical Packet Fair Queueing module
#hpfq
### The Memdebug library
memdebug
### The memory file system
memfs
### Include Run-time linker support
#rtld
## The rltd example
#examples/dyntest ### requires rtld
### SMP support
smp
### POSIX threads
threads
### Simple Virtual Memory
svm
### --- Startup Library
### Simpler functions for initializing OSKit subsystems
### NOTE: this drags in almost every other library.
startup
### --- Devices, Networks and Filesystems
### The device layer glue. Depends on lmm and kern
### Required for any kernel that uses OSKit devices.
dev
### Default impl of code the filesystems depend on
fs
### Devices and code stolen from FreeBSD
freebsd/dev
#freebsd/net_flask
freebsd/net
freebsd/libm
freebsd/libc
freebsd/libc_r
### Stuff stolen from Linux
linux/dev
linux/fs
### Stuff stolen from NetBSD
netbsd/fs
### Video-related modules
video/svgalib
x11/client
x11/video
### --- Scripts and build/debug utilities
### Includes the CPU-oskit-gcc wrapper.
unsupported
### --- Additional stuff that must be at or near the end of the build
### Sets of example kernels
examples/x86
examples/x86/extended
examples/x86/threads
### Building the example kernels as host-build binaries with unix-mode
### emulation. NOTE: These will only be built if you are compiling
### the OSKit with unixmode support (and on Linux or FreeBSD).
examples/unix
examples/unix/extended
examples/unix/threads
### The NetBoot Meta-kernel
boot/net
### The OSKit test infrastructure
testsuite
### The security server
security
|