diff options
author | Tobias Weingartner <weingart@cvs.openbsd.org> | 1998-02-24 22:06:57 +0000 |
---|---|---|
committer | Tobias Weingartner <weingart@cvs.openbsd.org> | 1998-02-24 22:06:57 +0000 |
commit | 0bb9b7b7dca2172711ad9e6d3a1f6326861f5583 (patch) | |
tree | 7fc87e984297ab2cbb4798168fc77310dcb716f9 /sys/arch/i386/stand/biosboot/biosboot.S | |
parent | 56d872e11254cc8a8ca03e06d9b6ae78fb8a078a (diff) |
Changes/updates to /boot stuff. More to come.
Fixes many divide by zero and pointer bugs.
Diffstat (limited to 'sys/arch/i386/stand/biosboot/biosboot.S')
-rw-r--r-- | sys/arch/i386/stand/biosboot/biosboot.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/i386/stand/biosboot/biosboot.S b/sys/arch/i386/stand/biosboot/biosboot.S index fd4072302c6..a14c286b5a1 100644 --- a/sys/arch/i386/stand/biosboot/biosboot.S +++ b/sys/arch/i386/stand/biosboot/biosboot.S @@ -1,4 +1,4 @@ -/* $OpenBSD: biosboot.S,v 1.21 1997/11/05 02:12:54 mickey Exp $ */ +/* $OpenBSD: biosboot.S,v 1.22 1998/02/24 22:06:39 weingart Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -94,7 +94,7 @@ ebpb: .long 16 /* hidden sectors */ .word 0 /* physical disk */ .byte 0x29 /* signature, needed by NT */ .space 4, 0 /* volume serial number */ - .asciz "NO LABEL " + .asciz "UNIX LABEL" .asciz "UFS 4.4" /* boot code */ @@ -179,7 +179,7 @@ ebpb: .long 16 /* hidden sectors */ /* read error */ puts(2f) - jmp 5f + jmp halt 2: .asciz "\r\nRead error\r\n" 3: /* read next block */ @@ -207,7 +207,7 @@ ebpb: .long 16 /* hidden sectors */ je 3f puts(1f) -5: +halt: cli hlt 1: .ascii "Bad magic" |