From 040f4cf507e914bd3b24350e86a3c82d3b8af5c1 Mon Sep 17 00:00:00 2001 From: Andrew Pattison <58046090+andrum99@users.noreply.github.com> Date: Fri, 22 Nov 2019 21:07:59 +0000 Subject: [PATCH] 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. --- rpi-eeprom-config | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rpi-eeprom-config b/rpi-eeprom-config index 31140fa..2733708 100755 --- a/rpi-eeprom-config +++ b/rpi-eeprom-config @@ -108,9 +108,9 @@ file: specify the EEPROM image file using the EEPROM option, and the output file using the --out option. \ \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\ -using the --config option, and the name to use for the new file which will be a \ -combination of the original EEPROM image file, along with the new bootloader \ -configuration.') +using the --config option. A new file which is a combination of the EEPROM image\ +file, together with the new bootloader configuration file you specify will be\ +created - specify its name using the --out option.') parser.add_argument('--config', help='Filename of new bootloader config') parser.add_argument('--out', help='Name of output file') parser.add_argument('eeprom', help='EEPROM filename (pieeprom.bin)') @@ -123,4 +123,4 @@ configuration.') image.read() if __name__ == '__main__': - main() \ No newline at end of file + main()