From aac40a4dfa36c7f8204d39a26bf8d32cdca0f5ab Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sat, 9 May 2009 18:18:22 +0000 Subject: [PATCH] modules/admin-full: determine storage space from /proc/partitions if there's no /proc/mtd --- modules/admin-full/luasrc/controller/admin/system.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/admin-full/luasrc/controller/admin/system.lua b/modules/admin-full/luasrc/controller/admin/system.lua index 33e46b74b..ff000ab75 100644 --- a/modules/admin-full/luasrc/controller/admin/system.lua +++ b/modules/admin-full/luasrc/controller/admin/system.lua @@ -214,6 +214,14 @@ function action_upgrade() break end end + elseif luci.fs.access("/proc/partitions") then + for l in io.lines("/proc/partitions") do + local x, y, b, n = l:match('^%s*(%d+)%s+(%d+)%s+([^%s]+)%s+([^%s]+)') + if b and n and not n:match('[0-9]') then + size = tonumber(b) * 1024 + break + end + end end return size end -- 2.25.1