mirror of
https://github.com/ipxe/ipxe
synced 2026-02-14 02:31:26 +03:00
Rename _rom_size to _load_size_sect, since hdprefix.S also uses it.
This commit is contained in:
@@ -59,7 +59,7 @@ load_image:
|
|||||||
ljmp $BOOT_SEG, $start_image
|
ljmp $BOOT_SEG, $start_image
|
||||||
|
|
||||||
load_length:
|
load_length:
|
||||||
.long _rom_size
|
.long _load_size_sect
|
||||||
max_sector:
|
max_sector:
|
||||||
.byte 0
|
.byte 0
|
||||||
max_head:
|
max_head:
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
.org 0x00
|
.org 0x00
|
||||||
romheader:
|
romheader:
|
||||||
.word 0xAA55 /* BIOS extension signature */
|
.word 0xAA55 /* BIOS extension signature */
|
||||||
romheader_size: .byte _rom_size /* Size in 512-byte blocks */
|
romheader_size: .byte _load_size_sect /* Size in 512-byte blocks */
|
||||||
jmp init_vector /* Initialisation vector */
|
jmp init_vector /* Initialisation vector */
|
||||||
.org 0x16
|
.org 0x16
|
||||||
.word undiheader
|
.word undiheader
|
||||||
@@ -34,7 +34,7 @@ pciheader:
|
|||||||
.byte 0x02 /* Device Base Type code */
|
.byte 0x02 /* Device Base Type code */
|
||||||
.byte 0x00 /* Device Sub-Type code */
|
.byte 0x00 /* Device Sub-Type code */
|
||||||
.byte 0x00 /* Device Interface Type code */
|
.byte 0x00 /* Device Interface Type code */
|
||||||
pciheader_size: .word _rom_size /* Image length same as offset 02h */
|
pciheader_size: .word _load_size_sect /* Image length same as offset 02h */
|
||||||
.word 0x0001 /* revision level of code/data */
|
.word 0x0001 /* revision level of code/data */
|
||||||
.byte 0x00 /* code type */
|
.byte 0x00 /* code type */
|
||||||
.byte 0x80 /* Flags (last PCI data structure) */
|
.byte 0x80 /* Flags (last PCI data structure) */
|
||||||
|
|||||||
@@ -192,5 +192,5 @@ SECTIONS {
|
|||||||
_text16_size_pgh = ( ( _text16_size + 15 ) / 16 );
|
_text16_size_pgh = ( ( _text16_size + 15 ) / 16 );
|
||||||
_data16_size_pgh = ( ( _data16_size + 15 ) / 16 );
|
_data16_size_pgh = ( ( _data16_size + 15 ) / 16 );
|
||||||
_load_size_pgh = ( ( _load_size + 15 ) / 16 );
|
_load_size_pgh = ( ( _load_size + 15 ) / 16 );
|
||||||
_rom_size = ( ( _load_size + 511 ) / 512 );
|
_load_size_sect = ( ( _load_size + 511 ) / 512 );
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -270,5 +270,5 @@ SECTIONS {
|
|||||||
_text16_size_pgh = ( ( _text16_size + 15 ) / 16 );
|
_text16_size_pgh = ( ( _text16_size + 15 ) / 16 );
|
||||||
_data16_size_pgh = ( ( _data16_size + 15 ) / 16 );
|
_data16_size_pgh = ( ( _data16_size + 15 ) / 16 );
|
||||||
_load_size_pgh = ( ( _load_size + 15 ) / 16 );
|
_load_size_pgh = ( ( _load_size + 15 ) / 16 );
|
||||||
_rom_size = ( ( _load_size + 511 ) / 512 );
|
_load_size_sect = ( ( _load_size + 511 ) / 512 );
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user