oc firmware 1.0

This commit is contained in:
2026-08-25 21:16:16 -04:00
parent faf4f27987
commit 125baaebf5
44 changed files with 1307 additions and 513 deletions
+8
View File
@@ -717,6 +717,14 @@ local spm = function(...)
w(src.." -> "..dest)
syscall.symlink(dest, src)
end
elseif f=="setup.lua" then
local func, err = load(c, "setupscript", "t", _G)
if not func then
w("Failed to load setup script for package "..i)
else
local ok, err = xpcall(func, debug.traceback)
if not ok then w("Setup script for package "..i.." exited with error: "..err) end
end
end
end
end