From patchwork Fri Jun 3 18:25:01 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brian Norris X-Patchwork-Id: 98617 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 1713DB6F9A for ; Sat, 4 Jun 2011 04:26:45 +1000 (EST) Received: from canuck.infradead.org ([2001:4978:20e::1]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1QSZ4Z-00065m-6O; Fri, 03 Jun 2011 18:26:15 +0000 Received: from localhost ([127.0.0.1] helo=canuck.infradead.org) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1QSZ4Y-0003Zt-Tc; Fri, 03 Jun 2011 18:26:14 +0000 Received: from mms3.broadcom.com ([216.31.210.19]) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1QSZ4V-0003ZI-Bi for linux-mtd@lists.infradead.org; Fri, 03 Jun 2011 18:26:12 +0000 Received: from [10.9.200.131] by MMS3.broadcom.com with ESMTP (Broadcom SMTP Relay (Email Firewall v6.3.2)); Fri, 03 Jun 2011 11:29:57 -0700 X-Server-Uuid: B55A25B1-5D7D-41F8-BC53-C57E7AD3C201 Received: from mail-irva-13.broadcom.com (10.11.16.103) by IRVEXCHHUB01.corp.ad.broadcom.com (10.9.200.131) with Microsoft SMTP Server id 8.2.247.2; Fri, 3 Jun 2011 11:26:04 -0700 Received: from localhost.localdomain (ld-irv-0074 [10.12.160.50]) by mail-irva-13.broadcom.com (Postfix) with ESMTP id E5E4A74D04; Fri, 3 Jun 2011 11:26:03 -0700 (PDT) From: "Brian Norris" To: "Artem Bityutskiy" Subject: [PATCH 2/2] nanddump: sort options in help message alphabetically by shortname Date: Fri, 3 Jun 2011 11:25:01 -0700 Message-ID: <1307125501-32558-2-git-send-email-computersforpeace@gmail.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1307125501-32558-1-git-send-email-computersforpeace@gmail.com> References: <1307125501-32558-1-git-send-email-computersforpeace@gmail.com> MIME-Version: 1.0 X-WSS-ID: 61F7F7AF4NS15765791-01-01 X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110603_142611_637068_5EF0E8C4 X-CRM114-Status: GOOD ( 12.38 ) X-Spam-Score: 1.2 (+) X-Spam-Report: SpamAssassin version 3.3.1 on canuck.infradead.org summary: Content analysis details: (1.2 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is freemail (computersforpeace[at]gmail.com) 0.0 DKIM_ADSP_CUSTOM_MED No valid author signature, adsp_override is CUSTOM_MED 0.0 RFC_ABUSE_POST Both abuse and postmaster missing on sender domain 1.2 NML_ADSP_CUSTOM_MED ADSP custom_med hit, and not from a mailing list Cc: David Woodhouse , Brian Norris , linux-mtd@lists.infradead.org, Mike Frysinger X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-mtd-bounces@lists.infradead.org Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org Signed-off-by: Brian Norris --- nanddump.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/nanddump.c b/nanddump.c index 78ea22e..c9d7e8b 100644 --- a/nanddump.c +++ b/nanddump.c @@ -48,6 +48,7 @@ static void display_help(void) " --help Display this help and exit\n" " --version Output version information and exit\n" "-a --forcebinary Force printing of binary data to tty\n" +"-b --omitbad Omit bad blocks from the dump\n" "-c --canonicalprint Print canonical Hex+ASCII dump\n" "-f file --file=file Dump to file\n" "-k --skipbad Skip over bad blocks (see below)\n" @@ -55,7 +56,6 @@ static void display_help(void) "-n --noecc Read without error correction\n" "-N --noskipbad Read without bad block skipping\n" "-o --omitoob Omit oob data\n" -"-b --omitbad Omit bad blocks from the dump\n" "-p --prettyprint Print nice (hexdump)\n" "-q --quiet Don't display progress and status messages\n" "-s addr --startaddress=addr Start address\n"