modules/admin-full: display kernel version
authorJo-Philipp Wich <jow@openwrt.org>
Mon, 10 Jan 2011 23:08:10 +0000 (23:08 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Mon, 10 Jan 2011 23:08:10 +0000 (23:08 +0000)
modules/admin-full/luasrc/model/cbi/admin_system/system.lua

index f3c5a01..7851f05 100644 (file)
@@ -38,6 +38,9 @@ local uptime = luci.sys.uptime()
 s:option(DummyValue, "_system", translate("System")).value = system
 s:option(DummyValue, "_cpu", translate("Processor")).value = model
 
+s:option(DummyValue, "_kernel", translate("Kernel")).value =
+ luci.util.exec("uname -r") or "?"
+
 local load1, load5, load15 = luci.sys.loadavg()
 s:option(DummyValue, "_la", translate("Load")).value =
  string.format("%.2f, %.2f, %.2f", load1, load5, load15)