summaryrefslogtreecommitdiffstats
path: root/sys/boot/efi/libefi/bootinfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/boot/efi/libefi/bootinfo.c')
-rw-r--r--sys/boot/efi/libefi/bootinfo.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/boot/efi/libefi/bootinfo.c b/sys/boot/efi/libefi/bootinfo.c
index 44fde46..9645968 100644
--- a/sys/boot/efi/libefi/bootinfo.c
+++ b/sys/boot/efi/libefi/bootinfo.c
@@ -54,11 +54,14 @@ static struct
{"boot_askname", RB_ASKNAME},
{"boot_cdrom", RB_CDROM},
{"boot_ddb", RB_KDB},
+ {"boot_dfltroot", RB_DFLTROOT},
{"boot_gdb", RB_GDB},
- {"boot_single", RB_SINGLE},
- {"boot_verbose", RB_VERBOSE},
{"boot_multicons", RB_MULTIPLE},
+ {"boot_mute", RB_MUTE},
+ {"boot_pause", RB_PAUSE},
{"boot_serial", RB_SERIAL},
+ {"boot_single", RB_SINGLE},
+ {"boot_verbose", RB_VERBOSE},
{NULL, 0}
};
@@ -103,6 +106,9 @@ bi_getboothowto(char *kargs)
case 'h':
howto |= RB_SERIAL;
break;
+ case 'p':
+ howto |= RB_PAUSE;
+ break;
case 'r':
howto |= RB_DFLTROOT;
break;
OpenPOWER on IntegriCloud