mirror of
https://github.com/ipxe/ipxe
synced 2025-12-27 10:02:42 +03:00
[prefix] Use area at top of INT 15,88 memory map for temporary decompression
Use INT 15,88 to find a suitable temporary decompression area, rather than a fixed address. This hopefully gives us a better chance of not treading on any PMM-allocated areas, in BIOSes where PMM support exists but tends not to give us the large blocks that we ask for. Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -208,4 +208,6 @@ SECTIONS {
|
||||
*/
|
||||
_text16_memsz_pgh = ( ( _text16_memsz + 15 ) / 16 );
|
||||
_data16_memsz_pgh = ( ( _data16_memsz + 15 ) / 16 );
|
||||
_textdata_memsz_pgh = ( ( _textdata_memsz + 15 ) / 16 );
|
||||
_textdata_memsz_kb = ( ( _textdata_memsz + 1023 ) / 1024 );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user