diff options
author | Steven Barth <steven@midlink.org> | 2008-09-12 12:13:26 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-09-12 12:13:26 +0000 |
commit | 67049e97b4ff02874d62b41f72dbbfdfd97e2e88 (patch) | |
tree | 81b8ffb39f48845dec4928f807fe7adc1a5b928e | |
parent | fade8edd2dfe39ae579256d04220aba9da2ff074 (diff) |
Fixed status detection for firmware flash
-rw-r--r-- | libs/sys/luasrc/sys.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/sys/luasrc/sys.lua b/libs/sys/luasrc/sys.lua index 9b68a25e6..3fa34fd5b 100644 --- a/libs/sys/luasrc/sys.lua +++ b/libs/sys/luasrc/sys.lua @@ -77,12 +77,12 @@ function flash(image, kpattern) return false, line else line = fp:read() - if line == "Performing system upgrade" then + if line == "Performing system upgrade..." then return true end line = fp:read() - if line == "Performing system upgrade" then + if line == "Performing system upgrade..." then return true end |