diff options
Diffstat (limited to 'arch/x86/boot')
-rw-r--r-- | arch/x86/boot/compressed/head_32.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/boot/compressed/head_32.S b/arch/x86/boot/compressed/head_32.S index d7245cf80261..d02a4f02be13 100644 --- a/arch/x86/boot/compressed/head_32.S +++ b/arch/x86/boot/compressed/head_32.S | |||
@@ -91,6 +91,10 @@ ENTRY(startup_32) | |||
91 | /* Set up the stack */ | 91 | /* Set up the stack */ |
92 | leal boot_stack_end(%ebx), %esp | 92 | leal boot_stack_end(%ebx), %esp |
93 | 93 | ||
94 | /* Zero EFLAGS */ | ||
95 | pushl $0 | ||
96 | popfl | ||
97 | |||
94 | /* | 98 | /* |
95 | * Copy the compressed kernel to the end of our buffer | 99 | * Copy the compressed kernel to the end of our buffer |
96 | * where decompression in place becomes safe. | 100 | * where decompression in place becomes safe. |