[PATCH] crypto: riscv: add poly1305-core.S to .gitignore

Charles Mirabile posted 1 patch 1 day, 7 hours ago
lib/crypto/riscv/.gitignore | 2 ++
1 file changed, 2 insertions(+)
create mode 100644 lib/crypto/riscv/.gitignore
[PATCH] crypto: riscv: add poly1305-core.S to .gitignore
Posted by Charles Mirabile 1 day, 7 hours ago
poly1305-core.S is an auto-generated file, so it should be ignored.

Fixes: bef9c7559869 ("lib/crypto: riscv/poly1305: Import OpenSSL/CRYPTOGAMS implementation")
Signed-off-by: Charles Mirabile <cmirabil@redhat.com>
---
 lib/crypto/riscv/.gitignore | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 lib/crypto/riscv/.gitignore

diff --git a/lib/crypto/riscv/.gitignore b/lib/crypto/riscv/.gitignore
new file mode 100644
index 000000000000..0d47d4f21c6d
--- /dev/null
+++ b/lib/crypto/riscv/.gitignore
@@ -0,0 +1,2 @@
+# SPDX-License-Identifier: GPL-2.0-only
+poly1305-core.S
-- 
2.43.0
Re: [PATCH] crypto: riscv: add poly1305-core.S to .gitignore
Posted by Eric Biggers 23 hours ago
On Fri, Dec 12, 2025 at 01:47:17PM -0500, Charles Mirabile wrote:
> poly1305-core.S is an auto-generated file, so it should be ignored.
> 
> Fixes: bef9c7559869 ("lib/crypto: riscv/poly1305: Import OpenSSL/CRYPTOGAMS implementation")
> Signed-off-by: Charles Mirabile <cmirabil@redhat.com>
> ---
>  lib/crypto/riscv/.gitignore | 2 ++
>  1 file changed, 2 insertions(+)
>  create mode 100644 lib/crypto/riscv/.gitignore
> 
> diff --git a/lib/crypto/riscv/.gitignore b/lib/crypto/riscv/.gitignore
> new file mode 100644
> index 000000000000..0d47d4f21c6d
> --- /dev/null
> +++ b/lib/crypto/riscv/.gitignore
> @@ -0,0 +1,2 @@
> +# SPDX-License-Identifier: GPL-2.0-only
> +poly1305-core.S
> -- 

Applied to https://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux.git/log/?h=libcrypto-fixes

I added:

    Cc: stable@vger.kernel.org

(Since 6.18 is affected)

- Eric