Форк ToaruOS
Go to file
K. Lange c5466a4d2a Adjust panel weekday format 2018-04-18 18:22:59 +09:00
apps Adjust panel weekday format 2018-04-18 18:22:59 +09:00
base Support multiple fonts 2018-04-18 18:05:19 +09:00
boot remove incorrect debug message from bootloader 2018-04-12 15:00:10 +09:00
kernel Remove erroneously added kernel/symbols.S 2018-03-19 15:33:07 +09:00
lib better kerning on '.' 2018-04-18 18:17:28 +09:00
libc Integrate auto-dep into build system through make file generation 2018-04-17 21:49:56 +09:00
linker Reorganize headers 2018-03-19 11:38:11 +09:00
modules Detect obscure GeForce as a bochs (this is v86) 2018-03-19 16:04:17 +09:00
util wip sdf font renderer 2018-04-18 13:27:37 +09:00
.gitignore Integrate auto-dep into build system through make file generation 2018-04-17 21:49:56 +09:00
Makefile Decoration themes should be no different from other libraries 2018-04-17 22:39:39 +09:00
README.md Update screenshot 2018-04-17 20:21:01 +09:00

README.md

ToaruOS-NIH

screenshot

This is an experimental spin-off / distribution of ToaruOS which includes no third-party components.

The bootloader is a simple El Torito "no-emulation" CD bootloader. It is not guaranteed to work on real hardware, but has been tested in QEMU, Bochs, and VirtualBox.

The userspace includes a work-in-progress C standard library, the ToaruOS native libraries, the compositor (using only in-house graphics routines), and various other first-party utilities and applications.

Building

You'll need a working compiler to build the gcc cross-compiler targeting i686-pc-toaru. You will also need yasm for some assorted assembly files I was too lazy to translate to gas. xorriso is needed to build the final CD, genext2fs (with Debian patches) is needed for the ramdisk. Python is needed for some parts of the build as well.

Run make and you will be prompted to build a toolchain. Reply y and allow the toolchain to build.

Rationale

ToaruOS's kernel is entirely in-house. Its userspace, however, is built on several third-party libraries and tools, such as the Newlib C library, Freetype, Cairo, libpng, and most notably Python. While the decision to build ToaruOS on these technologies is not at all considered a mistake, the possibility remains to build a userspace entirely from scratch.

Goals

  • Write a basic C library.

    To support building the native ToaruOS libraries and port some basic software, a rudimentary C library is required.

  • Remove Cairo as a dependency for the compositor.

    Cairo is a major component of the modern ToaruOS compositor, but is the only significant third-party dependency. This makes the compositor, which is a key part of what makes ToaruOS "ToaruOS", an important inclusion in this project. Very basic work has been done to allow the compositor to build and run without Cairo, but it is a naïve approach and remains very slow. Implementing Cairo's clipping and SSE-accelerated blitting operations is a must.

  • Write a vector font library.

    Support for TrueType/OpenType TBD, but vector fonts are critical to the visual presentation of ToaruOS.

  • Support a compressed image format.

    ToaruOS used a lot of PNGs, but maybe writing our own format would be fun.

Roadmap

  1. Enough C to port the dynamic loader. (Done)

  2. Get the VGA terminal building. (Done)

  3. Get the shell running. (Done)

  4. De-Cairo-tize the compositor. (Done, but more work planned)

  5. Enough C to port Python. (In progress)

  6. Enough C to port GCC. (In progress)

Project Layout

  • apps - Userspace applications, all first-party.
  • base - Ramdisk root filesystem staging directory. Includes C headers in base/usr/include, as well as graphical resources for the compositor and window decorator.
  • boot - Bootloader.
  • decors - Decoration themes.
  • kernel - The ToaruOS kernel.
  • lib - Userspace libraries.
  • libc - C standard library implementation.
  • linker - Userspace dynamic linker/loader, implements shared library support.
  • modules - Kernel modules/drivers.
  • util - Utility scripts, staging directory for the toolchain (binutils/gcc).