diff options
author | ru <ru@FreeBSD.org> | 2005-09-22 15:06:58 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2005-09-22 15:06:58 +0000 |
commit | a3403464c071074e370ffd71b763b2f364ee49ae (patch) | |
tree | 369db36964b4fb47454c9f56bb47f103e2bdd2f1 /sys/boot/i386/libi386 | |
parent | 20ca55a59d2d616c50862d07c803d8ffd25363e0 (diff) | |
download | FreeBSD-src-a3403464c071074e370ffd71b763b2f364ee49ae.zip FreeBSD-src-a3403464c071074e370ffd71b763b2f364ee49ae.tar.gz |
Add loader(8) variables for RB_DFLTROOT, RB_MUTE, and RB_PAUSE:
"boot_dfltroot", "boot_mute", and "boot_pause" respectively.
Diffstat (limited to 'sys/boot/i386/libi386')
-rw-r--r-- | sys/boot/i386/libi386/bootinfo.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/boot/i386/libi386/bootinfo.c b/sys/boot/i386/libi386/bootinfo.c index 623351c..41d0702 100644 --- a/sys/boot/i386/libi386/bootinfo.c +++ b/sys/boot/i386/libi386/bootinfo.c @@ -47,11 +47,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} }; |