fs-automount-ext: mounts extra filesystems as fs00, fs01 etc.
This commit is contained in:
parent
d8c8dc73d8
commit
b16f56439a
9
modules/util/fs-automount-ext.lua
Normal file
9
modules/util/fs-automount-ext.lua
Normal 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
|
Loading…
Reference in New Issue
Block a user