Add missed case statement to ignore 'i' parameter
in first getopt loop.

Signed-off-by: Alexander Aring <alex.ar...@gmail.com>
---
 arch/sandbox/os/common.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/arch/sandbox/os/common.c b/arch/sandbox/os/common.c
index e296574..d2aea38 100644
--- a/arch/sandbox/os/common.c
+++ b/arch/sandbox/os/common.c
@@ -306,6 +306,8 @@ int main(int argc, char *argv[])
                case 'm':
                        malloc_size = strtoul(optarg, NULL, 0);
                        break;
+               case 'i':
+                       break;
                case 'e':
                        sprintf(str, "env%d", envno);
                        ret = add_image(optarg, str);
@@ -343,7 +345,11 @@ int main(int argc, char *argv[])
        }
        mem_malloc_init(ram, ram + malloc_size - 1);
 
-       /* reset getopt */
+       /*
+        * Reset getopt.
+        * We need to run a second getopt to count -i parameters.
+        * This is for /dev/fd# devices.
+        */
        optind = 1;
 
        while (1) {
-- 
1.7.12


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to