Fix up help text per @lurch's comments in #57

Operating mode 3 failed to mention that the output file should be specified using the --out parameter.
This commit is contained in:
Andrew Pattison
2019-11-22 21:07:59 +00:00
committed by GitHub
parent 9a447aefc4
commit 040f4cf507

View File

@@ -108,9 +108,9 @@ file: specify the EEPROM image file using the EEPROM option, and the output file
using the --out option. \ using the --out option. \
\n\n3. Insert a new bootloader configuration into an EEPROM image file: specify \ \n\n3. Insert a new bootloader configuration into an EEPROM image file: specify \
the EEPROM image file using the EEPROM option, the bootloader configuration file\ the EEPROM image file using the EEPROM option, the bootloader configuration file\
using the --config option, and the name to use for the new file which will be a \ using the --config option. A new file which is a combination of the EEPROM image\
combination of the original EEPROM image file, along with the new bootloader \ file, together with the new bootloader configuration file you specify will be\
configuration.') created - specify its name using the --out option.')
parser.add_argument('--config', help='Filename of new bootloader config') parser.add_argument('--config', help='Filename of new bootloader config')
parser.add_argument('--out', help='Name of output file') parser.add_argument('--out', help='Name of output file')
parser.add_argument('eeprom', help='EEPROM filename (pieeprom.bin)') parser.add_argument('eeprom', help='EEPROM filename (pieeprom.bin)')