fix a bug in grub_halt.
This commit is contained in:
parent
9b91c55408
commit
1a651ece2c
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2000-06-15 OKUJI Yoshinori <okuji@gnu.org>
|
||||||
|
|
||||||
|
* stage2/asm.S (grub_halt): Use jmp instead of jc, if INT 15
|
||||||
|
AX=5307h fails.
|
||||||
|
|
||||||
2000-06-15 OKUJI Yoshinori <okuji@gnu.org>
|
2000-06-15 OKUJI Yoshinori <okuji@gnu.org>
|
||||||
|
|
||||||
* configure.in (AM_INIT_AUTOMAKE): Increase the version number.
|
* configure.in (AM_INIT_AUTOMAKE): Increase the version number.
|
||||||
|
|
|
@ -246,7 +246,7 @@ ENTRY(grub_halt)
|
||||||
int $0x15
|
int $0x15
|
||||||
|
|
||||||
/* shouldn't reach here */
|
/* shouldn't reach here */
|
||||||
jc EXT_C(hard_stop)
|
jmp EXT_C(hard_stop)
|
||||||
.code32
|
.code32
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue