1
0
mirror of https://github.com/Adorable-Catgirl/Zorya-NEO.git synced 2024-09-21 18:58:51 +10:00
Zorya-NEO/util/OpenOS/config.d/96_vbios.lua

24 lines
632 B
Lua
Raw Normal View History

2020-03-20 07:50:37 +11:00
local cfgadd = ...
local addr = require("component").eeprom.getData()
local fs = require("filesystem")
if not fs.exists("/.zy2/vbios/") then
return
end
cfgadd([[
do
local function add_bios(drive, path)
local h = component.invoke(drive, "open", path.."/label.txt")
local name = component.invoke(drive, "read", h, math.huge)
component.invoke(drive, "close", h)
menu.add(name .. " (vBIOS)", function()
local vb = loadmod("vdev_vbios")(drive, path)
vb()
end)
end
]])
for ent in fs.list("/.zy2/vbios") do
cfgadd(string.format([[ add_bios("%s", ".zy2/vbios/%s")]].."\n", addr, ent:sub(1, #ent-1)))
end
cfgadd[[
end
]]