diff options
Diffstat (limited to 'arch/x86/boot/header.S')
| -rw-r--r-- | arch/x86/boot/header.S | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/arch/x86/boot/header.S b/arch/x86/boot/header.S index 850b8762e889..4c881c850125 100644 --- a/arch/x86/boot/header.S +++ b/arch/x86/boot/header.S @@ -300,7 +300,7 @@ _start:  	# Part 2 of the header, from the old setup.S  		.ascii	"HdrS"		# header signature -		.word	0x020d		# header version number (>= 0x0105) +		.word	0x020e		# header version number (>= 0x0105)  					# or else old loadlin-1.5 will fail)  		.globl realmode_swtch  realmode_swtch:	.word	0, 0		# default_switch, SETUPSEG @@ -558,6 +558,10 @@ pref_address:		.quad LOAD_PHYSICAL_ADDR	# preferred load addr  init_size:		.long INIT_SIZE		# kernel initialization size  handover_offset:	.long 0			# Filled in by build.c +acpi_rsdp_addr:		.quad 0			# 64-bit physical pointer to the +						# ACPI RSDP table, added with +						# version 2.14 +  # End of setup header #####################################################  	.section ".entrytext", "ax" |