Files
Opus/sys/boot/tlco.boot
kepler155c@gmail.com 3460dd68b2 cleanup + global clipboard
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')