* grub-core/boot/i386/pc/startup_raw.S: Clear direction flag for
certainety.
This commit is contained in:
parent
e3fd394a10
commit
276b7a8bdd
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/boot/i386/pc/startup_raw.S: Clear direction flag for
|
||||||
|
certainety.
|
||||||
|
|
||||||
2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
|
2011-12-15 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/boot/i386/pc/startup_raw.S: Move realmode routines to
|
* grub-core/boot/i386/pc/startup_raw.S: Move realmode routines to
|
||||||
|
|
|
@ -99,12 +99,14 @@ LOCAL (codestart):
|
||||||
.code32
|
.code32
|
||||||
|
|
||||||
incl %eax
|
incl %eax
|
||||||
|
cld
|
||||||
call grub_gate_a20
|
call grub_gate_a20
|
||||||
|
|
||||||
movl LOCAL(compressed_size), %edx
|
movl LOCAL(compressed_size), %edx
|
||||||
addl $(LOCAL(decompressor_end) - GRUB_KERNEL_I386_PC_NO_REED_SOLOMON_PART - _start), %edx
|
addl $(LOCAL(decompressor_end) - GRUB_KERNEL_I386_PC_NO_REED_SOLOMON_PART - _start), %edx
|
||||||
movl reed_solomon_redundancy, %ecx
|
movl reed_solomon_redundancy, %ecx
|
||||||
leal _start + GRUB_KERNEL_I386_PC_NO_REED_SOLOMON_PART, %eax
|
leal _start + GRUB_KERNEL_I386_PC_NO_REED_SOLOMON_PART, %eax
|
||||||
|
cld
|
||||||
call EXT_C (grub_reed_solomon_recover)
|
call EXT_C (grub_reed_solomon_recover)
|
||||||
jmp post_reed_solomon
|
jmp post_reed_solomon
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue