From patchwork Mon Jun 11 07:21:49 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 927516 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=socionext.com Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=nifty.com header.i=@nifty.com header.b="GZ5Bf66y"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 4144Gz64s6z9rvt for ; Mon, 11 Jun 2018 17:22:51 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 8151EC21DA1; Mon, 11 Jun 2018 07:22:46 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 1CB8CC21D4A; Mon, 11 Jun 2018 07:22:26 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 1F87CC21BE5; Mon, 11 Jun 2018 07:22:23 +0000 (UTC) Received: from conuserg-07.nifty.com (conuserg-07.nifty.com [210.131.2.74]) by lists.denx.de (Postfix) with ESMTPS id 73952C21C27 for ; Mon, 11 Jun 2018 07:22:22 +0000 (UTC) Received: from pug.e01.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-07.nifty.com with ESMTP id w5B7LrhD019232; Mon, 11 Jun 2018 16:21:53 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-07.nifty.com w5B7LrhD019232 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1528701713; bh=MtnuV0xP9nNEieZZbH6xvEJmu5XZZU0EHBDOj0C0kUc=; h=From:To:Cc:Subject:Date:From; b=GZ5Bf66y7p3WnWj8IeFNXCbJeIRPPVKeFSSHWFsegxKUIAag1Sc3nqytCL8gblez5 0AIV1g+h5R/kitgrPdAAeW4gIGWkJiWwdaGi2RIMdpwFlQZZrdkVyYRGUXsvca2XLM m8vNacPIR606TcViZxfz9sLqfZHvwBocFZR0EVVVDOiRZlecLmk/30xTYs7qMoLH2+ FWENG6hwSxizdWvGbERjwH5Zz+qfMWVNX54aabWjZ/YKHL18j3GYmF6PqvTslN0+A7 Kk/Dpz/3VzEMEGBfL7SThousPjd1epDwzNitH6DXEKmG2dDra7EuqzBzfP06Rr4+gl VEV2Q+cA4EwFw== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Mon, 11 Jun 2018 16:21:49 +0900 Message-Id: <1528701710-4465-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Subject: [U-Boot] [PATCH 1/2] .gitignore: sort normal pattern rules alphabetically X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Follow Linux commit 1377dd3e2987 (".gitignore: sort normal pattern rules alphabetically"). This would allow us to easily catch duplicated patterns if any. Signed-off-by: Masahiro Yamada --- .gitignore | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index 9110eda..4d4c486 100644 --- a/.gitignore +++ b/.gitignore @@ -3,29 +3,29 @@ # subdirectories here. Add them in the ".gitignore" file # in that subdirectory instead. # -# Normal rules +# Normal rules (sorted alphabetically) # .* -*.o -*.o.* *.a -*.s -*.su -*.mod.c +*.bin +*.cfgtmp +*.elf +*.exe +*.gcda +*.gcno *.i *.lex.c *.lst +*.mod.c +*.o +*.o.* *.order -*.elf -*.swp -*.bin *.patch -*.cfgtmp +*.s +*.su +*.swp *.tab.[ch] -# host programs on Cygwin -*.exe - # Build tree /build-* @@ -86,7 +86,3 @@ GTAGS *.orig *~ \#*# - -# gcc code coverage files -*.gcda -*.gcno