* grub-core/lib/i386/reboot_trampoline.S (grub_reboot_start):
Likewise.
+2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * grub-core/kern/i386/pc/startup.S (grub_exit): Add missing zeroing-out.
+ * grub-core/lib/i386/reboot_trampoline.S (grub_reboot_start):
+ Likewise.
+
2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/io/lzopio.c (test_header): Fix incorrect memcmp instead of
/* Tell the BIOS a boot failure. If this does not work, reboot. */
int $0x18
/* set 0x472 to 0x0000 for cold boot (0x1234 for warm boot) */
+ xorw %ax, %ax
movw $0x0472, %di
movw %ax, (%di)
ljmp $0xf000, $0xfff0
/* set 0x472 to 0x0000 for cold boot (0x1234 for warm boot) */
movw $0x0472, %di
+ xorw %ax, %ax
movw %ax, (%di)
ljmp $0xf000, $0xfff0