summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/services_ntpd_pps.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2016-01-07 13:10:25 -0500
committerjim-p <jimp@pfsense.org>2016-01-07 13:10:25 -0500
commitff8e3635b683fc789797d3755c9a05508343b5f0 (patch)
tree6ed442aa68389b184282db1ffa6ea3e960e81abe /src/usr/local/www/services_ntpd_pps.php
parente36f265e694049bf672efb3b023a229b988b116f (diff)
downloadpfsense-ff8e3635b683fc789797d3755c9a05508343b5f0.zip
pfsense-ff8e3635b683fc789797d3755c9a05508343b5f0.tar.gz
Cleanup some text and fix default behavior of some NTP options to match 2.2.6 and what the text described.
Diffstat (limited to 'src/usr/local/www/services_ntpd_pps.php')
-rw-r--r--src/usr/local/www/services_ntpd_pps.php34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/usr/local/www/services_ntpd_pps.php b/src/usr/local/www/services_ntpd_pps.php
index 98c1b37..b050168 100644
--- a/src/usr/local/www/services_ntpd_pps.php
+++ b/src/usr/local/www/services_ntpd_pps.php
@@ -167,24 +167,24 @@ $section->addInput(new Form_StaticText(
$serialports = glob("/dev/cua?[0-9]{,.[0-9]}", GLOB_BRACE);
if (!empty($serialports)) {
- $splist = array();
-
- foreach ($serialports as $port) {
- $shortport = substr($port, 5);
- $splist[$shortport] = $shortport;
- }
-
- $section->addInput(new Form_Select(
- 'ppsport',
- 'Serial port',
- $pconfig['port'],
- $splist
- ))->setHelp('All serial ports are listed, be sure to pick the port with the PPS source attached. ');
+ $splist = array();
+
+ foreach ($serialports as $port) {
+ $shortport = substr($port, 5);
+ $splist[$shortport] = $shortport;
+ }
+
+ $section->addInput(new Form_Select(
+ 'ppsport',
+ 'Serial Port',
+ $pconfig['port'],
+ $splist
+ ))->setHelp('All serial ports are listed, be sure to pick the port with the PPS source attached. ');
}
$section->addInput(new Form_Input(
'ppsfudge1',
- 'Fudge time',
+ 'Fudge Time',
'text',
$pconfig['fudge1']
))->setHelp('Fudge time is used to specify the PPS signal offset from the actual second such as the transmission delay between the transmitter and the receiver. (default: 0.0).');
@@ -199,21 +199,21 @@ $section->addInput(new Form_Input(
$section->addInput(new Form_Checkbox(
'ppsflag2',
'Flags',
- 'Enable falling edge PPS signal processing (default: rising edge).',
+ 'Enable falling edge PPS signal processing (default: unchecked, rising edge).',
$pconfig['flag2']
));
$section->addInput(new Form_Checkbox(
'ppsflag3',
null,
- 'Enable kernel PPS clock discipline (default: disabled).',
+ 'Enable kernel PPS clock discipline (default: unchecked).',
$pconfig['flag3']
));
$section->addInput(new Form_Checkbox(
'ppsflag4',
null,
- 'Record a timestamp once for each second, useful for constructing Allan deviation plots (default: disabled).',
+ 'Record a timestamp once for each second, useful for constructing Allan deviation plots (default: unchecked).',
$pconfig['flag4']
));
OpenPOWER on IntegriCloud