local t = rednet.isOpen
rednet.isOpen = nil -- will cause the crash
local t2 = term.redirect
term.redirect = function() -- this is the next method called in the bios if rednet exits
term.redirect = t2
rednet.isOpen = t
print('starting shell')
os.run(getfenv(1), '/rom/programs/shell')
end
os.queueEvent('modem_message')
You will need to run some shell or program, otherwise, the bios will exit and the computer will shutdown.
Edited by joebodo, 14 May 2014 - 07:45 AM.












