updated kernel and main for consumer

This commit is contained in:
2025-12-12 13:30:38 -05:00
parent ed2c0049e4
commit 7e3446c71a
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ local data = kernel.addDriver("disk-driver")
local function run()
monitor.initialize()
disk.initialize()
data.initialize()
monitor.writeLine("Starting system...")
monitor.writeLine("System started successfully!")

View File

@@ -4,7 +4,7 @@ local function addDriver(fileName)
shell.execute("rm", fullFile)
local baseRoute = "https://git.astrocore.space/root/nova-corp/raw/branch/main/"
shell.execute("wget", baseRoute .. fullFile)
sleep(1)
sleep(5)
return require(fileName)
end
@@ -14,7 +14,7 @@ local function addFolderDriver(folder, fileName)
shell.execute("rm", fullFile)
local baseRoute = "https://git.astrocore.space/root/nova-corp/raw/branch/main/"
shell.execute("wget", baseRoute .. folder .. "/" .. fullFile)
sleep(1)
sleep(5)
return require(fileName)
end