diff options
author | Ian Campbell <ijc@hellion.org.uk> | 2008-02-19 06:12:30 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:40:48 -0400 |
commit | 87253d1b4f2b5a29bdfc6275b9fb52a47d72df64 (patch) | |
tree | c2381c07282c356a3e64828b6d0a75e275938d44 /arch/x86/boot/header.S | |
parent | bc0a733facbbde6c464e3ba5e165607fe4824cca (diff) |
x86: boot protocol updates
Also update field names to simply payload_{offset,length} so as to not rule
out uncompressed images.
Signed-off-by: Ian Campbell <ijc@hellion.org.uk>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: virtualization@lists.linux-foundation.org
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/boot/header.S')
-rw-r--r-- | arch/x86/boot/header.S | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/x86/boot/header.S b/arch/x86/boot/header.S index 40c91bb483e1..6d2df8d61c54 100644 --- a/arch/x86/boot/header.S +++ b/arch/x86/boot/header.S | |||
@@ -224,10 +224,8 @@ hardware_subarch: .long 0 # subarchitecture, added with 2.07 | |||
224 | 224 | ||
225 | hardware_subarch_data: .quad 0 | 225 | hardware_subarch_data: .quad 0 |
226 | 226 | ||
227 | compressed_payload_offset: | 227 | payload_offset: .long input_data |
228 | .long input_data | 228 | payload_length: .long input_data_end-input_data |
229 | compressed_payload_length: | ||
230 | .long input_data_end-input_data | ||
231 | 229 | ||
232 | # End of setup header ##################################################### | 230 | # End of setup header ##################################################### |
233 | 231 | ||