From b44ef69ca4a503f01d1a7a6dc7430bf46126b98f Mon Sep 17 00:00:00 2001 From: Sean McGinn Date: Mon, 26 Sep 2022 09:03:06 -0700 Subject: [PATCH] Enhance argument descriptions for CorruptComponentUtility Signed-off-by: Sean McGinn --- BootloaderCorePkg/Tools/CorruptComponentUtility.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BootloaderCorePkg/Tools/CorruptComponentUtility.py b/BootloaderCorePkg/Tools/CorruptComponentUtility.py index fda2f48c..00dae411 100644 --- a/BootloaderCorePkg/Tools/CorruptComponentUtility.py +++ b/BootloaderCorePkg/Tools/CorruptComponentUtility.py @@ -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)