summaryrefslogtreecommitdiffhomepage
path: root/modules/admin-full/luasrc/model/cbi/admin_wifi
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-08-06 20:11:15 +0000
committerSteven Barth <steven@midlink.org>2008-08-06 20:11:15 +0000
commit76982655fa433edd885bbb80bbe74e82fca527e2 (patch)
tree98b1f8cfff0bedaf13795779710123f0194dffc1 /modules/admin-full/luasrc/model/cbi/admin_wifi
parentb1b0c085de7483c5a778f0056a97da14e87b7f16 (diff)
Moved luci.sys.exec, luci.sys.execl and luci.sys.bigendian to luci.util
Diffstat (limited to 'modules/admin-full/luasrc/model/cbi/admin_wifi')
-rw-r--r--modules/admin-full/luasrc/model/cbi/admin_wifi/devices.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/model/cbi/admin_wifi/devices.lua b/modules/admin-full/luasrc/model/cbi/admin_wifi/devices.lua
index d463157d19..de22619192 100644
--- a/modules/admin-full/luasrc/model/cbi/admin_wifi/devices.lua
+++ b/modules/admin-full/luasrc/model/cbi/admin_wifi/devices.lua
@@ -33,7 +33,7 @@ t:value("prism2")
--[[
require("luci.sys")
local c = ". /etc/functions.sh;for i in /lib/wifi/*;do . $i;done;echo $DRIVERS"
-for driver in luci.sys.execl(c)[1]:gmatch("[^ ]+") do
+for driver in luci.util.execl(c)[1]:gmatch("[^ ]+") do
t:value(driver)
end
]]--