diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-09-05 08:37:38 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-09-05 08:37:38 -0500 |
commit | 4f054116b7a0abc52587c613f7228e00853d125c (patch) | |
tree | d68e1a992430c4b0f5c1efc6f2aec9bb07f1b106 | |
parent | 6f4d5d59a8a08b22ca0e515e7f2a9c2e5a3e7619 (diff) | |
download | horizon-4f054116b7a0abc52587c613f7228e00853d125c.tar.gz horizon-4f054116b7a0abc52587c613f7228e00853d125c.tar.bz2 horizon-4f054116b7a0abc52587c613f7228e00853d125c.tar.xz horizon-4f054116b7a0abc52587c613f7228e00853d125c.zip |
script: keys: Add firmware key
-rw-r--r-- | devel/script/2_keys.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/devel/script/2_keys.xml b/devel/script/2_keys.xml index 533ab3b..9a29703 100644 --- a/devel/script/2_keys.xml +++ b/devel/script/2_keys.xml @@ -143,5 +143,36 @@ keymap fr </para> </formalpara> </section> + <section id="firmware"> + <title><literal>firmware</literal></title> + <formalpara id="firmware.name"> + <title>Name</title> + <para><literal>firmware</literal></para> + </formalpara> + <formalpara id="firmware.purpose"> + <title>Purpose</title> + <para>The <literal>firmware</literal> key determines if the target computer will load potentially insecure, proprietary firmware.</para> + </formalpara> + <formalpara id="firmware.format"> + <title>Format</title> + <para>The <literal>firmware</literal> key is a Boolean value — valid values are <literal>true</literal> and <literal>false</literal>. <literal>firmware</literal> may appear at most once in a HorizonScript.</para> + </formalpara> + <formalpara id="firmware.default"> + <title>Default</title> + <para>If the <literal>firmware</literal> key is not present, the target computer will not load proprietary firmware. This is to ensure the integrity, security, and reliability of the target computer.</para> + </formalpara> + <formalpara id="firmware.example"> + <title>Example</title> + <para> + <example> + <title>The <literal>firmware</literal> Key</title> + <programlisting> +firmware false + </programlisting> + <para>This explicitly disables loading of firmware on the target computer.</para> + </example> + </para> + </formalpara> + </section> </section> </chapter> |