* grub-core/boot/i386/pc/startup_raw.S: Add missing argument for
_LzmaDecodeA.
This commit is contained in:
parent
8eba9997db
commit
1f0b1a7730
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2011-12-23 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/boot/i386/pc/startup_raw.S: Add missing argument for
|
||||||
|
_LzmaDecodeA.
|
||||||
|
|
||||||
2011-12-22 Vladimir Serbinenko <phcoder@gmail.com>
|
2011-12-22 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* docs/grub.texi (Internationalisation): New section.
|
* docs/grub.texi (Internationalisation): New section.
|
||||||
|
|
|
@ -179,7 +179,10 @@ post_reed_solomon:
|
||||||
pushl %edi
|
pushl %edi
|
||||||
movl LOCAL (uncompressed_size), %ecx
|
movl LOCAL (uncompressed_size), %ecx
|
||||||
leal (%edi, %ecx), %ebx
|
leal (%edi, %ecx), %ebx
|
||||||
|
/* Don't remove this push: it's an argument. */
|
||||||
|
push %ecx
|
||||||
call _LzmaDecodeA
|
call _LzmaDecodeA
|
||||||
|
pop %ecx
|
||||||
/* _LzmaDecodeA clears DF, so no need to run cld */
|
/* _LzmaDecodeA clears DF, so no need to run cld */
|
||||||
popl %esi
|
popl %esi
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue