Changeset 58510 in vbox for trunk/src/VBox/Devices/EFI
- Timestamp:
- Oct 30, 2015 12:17:20 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103831
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/GenFds.py
r58466 r58510 494 494 FvSpaceInfoList.append((FvName, Total, Used, Free)) 495 495 496 GenFdsGlobalVariable.QuietLogger('\nFV Space Information') 496 GenFdsGlobalVariable.QuietLogger('\nFV Space Information') # VBox: We want this info in -quiet builds too. 497 497 for FvSpaceInfo in FvSpaceInfoList: 498 498 Name = FvSpaceInfo[0] … … 505 505 Percentage = str((UsedSizeValue+0.0)/TotalSizeValue)[0:4].lstrip('0.') 506 506 507 GenFdsGlobalVariable.QuietLogger(Name + ' ' + '[' + Percentage + '%Full] ' + str(TotalSizeValue) + ' total, ' + str(UsedSizeValue) + ' used, ' + str(FreeSizeValue) + ' free') 507 GenFdsGlobalVariable.QuietLogger(Name + ' ' + '[' + Percentage + '%Full] ' + str(TotalSizeValue) + ' total, ' + str(UsedSizeValue) + ' used, ' + str(FreeSizeValue) + ' free') # VBox: Same as above. 508 508 509 509 ## PreprocessImage() … … 560 560 if GuidXRefFile.getvalue(): 561 561 SaveFileOnChange(GuidXRefFileName, GuidXRefFile.getvalue(), False) 562 GenFdsGlobalVariable.QuietLogger("\nGUID cross reference file can be found at %s" % GuidXRefFileName) 562 GenFdsGlobalVariable.QuietLogger("\nGUID cross reference file can be found at %s" % GuidXRefFileName) # VBox: We want this info in -quiet builds too. 563 563 elif os.path.exists(GuidXRefFileName): 564 564 os.remove(GuidXRefFileName)
Note:
See TracChangeset
for help on using the changeset viewer.