Update OS.lua

This commit is contained in:
igorkll 2022-06-30 22:06:09 +03:00 committed by GitHub
parent 8f5e89a645
commit 2d39d5e1b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
OS.lua
View File

@ -2,7 +2,7 @@
---------------------------------------- System initialization ---------------------------------------- ---------------------------------------- System initialization ----------------------------------------
-- Obtaining boot filesystem component proxy -- Obtaining boot filesystem component proxy
local bootFilesystemProxy = component.proxy(component.proxy(component.list("eeprom")()).getData()) local bootFilesystemProxy = component.proxy(component.invoke(component.list("eeprom")(), "getData"))
-- Executes file from boot HDD during OS initialization (will be overriden in filesystem library later) -- Executes file from boot HDD during OS initialization (will be overriden in filesystem library later)
function dofile(path) function dofile(path)