From patchwork Wed Apr 10 10:16:53 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Huth X-Patchwork-Id: 10893571 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 4655214DB for ; Wed, 10 Apr 2019 10:17:01 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2F0E1285D1 for ; Wed, 10 Apr 2019 10:17:01 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 1FE7C28889; Wed, 10 Apr 2019 10:17:01 +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 CE0A1285D1 for ; Wed, 10 Apr 2019 10:17:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730039AbfDJKQ7 (ORCPT ); Wed, 10 Apr 2019 06:16:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:55778 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730032AbfDJKQ7 (ORCPT ); Wed, 10 Apr 2019 06:16:59 -0400 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 5D1548666F; Wed, 10 Apr 2019 10:16:59 +0000 (UTC) Received: from thuth.com (ovpn-116-114.ams2.redhat.com [10.36.116.114]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6741919C65; Wed, 10 Apr 2019 10:16:56 +0000 (UTC) From: Thomas Huth To: kvm@vger.kernel.org, David Hildenbrand Cc: Janosch Frank Subject: [kvm-unit-tests PATCH] Add s390x/*.bin to the .gitignore file Date: Wed, 10 Apr 2019 12:16:53 +0200 Message-Id: <20190410101653.1473-1-thuth@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.26]); Wed, 10 Apr 2019 10:16:59 +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. Signed-off-by: Thomas Huth Acked-by: David Hildenbrand --- .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