From patchwork Fri Apr 19 06:32:04 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Huth X-Patchwork-Id: 10909119 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 F009D17EE for ; Fri, 19 Apr 2019 18:18:34 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E5C9E28D3F for ; Fri, 19 Apr 2019 18:18:34 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id DA12B28D97; Fri, 19 Apr 2019 18:18:34 +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,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 8A1CB28D3F for ; Fri, 19 Apr 2019 18:18:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727543AbfDSSSb (ORCPT ); Fri, 19 Apr 2019 14:18:31 -0400 Received: from mx1.redhat.com ([209.132.183.28]:46240 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727535AbfDSSSa (ORCPT ); Fri, 19 Apr 2019 14:18:30 -0400 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 26E4C3199365; Fri, 19 Apr 2019 06:32:15 +0000 (UTC) Received: from thuth.com (ovpn-116-62.ams2.redhat.com [10.36.116.62]) by smtp.corp.redhat.com (Postfix) with ESMTP id F29A75D9C5; Fri, 19 Apr 2019 06:32:13 +0000 (UTC) From: Thomas Huth To: =?utf-8?b?UmFkaW0gS3LEjW3DocWZ?= , Paolo Bonzini , kvm@vger.kernel.org Cc: David Hildenbrand , Janosch Frank Subject: [kvm-unit-tests PULL 1/4] Add s390x/*.bin to the .gitignore file Date: Fri, 19 Apr 2019 08:32:04 +0200 Message-Id: <20190419063207.11474-2-thuth@redhat.com> In-Reply-To: <20190419063207.11474-1-thuth@redhat.com> References: <20190419063207.11474-1-thuth@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.41]); Fri, 19 Apr 2019 06:32:15 +0000 (UTC) Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Since commit 1a4cd2f22a48b8de53ef9e46afb8 ("s390x: Add binary generation to makefile") we are also generating *.bin files from the *.elf files in the s390x directory. Add them to the .gitignore file so that they do not show up in the output of "git status" anymore. Acked-by: David Hildenbrand Signed-off-by: Thomas Huth --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 483f7c7..784cb2d 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ cscope.* /api/api-sample /api/dirty-log /api/dirty-log-perf +/s390x/*.bin