mirror of
https://github.com/CTCaer/switch-l4t-atf.git
synced 2025-01-07 10:50:26 +00:00
FIP tool: Fix error message for missing FIP filename
Previously to this path, the FIP tool used to print the following, misleading error message when called without any argument or with '--help' option: ERROR: Too many arguments This patch fixes this behavior by printing the following error message instead: ERROR: Missing FIP filename If called with '--help', no error message is printed and only the help message is displayed. Change-Id: Ib281b056f5cd3bc2f66d98be0b0cb2a0aed7c6a8
This commit is contained in:
parent
89f7b481bd
commit
399aacd68f
@ -509,11 +509,8 @@ static char *get_filename(int argc, char **argv, struct option *options)
|
|||||||
/* Only one argument left then it is the filename.
|
/* Only one argument left then it is the filename.
|
||||||
* We dont expect any other options
|
* We dont expect any other options
|
||||||
*/
|
*/
|
||||||
if (optind + 1 == argc) {
|
if (optind + 1 == argc)
|
||||||
filename = argv[optind];
|
filename = argv[optind];
|
||||||
} else {
|
|
||||||
printf("ERROR: Too many arguments.\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
return filename;
|
return filename;
|
||||||
}
|
}
|
||||||
@ -638,15 +635,13 @@ int main(int argc, char **argv)
|
|||||||
* it causes a failure if bad options were provided.
|
* it causes a failure if bad options were provided.
|
||||||
*/
|
*/
|
||||||
fip_filename = get_filename(argc, argv, long_options);
|
fip_filename = get_filename(argc, argv, long_options);
|
||||||
if (fip_filename == NULL) {
|
|
||||||
print_usage();
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Try to open the file and load it into memory */
|
/* Try to open the file and load it into memory */
|
||||||
status = parse_fip(fip_filename);
|
if (fip_filename != NULL) {
|
||||||
if (status != 0) {
|
status = parse_fip(fip_filename);
|
||||||
return status;
|
if (status != 0) {
|
||||||
|
return status;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Work through provided program arguments and perform actions */
|
/* Work through provided program arguments and perform actions */
|
||||||
@ -655,6 +650,12 @@ int main(int argc, char **argv)
|
|||||||
return status;
|
return status;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (fip_filename == NULL) {
|
||||||
|
printf("ERROR: Missing FIP filename\n");
|
||||||
|
print_usage();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* Processed all command line options. Create/update the package if
|
/* Processed all command line options. Create/update the package if
|
||||||
* required.
|
* required.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user