5 Acess2 is [TPG]'s hobby operating system.
7 It's mostly a learning experiment, but I've tried to keep the source simple
8 and have a _nearly_ POSIX compliant userland.
12 The /KernelLand folder contains the kernel code
16 - Architecture dependent code (memory management and process switching)
20 - Virtual Filesystem layer
22 - Core system drivers (PCI, VTerm, FIFO)
24 - All manner of drivers and helper code, capable of being build-time and runtime linked
27 The Usermode folder contains the user-land portion of the Acess OS
29 - Usermode applications (Shell, IRC Client, GUI, ...)
31 - Dynamic linker, and nearly all shared libraries used
33 - Header files for libraries and the C standard
36 This folder contains a rather hacky emulation framework for the Acess Userland
37 (and to an extent, the kernel). It combines parts of the kernel code, IPC and
38 thread emulation to allow Acess applications to be run on Linux/Windows without
41 - The kernel emulation framework
43 - Replacement ld-acess.so to load programs and translate syscalls into IPC
46 Build configuration settings (compiler options, module selection)
49 Required Tools: GNU Toolchain (GCC,Gas,binutils), NASM, mtools, PHP
50 Compiling Acess is relatively simple (at the moment)
51 First edit /Makefile.cfg and set the build programs (making sure they match
52 the architecture you are building for).
53 Edit the FILESYSTEMS variable to alter what filesystems are comipled in
54 (see /Kernel/vfs/fs for what filesystems are included).
55 MODULES defines what modules should be statically linked with the kernel
56 (see /Modules for a list)
58 Set the destination install directory (DISTROOT).
60 Now you can compile the kernel and usermode applications by calling make
65 - Build and install the kernel (x86)
67 - Build and install the x86:smp kernel
68 `ARCH=x86_64 make all`
69 - Build (but don't install) the entire x86_64 kernel and userland
70 `ARCH=armv7 PLATFORM=tegra2 make all install`
71 - Build and install the entire armv7 kernel and userland (with the kernel targeting a Tegra2)