mirror of
https://github.com/MikaylaFischler/cc-mek-scada.git
synced 2024-08-30 18:22:34 +00:00
32 lines
1002 B
Lua
32 lines
1002 B
Lua
local BOOTLOADER_VERSION = "1.1"
|
|
|
|
print("SCADA BOOTLOADER V" .. BOOTLOADER_VERSION)
|
|
print("BOOT> SCANNING FOR APPLICATIONS...")
|
|
|
|
local exit_code
|
|
|
|
if fs.exists("reactor-plc/startup.lua") then
|
|
print("BOOT> EXEC REACTOR PLC STARTUP")
|
|
exit_code = shell.execute("reactor-plc/startup")
|
|
elseif fs.exists("rtu/startup.lua") then
|
|
print("BOOT> EXEC RTU STARTUP")
|
|
exit_code = shell.execute("rtu/startup")
|
|
elseif fs.exists("supervisor/startup.lua") then
|
|
print("BOOT> EXEC SUPERVISOR STARTUP")
|
|
exit_code = shell.execute("supervisor/startup")
|
|
elseif fs.exists("coordinator/startup.lua") then
|
|
print("BOOT> EXEC COORDINATOR STARTUP")
|
|
exit_code = shell.execute("coordinator/startup")
|
|
elseif fs.exists("pocket/startup.lua") then
|
|
print("BOOT> EXEC POCKET STARTUP")
|
|
exit_code = shell.execute("pocket/startup")
|
|
else
|
|
print("BOOT> NO SCADA STARTUP FOUND")
|
|
print("BOOT> EXIT")
|
|
return false
|
|
end
|
|
|
|
if not exit_code then print("BOOT> APPLICATION CRASHED") end
|
|
|
|
return exit_code
|