fastboot: Fixed optional entries
Previously, if an image was listed as optional, but was not found,
flashall would fail. Now it will proceed if optional images are not
present.
Change-Id: Ic82595cf0cd6ddce4c676de590f03f1a95f32040
Signed-off-by: Daniel Rosenberg <drosen@google.com>
diff --git a/fastboot/fastboot.c b/fastboot/fastboot.c
index 7f49ae9..79d0166 100644
--- a/fastboot/fastboot.c
+++ b/fastboot/fastboot.c
@@ -657,7 +657,7 @@
fd = open(fname, O_RDONLY | O_BINARY);
if (fd < 0) {
- die("cannot open '%s'\n", fname);
+ return -1;
}
return load_buf_fd(usb, fd, buf);