aboutsummaryrefslogtreecommitdiff
path: root/ubi-utils
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2018-05-12 21:51:56 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2018-05-12 21:59:19 +0200
commitb7c71d8541bf5830afe36e3fa5a925c4b78df04a (patch)
treec8231e35c26d97981e3683308470bc3a9669c5d1 /ubi-utils
parentbc63d36e39f389c8c17f6a8e9db47f2acc884659 (diff)
ubiformat: process command line arguments first
If libmtd_open fails, the program always exists with failure status and prints "MTD subsystem is not present". Even `ubiformat --help` produces the same result, which is definitely undesired. This patch moves command line option processing first to get the desired behavior. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'ubi-utils')
-rw-r--r--ubi-utils/ubiformat.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/ubi-utils/ubiformat.c b/ubi-utils/ubiformat.c
index c38b9b4..694ab4c 100644
--- a/ubi-utils/ubiformat.c
+++ b/ubi-utils/ubiformat.c
@@ -692,13 +692,14 @@ int main(int argc, char * const argv[])
struct ubigen_info ui;
struct ubi_scan_info *si;
- libmtd = libmtd_open();
- if (!libmtd)
- return errmsg("MTD subsystem is not present");
err = parse_opt(argc, argv);
if (err)
- goto out_close_mtd;
+ return -1;
+
+ libmtd = libmtd_open();
+ if (!libmtd)
+ return errmsg("MTD subsystem is not present");
err = mtd_get_info(libmtd, &mtd_info);
if (err) {