1
0
mirror of https://github.com/kepler155c/opus synced 2025-10-10 21:37:43 +00:00

better startup

This commit is contained in:
kepler155c@gmail.com
2017-09-25 22:49:44 -04:00
parent ea56ac325b
commit 80f3ba1fb0
5 changed files with 82 additions and 21 deletions

View File

@@ -1,14 +1,30 @@
print('\nStarting Opus..')
-- Loads the Opus environment regardless if the file system is local or not
local function run(file, ...)
local w, h = term.getSize()
local str = 'Opus OS'
term.setTextColor(colors.white)
term.setBackgroundColor(colors.cyan)
term.setCursorPos((w - #str) / 2, h / 2)
term.clear()
term.write(str)
term.setCursorPos(1, h / 2 + 2)
local GIT_REPO = 'kepler155c/opus/develop'
local BASE = 'https://raw.githubusercontent.com/' .. GIT_REPO
local function makeEnv()
local env = setmetatable({
LUA_PATH = '/sys/apis:/usr/apis'
}, { __index = _G })
for k,v in pairs(getfenv(1)) do
env[k] = v
end
return env
end
local s, m = loadfile(file, env)
-- os.run doesn't provide return values :(
local function run(file, ...)
local s, m = loadfile(file, makeEnv())
if s then
local args = { ... }
s, m = pcall(function()
@@ -23,9 +39,33 @@ local function run(file, ...)
return m
end
_G.requireInjector = run('sys/apis/injector.lua')
local function runUrl(file, ...)
local url = BASE .. '/' .. file
local h = http.get(url)
if h then
local fn, m = load(h.readAll(), url, nil, makeEnv())
h.close()
if fn then
return fn(...)
end
end
error('Failed to download ' .. url)
end
shell.setPath('usr/apps:sys/apps:' .. shell.path())
if fs.exists('sys/apis/injector.lua') then
_G.requireInjector = run('sys/apis/injector.lua')
else
-- not local, run the file system directly from git
_G.requireInjector = runUrl('/sys/apis/injector.lua')
runUrl('/sys/extensions/vfs.lua')
-- install file system
fs.mount('', 'gitfs', GIT_REPO)
end
-- user environment
if not fs.exists('usr/apps') then
fs.makeDir('usr/apps')
@@ -39,14 +79,22 @@ if not fs.exists('usr/etc/fstab') then
file:close()
end
-- extensions
local dir = 'sys/extensions'
for _,file in ipairs(fs.list(dir)) do
run('sys/apps/shell', fs.combine(dir, file))
end
-- install user file systems
fs.loadTab('usr/etc/fstab')
local args = { ... }
if args[1] then
term.setBackgroundColor(colors.black)
term.clear()
term.setCursorPos(1, 1)
end
args[1] = args[1] or 'sys/apps/multishell'
run('sys/apps/shell', table.unpack(args))
fs.restore()