diff options
author | 1997-08-09 21:03:47 +0000 | |
---|---|---|
committer | 1997-08-09 21:03:47 +0000 | |
commit | 9b631a36b26b482ad52f756deab836fd8c74bfb7 (patch) | |
tree | f1e62a4ba36efac1a2793391ab3c6b39150cc3b1 | |
parent | struct statfs uses a signed short f_flags field. This field is used in (diff) | |
download | wireguard-openbsd-9b631a36b26b482ad52f756deab836fd8c74bfb7.tar.xz wireguard-openbsd-9b631a36b26b482ad52f756deab836fd8c74bfb7.zip |
Fix boot message
-rw-r--r-- | sys/arch/i386/stand/mbr/mbr.S | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/i386/stand/mbr/mbr.S b/sys/arch/i386/stand/mbr/mbr.S index 08e9f567555..6ee708cbc1a 100644 --- a/sys/arch/i386/stand/mbr/mbr.S +++ b/sys/arch/i386/stand/mbr/mbr.S @@ -1,4 +1,4 @@ -/* $OpenBSD: mbr.S,v 1.7 1997/08/08 22:46:13 weingart Exp $ */ +/* $OpenBSD: mbr.S,v 1.8 1997/08/09 21:03:47 weingart Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff and Tobias Weingartner @@ -206,23 +206,25 @@ err_stop: /* Found bootable partition */ found: DBGMSG(CHAR_B) -#if 0 pushl %ax /* Save drive and partition */ movl %dx, %ax andl $0x0F, %ax orl $0x30, %ax - movb %al, adrive + #movb %al, adrive + .byte 0xA2 + .word adrive movl %cx, %ax decl %ax xor $0x03, %ax andl $0x0F, %ax orl $0x30, %ax - movb %al, aprtn + #movb %al, aprtn + .byte 0xA2 + .word aprtn popl %ax -#endif /* Load values from active partition table entry */ # movb 1(%si), %dh # head @@ -258,12 +260,10 @@ found: 1: DBGMSG(CHAR_G) -#if 1 data32 movl $info, %esi data32 call message -#endif # jump to the new code (%ds:%si is at he right point) data32 |