fs-automount-ext: mounts extra filesystems as fs00, fs01 etc.

This commit is contained in:
Izaya 2017-07-13 20:22:04 +10:00
parent d8c8dc73d8
commit b16f56439a
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
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