diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-04-17 12:34:54 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-04-17 12:39:11 +0200 |
commit | ec09e995a843a57ae9e66b63dc64634e94d0b4f1 (patch) | |
tree | 545ede537693d73dd0e51ae337289d49f12b5ef3 /modules/luci-mod-admin-full/luasrc/model/cbi/admin_system/fstab | |
parent | 622cfc673ab2e97001ed394f8cd6d0425d8f3378 (diff) |
luci-mod-admin-full: handle missing size for block devices
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'modules/luci-mod-admin-full/luasrc/model/cbi/admin_system/fstab')
-rw-r--r-- | modules/luci-mod-admin-full/luasrc/model/cbi/admin_system/fstab/mount.lua | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_system/fstab/mount.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_system/fstab/mount.lua index 54beb63b42..2652e00f25 100644 --- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_system/fstab/mount.lua +++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_system/fstab/mount.lua @@ -57,8 +57,10 @@ o = mount:taboption("general", Value, "uuid", translate("UUID"), translate("If specified, mount the device by its UUID instead of a fixed device node")) for i, d in ipairs(devices) do - if d.uuid then + if d.uuid and d.size then o:value(d.uuid, "%s (%s, %d MB)" %{ d.uuid, d.dev, d.size }) + elseif d.uuid then + o:value(d.uuid, "%s (%s)" %{ d.uuid, d.dev }) end end @@ -71,8 +73,10 @@ o = mount:taboption("general", Value, "label", translate("Label"), o:depends("uuid", "") for i, d in ipairs(devices) do - if d.label then + if d.label and d.size then o:value(d.label, "%s (%s, %d MB)" %{ d.label, d.dev, d.size }) + elseif d.label then + o:value(d.label, "%s (%s)" %{ d.label, d.dev }) end end @@ -85,7 +89,11 @@ o = mount:taboption("general", Value, "device", translate("Device"), o:depends({ uuid = "", label = "" }) for i, d in ipairs(devices) do - o:value(d.dev, "%s (%d MB)" %{ d.dev, d.size }) + if d.size then + o:value(d.dev, "%s (%d MB)" %{ d.dev, d.size }) + else + o:value(d.dev) + end end |