Document Award change to bios_extract

This commit is contained in:
RichardG867
2022-03-04 16:31:22 -03:00
parent 7483c50236
commit 02ca7fd3b7
2 changed files with 3 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ Fork of the [coreboot bios_extract tool](https://github.com/coreboot/bios_extrac
* Added some sanity checks
* Improved AMI, Award and Phoenix BIOS detection
* Improved AMIBIOS extraction
* Improved Award extraction on semi-compressed v4.50 BIOSes
* Added AMIBIOS WinBIOS (12/15/93), 4 (07/25/94) and 5 (10/10/94) extraction
* Added AMIBIOS AFUDOS decompression
* Added LH5 extraction bruteforcing for Intel AMI Color fork

View File

@@ -55,8 +55,8 @@ AwardExtract(unsigned char *BIOSImage, int BIOSLength, int BIOSOffset,
BufferSize = p - BIOSImage;
if (BufferSize > 0) {
filename = "awardboot.rom";
printf("0x00000 (%6d bytes) -> %s\n",
BufferSize, filename);
printf("0x%05X (%6d bytes) -> %s\n",
0, BufferSize, filename);
Buffer = MMapOutputFile(filename, BufferSize);
if (!Buffer)