diff options
author | Steven Barth <steven@midlink.org> | 2008-04-11 19:53:09 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-04-11 19:53:09 +0000 |
commit | 064aa38fc46715f98d5567174374ae5b46c3a252 (patch) | |
tree | f8754b718251dcde9f27e6a4620bce9eea7fc4b6 /core/src | |
parent | e5e723797584cc5561dee6d7f73d5f4a19c6e679 (diff) |
* Supress output of ffluci-flash
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/ffluci/sys.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/ffluci/sys.lua b/core/src/ffluci/sys.lua index 5b3f7a3c9..334768c0e 100644 --- a/core/src/ffluci/sys.lua +++ b/core/src/ffluci/sys.lua @@ -58,7 +58,7 @@ function flash(image, kpattern) if kpattern then cmd = cmd .. "-k '" .. kpattern:gsub("'", "") .. "' " end - cmd = cmd .. "'" .. image:gsub("'", "") .. "'" + cmd = cmd .. "'" .. image:gsub("'", "") .. "' >/dev/null 2>&1" return os.execute(cmd) end |