aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2021-02-11 23:06:30 +0000
committerWarner Losh <imp@FreeBSD.org>2021-02-24 18:01:41 +0000
commitb8b867a10f56b4a78b680fb5d2a97c83e745a0ce (patch)
tree9c15cd6bc1052b7315ee402c91c277c29bfedc00
parent44f483e0fa52c42c8f97cf1600c1f7272a283707 (diff)
efibootmgr: Check for efi supported after parsing args
Move the check for efi variables being supported to after parsing the args. This allows '-h' to produce both as a normal user as well as on all systems. (cherry picked from commit 7fe2f504f8a0e4237872f8528e911c5f7b7ed59d)
-rw-r--r--usr.sbin/efibootmgr/efibootmgr.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/efibootmgr/efibootmgr.c b/usr.sbin/efibootmgr/efibootmgr.c
index 8c7ba82cb5a5..53bc417c4e07 100644
--- a/usr.sbin/efibootmgr/efibootmgr.c
+++ b/usr.sbin/efibootmgr/efibootmgr.c
@@ -1072,11 +1072,12 @@ int
main(int argc, char *argv[])
{
+ memset(&opts, 0, sizeof (bmgr_opts_t));
+ parse_args(argc, argv);
+
if (!efi_variables_supported())
errx(1, "efi variables not supported on this system. root? kldload efirt?");
- memset(&opts, 0, sizeof (bmgr_opts_t));
- parse_args(argc, argv);
read_vars();
if (opts.create)