Lua-based operating system, based on LuPI2, with a focus on PowerPC based Macintosh machines
Go to file
Izaya 8570a59cab Merge pull request 'fix component proxies not having all the requisite fields' (#1) from Ocawesome101/LuPPC:master into master 2021-05-28 09:09:17 +10:00
include Some work here and there 2016-08-17 22:40:11 +02:00
resources Smart gpu selection system 2016-02-28 14:32:04 +01:00
scripts add PowerPC target to scripts/dependencies.sh 2021-05-23 12:13:29 +10:00
src fix this because it was broken 2021-05-28 09:03:39 +10:00
.gitattributes Improved performance 2016-01-18 19:42:32 +01:00
.gitignore Improve gitignore a bit 2016-02-29 16:47:41 +01:00
LICENSE Update LICENSE 2016-01-18 21:47:56 +01:00
LICENSE-unifont Add unifont license 2016-02-28 13:14:22 +01:00
Makefile update to current kernel to build with current gcc 2021-05-23 12:10:21 +10:00
README.md working link to an OS 2021-05-23 12:23:18 +10:00

README.md

LuPPC

Lua-based operating system, based on LuPI2, with a focus on PowerPC based Macintosh machines and an aim to support more OpenComputers-style components and mirror OpenComputers behavior more closely where practical.

Build

  1. Clone this repository
  2. Get musl cross compiler (like arm-linux-musleabihf or powerpc-linux-musl), simplest way is to use musl-cross-make
  3. Get xxd utility (usually packaged with vim)
  4. Build dependencies using scripts/dependencies.sh script for your platform(s)
  5. Execute make build
  6. You will need to put some OS to root directory where you run the binary. For now you can get PsychOS2 from the PsychOS build server

In case of problems poke me/someone at #lupi on Freenode

Idea

Design of system APIs is heavily influenced by OpenComputers minecraft mod. Some Lua code parts are actually copied from there (all of the code is under the MIT License). Main advantage of the API is that it's event/component based, which provides great level of abstraction. Custom components can be created and used with very little effort, being event-based simplifies code further, providing one unified queue for events instead of multiple ways of handling them.

local component = require("component")

--Create virtual LED component using built-in GPIO component
local led = {}
led.toggle = function() component.gpio.togglePin(27) end
component.register(nil, "LED", led)

--Blink the LED
while true do
  os.sleep(1)
  component.led.toggle()
end

Implementation

On the low-level side LuPI will run on very stripped-down version of Linux kernel as init, it will be the only binary executable in system. Kernel will only provide hardware drivers and abstract some of the things. Entire userspace is meant to be done using Lua. Security isn't the primary goal but still needs to be considered.

Get involved

There are many ways you can help.

  • Report issues
  • Contribete via pull requests
  • Talk on IRC (#lupi on Freenode)