From patchwork Thu Dec 21 13:33:14 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Uwe_Kleine-K=C3=B6nig?= X-Patchwork-Id: 10127689 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 9A3266056F for ; Thu, 21 Dec 2017 13:52:15 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 88CB229C91 for ; Thu, 21 Dec 2017 13:52:15 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 7354629C95; Thu, 21 Dec 2017 13:52:15 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2FDBC29C95 for ; Thu, 21 Dec 2017 13:52:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753058AbdLUNwN (ORCPT ); Thu, 21 Dec 2017 08:52:13 -0500 Received: from metis.ext.4.pengutronix.de ([92.198.50.35]:51643 "EHLO metis.ext.4.pengutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753127AbdLUNwK (ORCPT ); Thu, 21 Dec 2017 08:52:10 -0500 Received: from pty.hi.pengutronix.de ([2001:67c:670:100:1d::c5]) by metis.ext.pengutronix.de with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1eS1Gb-0001MT-Fl; Thu, 21 Dec 2017 14:52:09 +0100 Received: from ukl by pty.hi.pengutronix.de with local (Exim 4.89) (envelope-from ) id 1eS0yQ-0000Mp-9L; Thu, 21 Dec 2017 14:33:22 +0100 From: =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= To: Chris Ball Cc: linux-mmc@vger.kernel.org, kernel@pengutronix.de Subject: [PATCH mmc-utils 4/6] mmc-utils: expand .gitignore Date: Thu, 21 Dec 2017 14:33:14 +0100 Message-Id: <20171221133316.19466-5-u.kleine-koenig@pengutronix.de> X-Mailer: git-send-email 2.15.1 In-Reply-To: <20171221133316.19466-1-u.kleine-koenig@pengutronix.de> References: <20171221133316.19466-1-u.kleine-koenig@pengutronix.de> X-SA-Exim-Connect-IP: 2001:67c:670:100:1d::c5 X-SA-Exim-Mail-From: ukl@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-mmc@vger.kernel.org Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Instead of adding .o and .o.d files for the files that are not explicitly mentioned, add a pattern matching also all future files of these types. This makes git status stop to mention 3rdparty/hmac_sha/.hmac_sha2.o.d 3rdparty/hmac_sha/.sha2.o.d 3rdparty/hmac_sha/hmac_sha2.o 3rdparty/hmac_sha/sha2.o .lsmmc.o.d lsmmc.o --- .gitignore | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 5a94d4731f72..2a0cb3034cdb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,3 @@ -.mmc.o.d -.mmc_cmds.o.d -mmc -mmc.o -mmc_cmds.o +.*.o.d +*.o +/mmc