Operating system for OpenComputers
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 5 Jahren
1234567891011121314151617181920212223242526272829303132333435
  1. # OC-PsychOS2
  2. A lightweight, multi-user operating system for OpenComputers
  3. ## Building
  4. ### The kernel
  5. The kernel is composed of a number of modules, found in the *module/* directory. Which modules are included can be customised by changing the include statements in *module/init.lua*; copying it and customizing that is recommended, so you can *git pull* later without having to stash or reset your changes.
  6. #### Unix-like systems
  7. The kernel can be built using the preproc library and provided scripts:
  8. lua build.lua module/init.lua kernel.lua
  9. #### PsychOS
  10. The kernel can be built from inside PsychOS using the preproc library, assuming you have the kernel source available:
  11. preproc("module/init.lua","kernel.lua")
  12. ### The boot filesystem
  13. A boot filesystem contains several things:
  14. - The kernel, as init.lua
  15. - The lib/ directory, containing libraries
  16. - The service/ directory, containing system services
  17. This has been automated in the form of build.sh, pending a real makefile.
  18. ## Documentation
  19. Documentation is generated as the system is built with build.sh; a set of markdown files will be placed into *doc/*, as well as an all-in-one *apidoc.md*. If pandoc is installed, an *apidoc.pdf* will also be generated.