Merge pull request #1786 from payonel/devfs-patch

devfs should be rw
This commit is contained in:
Florian "Sangar" Nücke 2016-05-11 22:09:20 +02:00
commit d0f7fd7e3f
2 changed files with 1 additions and 5 deletions

View File

@ -1,6 +1,6 @@
require("filesystem").mount(
setmetatable({
isReadOnly = function()return true end
isReadOnly = function()return false end
},
{
__index=function(tbl,key)return require("devfs")[key]end

View File

@ -12,10 +12,6 @@ function proxy.setLabel(value)
error("drive does not support labeling")
end
function proxy.isReadOnly()
return false
end
function proxy.spaceTotal()
return 0
end