Operating system for OpenComputers
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728
  1. # OC-PsychOS2
  2. A lightweight, multi-user operating system for OpenComputers
  3. ## Building
  4. ### The kernel
  5. The kernel can be built using luapreproc:
  6. ./luapreproc.lua module/init.lua kernel.lua
  7. ### The boot filesystem
  8. A boot filesystem contains several things:
  9. - The kernel, as init.lua
  10. - The exec/ directory, as this contains all executables
  11. - The lib/ directory, containing libraries
  12. - The service/ directory, containing system services
  13. This has been automated in the form of build.sh, pending a real makefile.
  14. ## Documentation
  15. To generate function documentation, run:
  16. ./finddesc.lua module/* lib/* > apidoc.md