OC-MultICE/modules/util/fs-automount-ext.lua

10 lines
193 B
Lua

do
local C=0
for c in component.list("filesystem") do
if c ~= fT.boot.address and c ~= fT.tmp.address then
fT["fs"..string.format("%02d",C)] = component.proxy(c)
C=C+1
end
end
end