diff options
author | ru <ru@FreeBSD.org> | 2004-09-30 13:11:55 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-09-30 13:11:55 +0000 |
commit | 2c636ec906b628633f8f55fa61b2d5197a53cbcb (patch) | |
tree | d5a5adb148267e10173a4e15e54e20a91abf2098 /sys | |
parent | ce70f55679add265dada8adc5f7612c06a656db5 (diff) | |
download | FreeBSD-src-2c636ec906b628633f8f55fa61b2d5197a53cbcb.zip FreeBSD-src-2c636ec906b628633f8f55fa61b2d5197a53cbcb.tar.gz |
Added support for the -D boot option.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/boot/ia64/ski/bootinfo.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/boot/ia64/ski/bootinfo.c b/sys/boot/ia64/ski/bootinfo.c index dbc4673..9c67a95 100644 --- a/sys/boot/ia64/ski/bootinfo.c +++ b/sys/boot/ia64/ski/bootinfo.c @@ -91,6 +91,9 @@ bi_getboothowto(char *kargs) case 'd': howto |= RB_KDB; break; + case 'D': + howto |= RB_MULTIPLE; + break; case 'm': howto |= RB_MUTE; break; |