Enhance argument descriptions for CorruptComponentUtility

Signed-off-by: Sean McGinn <sean.mcginn@intel.com>
This commit is contained in:
Sean McGinn 2022-09-26 09:03:06 -07:00 committed by Guo Dong
parent 94053251fd
commit b44ef69ca4
1 changed files with 3 additions and 1 deletions

View File

@ -45,7 +45,9 @@ if __name__ == '__main__':
parser.add_argument('-o', '--output-image', dest='output_image', type=str,
required=True, help='Specify output IFWI/SBL image file path')
parser.add_argument('-p', '--path', dest='component_path', type=str,
required=True, help='Specify path of component to corrupt in IFWI/SBL image')
required=True, help='Specify path of component to corrupt '
'in IFWI/SBL binary (e.g. IFWI/BIOS/TS0/SG1A for BP0 Stage 1A of '
'IFWI binary, use IfwiUtility.py to see all available paths)')
args = parser.parse_args()
corrupt_component(args.input_image, args.output_image, args.component_path)