From 75af7b9df7b5e263fdedd3fdaaf38524a3549711 Mon Sep 17 00:00:00 2001 From: Dan Bungert Date: Tue, 19 Jul 2022 14:04:50 -0600 Subject: [PATCH] source view: FIPS/RT kernel warning --- subiquity/ui/views/source.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/subiquity/ui/views/source.py b/subiquity/ui/views/source.py index 1991a336..651d882b 100644 --- a/subiquity/ui/views/source.py +++ b/subiquity/ui/views/source.py @@ -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)