forked from izaya/LuPPC
10 lines
130 B
Lua
10 lines
130 B
Lua
|
local boot = {}
|
||
|
|
||
|
function boot.boot()
|
||
|
print("LuPI L2 INIT")
|
||
|
print("FIXME: boot stub")
|
||
|
error("Unable to boot")
|
||
|
end
|
||
|
|
||
|
return boot
|