remove boot safe guard for boot on slow servers, it broke stuff. maybe revist another time

This commit is contained in:
payonel 2017-10-31 00:17:00 -07:00
parent 07791b9851
commit 868c101772

View File

@ -42,8 +42,6 @@ if gpu and screen then
gpu.fill(1, 1, w, h, " ") gpu.fill(1, 1, w, h, " ")
end end
local y = 1 local y = 1
local uptime = computer.uptime
local last_sleep = uptime()
local function status(msg) local function status(msg)
if gpu and screen then if gpu and screen then
gpu.set(1, y, msg) gpu.set(1, y, msg)
@ -54,10 +52,6 @@ local function status(msg)
y = y + 1 y = y + 1
end end
end end
if uptime() - last_sleep > 1 then
computer.pullSignal(0)
last_sleep = uptime()
end
end end
status("Booting " .. _OSVERSION .. "...") status("Booting " .. _OSVERSION .. "...")