mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-15 03:51:51 +00:00
11 lines
293 B
Lua
11 lines
293 B
Lua
module("luci.controller.cpufreq", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/cpufreq") then
|
|
return
|
|
end
|
|
|
|
local page = entry({"admin", "system", "cpufreq"}, cbi("cpufreq"), _("CPU Freq"), 90)
|
|
page.dependent = false
|
|
page.acl_depends = { "luci-app-cpufreq" }
|
|
end
|