summaryrefslogtreecommitdiffstats
path: root/usr/local/www/widgets/widgets/system_information.widget.php
diff options
context:
space:
mode:
authorCristian Feldman <vizvayu@gmail.com>2012-05-17 22:33:31 -0300
committerCristian Feldman <vizvayu@gmail.com>2012-05-18 00:53:21 -0300
commit4dedd18a80ac4f1a9187ddb042deb439710c5e6f (patch)
tree43750b3b08fe5dc93e40796e6c07a9b27757e730 /usr/local/www/widgets/widgets/system_information.widget.php
parent735021f5dbca32e46b04515e0e852dae4d33546f (diff)
downloadpfsense-4dedd18a80ac4f1a9187ddb042deb439710c5e6f.zip
pfsense-4dedd18a80ac4f1a9187ddb042deb439710c5e6f.tar.gz
System info widget on dashboard now updates CPU Frequency automatically
Diffstat (limited to 'usr/local/www/widgets/widgets/system_information.widget.php')
-rw-r--r--usr/local/www/widgets/widgets/system_information.widget.php12
1 files changed, 1 insertions, 11 deletions
diff --git a/usr/local/www/widgets/widgets/system_information.widget.php b/usr/local/www/widgets/widgets/system_information.widget.php
index 5658c54..776679a 100644
--- a/usr/local/www/widgets/widgets/system_information.widget.php
+++ b/usr/local/www/widgets/widgets/system_information.widget.php
@@ -135,18 +135,8 @@ $curcfg = $config['system']['firmware'];
exec("/sbin/sysctl -n hw.model", $cpumodel);
$cpumodel = implode(" ", $cpumodel);
echo (htmlspecialchars($cpumodel));
-
- $cpufreqs = "";
- exec("/sbin/sysctl -n dev.cpu.0.freq_levels", $cpufreqs);
- $cpufreqs = explode(" ", trim($cpufreqs[0]));
- $maxfreq = explode("/", $cpufreqs[0]);
- $maxfreq = $maxfreq[0];
- $curfreq = "";
- exec("/sbin/sysctl -n dev.cpu.0.freq", $curfreq);
- $curfreq = trim($curfreq[0]);
- if ($curfreq != $maxfreq)
- echo "<br/>Current: {$curfreq} MHz, Max: {$maxfreq} MHz";
?>
+ <div id="cpufreq"><?= get_cpufreq(); ?></div>
</td>
</tr>
<?php if ($hwcrypto): ?>
OpenPOWER on IntegriCloud