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 From patchwork Mon Jun 11 07:21:50 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 927515 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="WFXnvKYC"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 4144Gh6Z94z9rvt for ; Mon, 11 Jun 2018 17:22:35 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 85A6EC21E0F; Mon, 11 Jun 2018 07:22:29 +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 8ACDCC21C27; Mon, 11 Jun 2018 07:22:25 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 12310C21C50; 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 61E3CC21BE5 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 w5B7LrhE019232; Mon, 11 Jun 2018 16:21:53 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-07.nifty.com w5B7LrhE019232 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1528701714; bh=J1Duvc0/xhRF/mqEeHRB3uv22WBrY6SvHluSGnCCozU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=WFXnvKYCqvcmUYmmj1ynAnwjO8+o/2GfyJooYPibRlbdBE10Nr+6Tx/p2OP9bBhx6 9m9Oz8dkG8YBZBIs3cVkMoEzWi70ABHYrAsssSUrqVMgyBWHFKtmaCVGmCx4EB+dRe XLxOXtZi7Dx66gDLLdTZuT7SoN1zPieuk+Cl9XBrD91L+kKpaapGdAiobqudRao/M4 GCwnLzp+ciz5BX+RRa5hng1MssV/oQS3uBexu8E+OgUcsBCNbqewbQw4qnTorr/E6D 6PBrKGT5nXVVBgiy91wofgpwWUpVta/+soUbd9Ohu1gNwhePjtVR6WxJGzybb+8KHb PzxLmSkmFABIA== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Mon, 11 Jun 2018 16:21:50 +0900 Message-Id: <1528701710-4465-2-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1528701710-4465-1-git-send-email-yamada.masahiro@socionext.com> References: <1528701710-4465-1-git-send-email-yamada.masahiro@socionext.com> Subject: [U-Boot] [PATCH 2/2] .gitignore: move *.dtb and *.dtb.S patterns to the top-level .gitignore 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 10b62a2f785a (".gitignore: move *.dtb and *.dtb.S patterns to the top-level .gitignore"). Signed-off-by: Masahiro Yamada --- .gitignore | 2 ++ arch/arc/dts/.gitignore | 1 - arch/arm/dts/.gitignore | 1 - arch/microblaze/dts/.gitignore | 1 - arch/mips/dts/.gitignore | 1 - arch/nios2/dts/.gitignore | 1 - arch/sandbox/dts/.gitignore | 1 - arch/x86/dts/.gitignore | 1 - dts/.gitignore | 2 -- 9 files changed, 2 insertions(+), 9 deletions(-) delete mode 100644 arch/arc/dts/.gitignore delete mode 100644 arch/arm/dts/.gitignore delete mode 100644 arch/microblaze/dts/.gitignore delete mode 100644 arch/mips/dts/.gitignore delete mode 100644 arch/nios2/dts/.gitignore delete mode 100644 arch/sandbox/dts/.gitignore delete mode 100644 arch/x86/dts/.gitignore delete mode 100644 dts/.gitignore diff --git a/.gitignore b/.gitignore index 4d4c486..6bb0ade 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ *.a *.bin *.cfgtmp +*.dtb +*.dtb.S *.elf *.exe *.gcda diff --git a/arch/arc/dts/.gitignore b/arch/arc/dts/.gitignore deleted file mode 100644 index b60ed20..0000000 --- a/arch/arc/dts/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.dtb diff --git a/arch/arm/dts/.gitignore b/arch/arm/dts/.gitignore deleted file mode 100644 index b60ed20..0000000 --- a/arch/arm/dts/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.dtb diff --git a/arch/microblaze/dts/.gitignore b/arch/microblaze/dts/.gitignore deleted file mode 100644 index b60ed20..0000000 --- a/arch/microblaze/dts/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.dtb diff --git a/arch/mips/dts/.gitignore b/arch/mips/dts/.gitignore deleted file mode 100644 index b60ed20..0000000 --- a/arch/mips/dts/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.dtb diff --git a/arch/nios2/dts/.gitignore b/arch/nios2/dts/.gitignore deleted file mode 100644 index b60ed20..0000000 --- a/arch/nios2/dts/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.dtb diff --git a/arch/sandbox/dts/.gitignore b/arch/sandbox/dts/.gitignore deleted file mode 100644 index b60ed20..0000000 --- a/arch/sandbox/dts/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.dtb diff --git a/arch/x86/dts/.gitignore b/arch/x86/dts/.gitignore deleted file mode 100644 index b60ed20..0000000 --- a/arch/x86/dts/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.dtb diff --git a/dts/.gitignore b/dts/.gitignore deleted file mode 100644 index 1b37180..0000000 --- a/dts/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.dtb -*.dtb.S