Merge pull request #2207 from blocktrron/web-admin-flashsize

web-admin: fix firmware partition name
This commit is contained in:
Martin Weinelt 2021-05-01 12:27:26 +02:00 committed by GitHub
commit 069c8b2035
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ local function action_upgrade(http, renderer)
if unistd.access("/proc/mtd") then
for l in io.lines("/proc/mtd") do
local s, n = l:match('^[^%s]+%s+([^%s]+)%s+[^%s]+%s+"([^%s]+)"')
if n == "linux" then
if n == "firmware" then
size = tonumber(s, 16)
break
end