Avoid some blocking issues
authorSteven Barth <steven@midlink.org>
Fri, 12 Sep 2008 13:32:35 +0000 (13:32 +0000)
committerSteven Barth <steven@midlink.org>
Fri, 12 Sep 2008 13:32:35 +0000 (13:32 +0000)
libs/sgi-cgi/luasrc/sgi/cgi.lua
libs/sys/luasrc/sys.lua

index d36d43f..f78adea 100644 (file)
@@ -61,6 +61,7 @@ function run()
                        elseif id == 4 then
                                io.write(data1)
                        elseif id == 5 then
+                               io.close()
                                active = false
                        end
                end
index 02cea5e..cf7fbc0 100644 (file)
@@ -67,7 +67,7 @@ function flash(image, kpattern)
        if kpattern then
                cmd = cmd .. "-k '" .. kpattern:gsub("'", "") .. "' "
        end
-       cmd = cmd .. "'" .. image:gsub("'", "") .. "' 2>/dev/null"
+       cmd = cmd .. "'" .. image:gsub("'", "") .. "' 2>/dev/null &"
 
        local fp = io.popen(cmd)
        fp:setvbuf("no")
@@ -78,18 +78,8 @@ function flash(image, kpattern)
                fp:close()
                return false, line
        else
-               line = fp:read()
-               if line == "Performing system upgrade..." then
-                       return true
-               end
-               
-               line = fp:read()
-               if line == "Performing system upgrade..." then
-                       return true
-               end
-               
                fp:close()
-               return false, line
+               return true
        end
 end