From ed4c74a23f7dd57e77e8047fbce5a0ef49fe7c43 Mon Sep 17 00:00:00 2001 From: René van Dorst Date: Tue, 13 Feb 2018 12:10:51 +0100 Subject: chacha20poly1305: add mips32 implementation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: René van Dorst --- src/Kbuild | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Kbuild') diff --git a/src/Kbuild b/src/Kbuild index 3569ec3..feb7730 100644 --- a/src/Kbuild +++ b/src/Kbuild @@ -13,6 +13,7 @@ wireguard-$(CONFIG_X86_64) += crypto/chacha20-x86_64.o crypto/poly1305-x86_64.o wireguard-$(CONFIG_ARM) += crypto/chacha20-arm.o crypto/poly1305-arm.o crypto/curve25519-arm.o wireguard-$(CONFIG_ARM64) += crypto/chacha20-arm64.o crypto/poly1305-arm64.o wireguard-$(if $(filter yy,$(CONFIG_MIPS)$(CONFIG_64BIT)),y,n) += crypto/poly1305-mips64.o +wireguard-$(if $(filter yy,$(CONFIG_MIPS)$(CONFIG_CPU_MIPS32_R2)),y,n) += crypto/poly1305-mips.o crypto/chacha20-mips.o include $(src)/compat/Kbuild.include -- cgit v1.2.3-59-g8ed1b