Revision c01f31c8
Added by NOYB NOYB about 9 years ago
src/usr/local/www/system_advanced_misc.php | ||
---|---|---|
454 | 454 |
['' => gettext('None')] + $crypto_modules |
455 | 455 |
))->setHelp('A cryptographic '. |
456 | 456 |
'accelerator module will use hardware support to speed up some cryptographic '. |
457 |
'functions on systems which have the chip. Do not enable this option if you have '.
|
|
457 |
'functions on systems which have the chip. Do not enable this option with '.
|
|
458 | 458 |
'a Hifn cryptographic acceleration card, as this will take precedence and the '. |
459 | 459 |
'Hifn card will not be used. Acceleration should be automatic for IPsec when '. |
460 |
'using a cipher supported by your chip, such as AES-128. OpenVPN should be set '.
|
|
461 |
'for AES-128-CBC and have cryptodev enabled for hardware acceleration.If you do '.
|
|
462 |
'not have a crypto chip in your system, this option will have no effect. To '.
|
|
460 |
'using a cipher supported by the chip, such as AES-128. OpenVPN should be set '.
|
|
461 |
'for AES-128-CBC and have cryptodev enabled for hardware acceleration. If there '.
|
|
462 |
'is not a crypto chip in the system, this option will have no effect. To '.
|
|
463 | 463 |
'unload the selected module, set this option to "none" and then reboot.'); |
464 | 464 |
|
465 | 465 |
$section->addInput(new Form_Select( |
... | ... | |
467 | 467 |
'Thermal Sensors', |
468 | 468 |
$pconfig['thermal_hardware'], |
469 | 469 |
array('' => 'None/ACPI') + $thermal_hardware_modules |
470 |
))->setHelp('If you have a '.
|
|
471 |
'supported CPU, selecting a themal sensor will load the appropriate driver to '. |
|
470 |
))->setHelp('With a '.
|
|
471 |
'supported CPU, selecting a thermal sensor will load the appropriate driver to '.
|
|
472 | 472 |
'read its temperature. Setting this to "None" will attempt to read the '. |
473 | 473 |
'temperature from an ACPI-compliant motherboard sensor instead, if one is '. |
474 |
'present.If you do not have a supported thermal sensor chip in your system, this '.
|
|
474 |
'present. If there is not a supported thermal sensor chip in the system, this '.
|
|
475 | 475 |
'option will have no effect. To unload the selected module, set this option to '. |
476 | 476 |
'"none" and then reboot.'); |
477 | 477 |
|
... | ... | |
515 | 515 |
'Use RAM Disks', |
516 | 516 |
'Use memory file system for /tmp and /var', |
517 | 517 |
($pconfig['use_mfs_tmpvar'] || $g['platform'] != $g['product_name']) |
518 |
))->setHelp('Set this if you wish to use /tmp and /var as RAM disks (memory file '.
|
|
518 |
))->setHelp('Set this to use /tmp and /var as RAM disks (memory file '. |
|
519 | 519 |
'system disks) on a full install rather than use the hard disk. Setting this will '. |
520 | 520 |
'cause the data in /tmp and /var to be lost at reboot, including log data. RRD '. |
521 | 521 |
'and DHCP Leases will be retained.'); |
... | ... | |
546 | 546 |
['min' => 1, 'max' => 24, 'placeholder' => 'frequency between 1 and 24 hours'] |
547 | 547 |
))->setHelp('This will periodically backup the RRD data so '. |
548 | 548 |
'it can be restored automatically on the next boot. Keep in mind that the more '. |
549 |
'frequent the backup, the more writes will happen to your media.');
|
|
549 |
'frequent the backup, the more writes will happen to the media.');
|
|
550 | 550 |
|
551 | 551 |
$section->addInput(new Form_Input( |
552 | 552 |
'dhcpbackup', |
... | ... | |
556 | 556 |
['min' => 1, 'max' => 24, 'placeholder' => 'frequency between 1 and 24 hours'] |
557 | 557 |
))->setHelp('This will periodically backup the DHCP leases so '. |
558 | 558 |
'it can be restored automatically on the next boot. Keep in mind that the more '. |
559 |
'frequent the backup, the more writes will happen to your media.');
|
|
559 |
'frequent the backup, the more writes will happen to the media.');
|
|
560 | 560 |
|
561 | 561 |
$form->add($section); |
562 | 562 |
|
Also available in: Unified diff
System / Advanced / Miscellaneous - Remove Personalizations
Remove a bunch of "you" personalizations.
Typo and sentence spacing.