From patchwork Mon Jan 30 17:46:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dave Martin X-Patchwork-Id: 6443 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 9BE1523E0E for ; Mon, 30 Jan 2012 17:46:27 +0000 (UTC) Received: from mail-bk0-f52.google.com (mail-bk0-f52.google.com [209.85.214.52]) by fiordland.canonical.com (Postfix) with ESMTP id 83412A1806B for ; Mon, 30 Jan 2012 17:46:27 +0000 (UTC) Received: by bkar19 with SMTP id r19so4553351bka.11 for ; Mon, 30 Jan 2012 09:46:27 -0800 (PST) Received: by 10.205.127.17 with SMTP id gy17mr8864190bkc.110.1327945587255; Mon, 30 Jan 2012 09:46:27 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.204.130.220 with SMTP id u28cs159344bks; Mon, 30 Jan 2012 09:46:27 -0800 (PST) Received: by 10.180.24.166 with SMTP id v6mr15632135wif.10.1327945586796; Mon, 30 Jan 2012 09:46:26 -0800 (PST) Received: from mail-we0-f178.google.com (mail-we0-f178.google.com [74.125.82.178]) by mx.google.com with ESMTPS id h4si15282432wiz.46.2012.01.30.09.46.26 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 30 Jan 2012 09:46:26 -0800 (PST) Received-SPF: neutral (google.com: 74.125.82.178 is neither permitted nor denied by best guess record for domain of dave.martin@linaro.org) client-ip=74.125.82.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 74.125.82.178 is neither permitted nor denied by best guess record for domain of dave.martin@linaro.org) smtp.mail=dave.martin@linaro.org Received: by werf1 with SMTP id f1so4598138wer.37 for ; Mon, 30 Jan 2012 09:46:26 -0800 (PST) Received: by 10.216.133.71 with SMTP id p49mr9658014wei.8.1327945586463; Mon, 30 Jan 2012 09:46:26 -0800 (PST) Received: from e103592.peterhouse.linaro.org (fw-lnat.cambridge.arm.com. [217.140.96.63]) by mx.google.com with ESMTPS id hc10sm31738518wib.8.2012.01.30.09.46.25 (version=SSLv3 cipher=OTHER); Mon, 30 Jan 2012 09:46:25 -0800 (PST) From: Dave Martin To: linux-arm-kernel@lists.infradead.org, devicetree-discuss@lists.ozlabs.org Cc: patches@linaro.org Subject: [PATCH] ARM: devicetree: Add .dtb files to arch/arm/boot/.gitignore Date: Mon, 30 Jan 2012 17:46:14 +0000 Message-Id: <1327945574-7977-1-git-send-email-dave.martin@linaro.org> X-Mailer: git-send-email 1.7.4.1 Compiled device tree blobs shouldn't be committed in the kernel tree, so ideally git should ignore them. This patch will enable ignoring of any .dtb files which appear in arch/arm/boot/ Signed-off-by: Dave Martin Acked-by: Shawn Guo --- arch/arm/boot/.gitignore | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/.gitignore b/arch/arm/boot/.gitignore index ce1c5ff..3c79f85 100644 --- a/arch/arm/boot/.gitignore +++ b/arch/arm/boot/.gitignore @@ -3,3 +3,4 @@ zImage xipImage bootpImage uImage +*.dtb