build: emulate nixio.sysinfo() on Darwin
authorJo-Philipp Wich <jow@openwrt.org>
Tue, 29 Dec 2009 18:09:17 +0000 (18:09 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Tue, 29 Dec 2009 18:09:17 +0000 (18:09 +0000)
build/setup.lua

index f374da9..d8fd5dd 100644 (file)
@@ -26,3 +26,22 @@ end
 -- allow any password in local sdk
 local sys = require "luci.sys"
 sys.user.checkpasswd = function() return true end
+
+-- dummy sysinfo on Darwin
+require "nixio"
+
+if not nixio.sysinfo then
+       function nixio.sysinfo()
+               return {
+                       bufferram = 0,
+                       freehigh = 0,
+                       freeram = 0,
+                       freeswap = 0,
+                       loads = { 0.0, 0.0, 0.0 },
+                       mem_unit = 1024,
+                       procs = 0,
+                       sharedram = 0,
+                       totalhigh = 0
+               }
+       end
+end