From ce3c5b5570c153027589f1247dd5762bc775c6e5 Mon Sep 17 00:00:00 2001 From: Kristoffer Dalby Date: Tue, 9 May 2023 09:18:21 +0200 Subject: [PATCH] release: enable mips and mips64 pkgs for Debian Signed-off-by: Kristoffer Dalby --- release/dist/unixpkgs/targets.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/release/dist/unixpkgs/targets.go b/release/dist/unixpkgs/targets.go index b9f599170..5d2fe7440 100644 --- a/release/dist/unixpkgs/targets.go +++ b/release/dist/unixpkgs/targets.go @@ -87,11 +87,11 @@ var ( "linux/arm": true, "linux/arm64": true, "linux/riscv64": true, - // TODO: maybe mipses, we accidentally started building them at some - // point even though they probably don't work right. - // "linux/mips": true, + "linux/mips": true, + "linux/mips64": true, + // TODO: enable and verify that mips architecture is passed correctly to + // debian. mipsle == mipsel (https://www.debian.org/ports/mips/) // "linux/mipsle": true, - // "linux/mips64": true, // "linux/mips64le": true, }