diff options
| author | Maxiwell S. Garcia <maxiwell@linux.ibm.com> | 2019-09-23 19:30:23 -0300 |
|---|---|---|
| committer | Jeremy Kerr <jk@ozlabs.org> | 2020-01-25 11:54:27 +0800 |
| commit | 3513c7f934d97b1db34c5e4e1ce9c995844764bd (patch) | |
| tree | 53c2ab648087f79f4aa67d4bb50d329e98b2fdab /lib/types | |
| parent | 0c074025ef345c64af088c78c7f8f0e14a51f700 (diff) | |
| download | talos-petitboot-3513c7f934d97b1db34c5e4e1ce9c995844764bd.tar.gz talos-petitboot-3513c7f934d97b1db34c5e4e1ce9c995844764bd.zip | |
ui/ncurses: Add preboot check option in the config screen
Petitboot might run some checks to validate the kernel images before
call the kexec load. This patch adds both 'preboot check' option in the
config UI screen and a NVRAM variable 'petitboot,preboot-check' to make
the user choice persistent.
The 'preboot check' is enabled by default. The 'petitboot,preboot-check'
is created on NVRAM only when 'preboot check' is disabled by the user.
NVRAM property changed to preboot-check, small label changes and help
text added by Jeremy Kerr <jk@ozlabs.org>.
Signed-off-by: Maxiwell S. Garcia <maxiwell@linux.ibm.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'lib/types')
| -rw-r--r-- | lib/types/types.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/types/types.h b/lib/types/types.h index c923d93..8018fde 100644 --- a/lib/types/types.h +++ b/lib/types/types.h @@ -187,6 +187,8 @@ struct config { unsigned int autoboot_timeout_sec; struct network_config network; + bool preboot_check_enabled; + struct autoboot_option *autoboot_opts; unsigned int n_autoboot_opts; |

