OC-MultICE/modules/util/sinit.lua

18 lines
308 B
Lua
Raw Normal View History

2017-05-15 17:16:20 +10:00
do
if _OSVERSION and _BD then
print("Starting ".._OSVERSION.." built at ".._BD)
end
local f=fopen("boot:/init.cfg","rb")
if f then
local c=""
local nc=fread(f,2048)
while nc ~= nil and nc ~= "" do
c=c..nc
nc=fread(f,2048)
end
for l in c:gmatch("[^\n]+") do
print("[init] "..l)
end
end
end