From patchwork Mon Apr 29 14:33:11 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 10921861 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 350E292A for ; Mon, 29 Apr 2019 14:37:45 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 25695288DA for ; Mon, 29 Apr 2019 14:37:45 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 192C0288F7; Mon, 29 Apr 2019 14:37:45 +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=-7.9 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,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 B44BA288DA for ; Mon, 29 Apr 2019 14:37:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728311AbfD2Oho (ORCPT ); Mon, 29 Apr 2019 10:37:44 -0400 Received: from condef-05.nifty.com ([202.248.20.70]:47205 "EHLO condef-05.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725838AbfD2Oho (ORCPT ); Mon, 29 Apr 2019 10:37:44 -0400 Received: from conuserg-11.nifty.com ([10.126.8.74])by condef-05.nifty.com with ESMTP id x3TEYQS6016801 for ; Mon, 29 Apr 2019 23:34:27 +0900 Received: from grover.flets-west.jp (softbank126125154137.bbtec.net [126.125.154.137]) (authenticated) by conuserg-11.nifty.com with ESMTP id x3TEXjjC012152; Mon, 29 Apr 2019 23:33:45 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com x3TEXjjC012152 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1556548426; bh=cDqhU/A9vJe3r9Ss7WsLxReyOUJCpxBYz1D7OJq2QZM=; h=From:To:Cc:Subject:Date:From; b=syq03RArj/bHdyU2TkPL22nwUZhjgdGLAMz9o/HKs/MwA11sUi9sQ2wKHHeHps9sC KsL2JoXeFd1tNPBInLQinw+QFbJccD7YeWsHutBpkw5+yPhJP8ibqtvsQB55O1k3Nx 6HDC4OKdqvS8KAwa2pLBTMrOuRf9ujnTVN0dl7NZBn8B/QTti7tkBtyDfyh0N+6V2M LNkIApe36IAJOk+v/pNOxpG7v4r1xFkTXFOxFE9lQoEGA8laIqSVKj6AThlBTyRnRW 28BV/nH/gIFYerUAYZLHUUDlCF1rrH23yF0XTvWHUJRS6ciTVTciymXGZh85bgjGNc fmefgiB+OfznA== X-Nifty-SrcIP: [126.125.154.137] From: Masahiro Yamada To: Yoshinori Sato , Rich Felker , linux-sh@vger.kernel.org Cc: Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH] sh: exclude vmlinux.scr from .gitignore pattern Date: Mon, 29 Apr 2019 23:33:11 +0900 Message-Id: <1556548391-14520-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP arch/sh/boot/.gitignore has the pattern "vmlinux*"; this is effective not only for the current directory, but also for any sub-directories. So, the following files are also considered to be ignored: arch/sh/boot/compressed/vmlinux.scr arch/sh/boot/romimage/vmlinux.scr They are obviously version-controlled, so should be excluded from the .gitignore pattern. Signed-off-by: Masahiro Yamada --- arch/sh/boot/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/sh/boot/.gitignore b/arch/sh/boot/.gitignore index 541087d..f50fdd9 100644 --- a/arch/sh/boot/.gitignore +++ b/arch/sh/boot/.gitignore @@ -1,3 +1,4 @@ zImage vmlinux* uImage* +!vmlinux.scr