diff --git a/modules/util/fs-automount-ext.lua b/modules/util/fs-automount-ext.lua new file mode 100644 index 0000000..2879ae6 --- /dev/null +++ b/modules/util/fs-automount-ext.lua @@ -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