From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-172.mta1.migadu.com (out-172.mta1.migadu.com [95.215.58.172]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 4DDAE32ABD6 for ; Wed, 12 Nov 2025 17:22:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762968178; cv=none; b=i3RDOlIGYdIAsbnUK7OwbttgVmIsC6jJNSnTWg/Ty6CHwdl8X/3kgO79K6WIihyhPeMeNzwP151NqgBAOc3YXhQcQCt3Y4a8YsulGPqEUkMBEgNYdhSkO7kDFNlCXakqGExSR+biNBIHxd2zFJQ0jo4m8uod0V4kUbN6LC2R07c= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762968178; c=relaxed/simple; bh=bEoWiv5FdmGTT2ZzLe91YGRu8E3ImEYoMiGx0htvVBw=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Nnz7j2Qt1gU6nFO6JWWeIu/PoHNHDFUXSiDgIhNgGahNGHw6uqvXuZ2UzbVFlCE97vJfnkVfxnAnsiiBhRhvtXjEBE/JiwHiRWW54p7L4xaZNk7xevsgIhXZ8mM1cks8WDv6JIK1miGrCEYzQC6kk4IlmHqAvhk3o6mdDDwdCdQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=SYwrDJ/g; arc=none smtp.client-ip=95.215.58.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="SYwrDJ/g" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1762968174; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=M/t0VDENjopEu/QVWEvIWb+/nBZVQYPjVs1jeNf6/W4=; b=SYwrDJ/gOrcIwEwsyQd25DFLsIPaHgte6Wc8AeSmH3nQKuGRwCItOkQl16DNRQQoBWj4tt 8yuILtATKnoRXGebPgayTxs3vnvh97RRK9p8jeGsRkJwVu36QQ4b5MeuNiHcZAQWops6lV 5gcCaX8twQ+0D1xp52FKuDhd6e2uGOc= From: Thorsten Blum To: Richard Henderson , Matt Turner , Thorsten Blum Cc: linux-alpha@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH RESEND] alpha/boot: Add .gitignore ignoring vmlinux kernel image Date: Wed, 12 Nov 2025 18:22:42 +0100 Message-ID: <20251112172248.3927-1-thorsten.blum@linux.dev> Precedence: bulk X-Mailing-List: linux-alpha@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT Building the kernel creates the untracked kernel image file 'vmlinux' in 'arch/alpha/boot/' - ignore it by adding a new local .gitignore file. Signed-off-by: Thorsten Blum --- arch/alpha/boot/.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 arch/alpha/boot/.gitignore diff --git a/arch/alpha/boot/.gitignore b/arch/alpha/boot/.gitignore new file mode 100644 index 000000000000..4abc9c8ab7d3 --- /dev/null +++ b/arch/alpha/boot/.gitignore @@ -0,0 +1,2 @@ +# SPDX-License-Identifier: GPL-2.0-only +vmlinux -- 2.51.1