1
0
mirror of https://github.com/kepler155c/opus synced 2024-09-28 15:08:41 +00:00
opus/sys/boot/tlco.boot
2017-10-11 22:39:04 -04:00

16 lines
279 B
Clojure

local pullEvent = os.pullEventRaw
local shutdown = os.shutdown
os.pullEventRaw = function()
error('die')
end
os.shutdown = function()
os.pullEventRaw = pullEvent
os.shutdown = shutdown
os.run(getfenv(1), 'sys/boot/multishell.boot')
end
os.queueEvent('modem_message')