public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Christian Eggers <ceggers@gmx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] [PATCH] [PATCH] Fix "usb part" command
Date: Fri, 27 Jun 2008 19:46:51 +0200	[thread overview]
Message-ID: <121458881184-git-send-email-ceggers@gmx.de> (raw)

From: Christian Eggers <christian@p2400.wgnetz.xx>

Only print partition for selected device if user supplied the <dev> arg with the "usb part [dev]" command.

Signed-off-by: Christian Eggers <ceggers@gmx.de>
---
 common/cmd_usb.c |   19 +++++++++++++++----
 1 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/common/cmd_usb.c b/common/cmd_usb.c
index 9be86b8..ed51087 100644
--- a/common/cmd_usb.c
+++ b/common/cmd_usb.c
@@ -553,13 +553,24 @@ int do_usb (cmd_tbl_t *cmdtp, int flag,
 	}
 
 	if (strncmp(argv[1],"part",4) == 0) {
-		int devno, ok;
-		for (ok=0, devno=0; devno<USB_MAX_STOR_DEV; ++devno) {
+		int devno, ok = 0;
+		if (argc==2) {
+			for (devno=0; devno<USB_MAX_STOR_DEV; ++devno) {
+				stor_dev=usb_stor_get_dev(devno);
+				if (stor_dev->type!=DEV_TYPE_UNKNOWN) {
+					ok++;
+					if (devno)
+						printf("\n");
+					printf("print_part of %x\n",devno);
+					print_part(stor_dev);
+				}
+			}
+		}
+		else {
+			devno=simple_strtoul(argv[2], NULL, 16);
 			stor_dev=usb_stor_get_dev(devno);
 			if (stor_dev->type!=DEV_TYPE_UNKNOWN) {
 				ok++;
-				if (devno)
-					printf("\n");
 				printf("print_part of %x\n",devno);
 				print_part(stor_dev);
 			}
-- 
1.4.3.4

             reply	other threads:[~2008-06-27 17:46 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-27 17:46 Christian Eggers [this message]
2008-07-09 21:27 ` [U-Boot-Users] [PATCH] [PATCH] Fix "usb part" command Wolfgang Denk
2008-07-10 10:14   ` Markus Klotzbücher
2008-07-10 10:25     ` Wolfgang Denk
2008-07-10 10:14 ` Markus Klotzbücher
2008-07-10 10:25   ` Wolfgang Denk
2008-07-10 10:24 ` Wolfgang Denk

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=121458881184-git-send-email-ceggers@gmx.de \
    --to=ceggers@gmx.de \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox