Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5F1DAC46467 for ; Mon, 15 Nov 2021 20:31:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 3FCBA63241 for ; Mon, 15 Nov 2021 20:31:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1351174AbhKOUcK (ORCPT ); Mon, 15 Nov 2021 15:32:10 -0500 Received: from mail.kernel.org ([198.145.29.99]:49952 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240198AbhKOSHS (ORCPT ); Mon, 15 Nov 2021 13:07:18 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id 3445C63393; Mon, 15 Nov 2021 17:43:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1636998205; bh=/55NZjImNU/atzvuV52ntcos8+5XyyBCHHe8S7A3r0I=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=SvgQ4xf9mcuyn2Kfu4s70FT2kuznDFJV0K4ibbNtoVZs7kZ2aBu6T3MU5cWqknj+u OnJVbnCcCeDrZ9f19/ojsrFPzyVR6a1pIxpjEDSMooj3WFOltiT9/Cgzd2glIm9prm /idsXsDQZXAkpIdYetHowMvGpCInWuwhVqE4JTmGF3znG2ujTIbv5O7pQjyqLku3ZK LjSguKhkhbDAWW580G+ZSiaVMm0lZHG9Qj1gL/NZGYuMMZ8hmC3ocab51OHm81+KYC yWtmK4pvsiJsqnjVxRnL9YmgfVdtL1Z93BaSLVhznijekPMBSQp2B43hHJtam5W4Ee mS9UPvwI5oU7g== From: Nathan Chancellor To: Andrew Morton , Brian Cain Cc: linux-hexagon@vger.kernel.org, Nick Desaulniers , linux-kernel@vger.kernel.org, llvm@lists.linux.dev, Nathan Chancellor Subject: [PATCH v2 3/3] hexagon: Ignore vmlinux.lds Date: Mon, 15 Nov 2021 10:42:51 -0700 Message-Id: <20211115174250.1994179-4-nathan@kernel.org> X-Mailer: git-send-email 2.34.0.rc0 In-Reply-To: <20211115174250.1994179-1-nathan@kernel.org> References: <20211115174250.1994179-1-nathan@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org After building allmodconfig, there is an untracked vmlinux.lds file in arch/hexagon/kernel: $ git ls-files . --exclude-standard --others arch/hexagon/kernel/vmlinux.lds Ignore it as all other architectures have. Signed-off-by: Nathan Chancellor --- arch/hexagon/kernel/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 arch/hexagon/kernel/.gitignore diff --git a/arch/hexagon/kernel/.gitignore b/arch/hexagon/kernel/.gitignore new file mode 100644 index 000000000000..c5f676c3c224 --- /dev/null +++ b/arch/hexagon/kernel/.gitignore @@ -0,0 +1 @@ +vmlinux.lds -- 2.34.0.rc0