Merge pull request #1358 from dbungert/fips-warning

source view: FIPS/RT kernel warning
This commit is contained in:
Dan Bungert 2022-07-26 08:54:29 -06:00 committed by GitHub
commit c3ec10e801
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -58,7 +58,9 @@ class SourceView(BaseView):
ns["search_drivers"] = BooleanField(
_("Search for third-party drivers"), "\n" +
_("This software is subject to license terms included with its "
"documentation. Some is proprietary."))
"documentation. Some is proprietary.") + " " +
_("Third-party drivers should not be installed on systems that "
"will be used for FIPS or the real-time kernel."))
initial["search_drivers"] = search_drivers
SourceForm = type(Form)('SourceForm', (Form,), ns)