From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by bombadil.infradead.org with esmtps (Exim 4.87 #1 (Red Hat Linux)) id 1crMLt-0000S8-IE for barebox@lists.infradead.org; Fri, 24 Mar 2017 10:21:51 +0000 From: Oleksij Rempel Date: Fri, 24 Mar 2017 11:21:23 +0100 Message-Id: <20170324102123.9564-2-o.rempel@pengutronix.de> In-Reply-To: <20170324102123.9564-1-o.rempel@pengutronix.de> References: <20170324102123.9564-1-o.rempel@pengutronix.de> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH v1 2/2] commands: usbgadget: provide fallback to global variables To: barebox@lists.infradead.org Cc: Oleksij Rempel usbgadget autostarter is providing now a global variable to configure fastboot. We can use is as fallback for the cmd_usbgadget as well. Signed-off-by: Oleksij Rempel --- commands/usbgadget.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/commands/usbgadget.c b/commands/usbgadget.c index a7e8d6c0c..9f250633d 100644 --- a/commands/usbgadget.c +++ b/commands/usbgadget.c @@ -20,6 +20,7 @@ */ #include #include +#include #include #include #include @@ -32,11 +33,11 @@ static int do_usbgadget(int argc, char *argv[]) { int opt; - int acm = 1, create_serial = 0; + int acm = 1, create_serial = 0, fastboot_set = 0; char *fastboot_opts = NULL, *dfu_opts = NULL; struct f_multi_opts opts = {}; - while ((opt = getopt(argc, argv, "asdA:D:")) > 0) { + while ((opt = getopt(argc, argv, "asdA::D:")) > 0) { switch (opt) { case 'a': acm = 1; @@ -51,6 +52,7 @@ static int do_usbgadget(int argc, char *argv[]) break; case 'A': fastboot_opts = optarg; + fastboot_set = 1; break; case 'd': usb_multi_unregister(); @@ -60,6 +62,9 @@ static int do_usbgadget(int argc, char *argv[]) } } + if (fastboot_set && !fastboot_opts) + fastboot_opts = getenv("global.usbgadget.fastboot_function"); + if (!dfu_opts && !fastboot_opts && !create_serial) return COMMAND_ERROR_USAGE; -- 2.11.0 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox