mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
10 lines
234 B
Lua
10 lines
234 B
Lua
module("luci.controller.cpufreq", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/cpufreq") then
|
|
return
|
|
end
|
|
|
|
entry({"admin", "services", "cpufreq"}, cbi("cpufreq"), _("CPU Freq"), 900).dependent = false
|
|
end
|