release: enable mipsle and mips64le pkgs for Debian
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>kristoffer/enable-mips-pkgs
parent
ce3c5b5570
commit
ca3048e41e
|
@ -354,6 +354,10 @@ func debArch(arch string) string {
|
||||||
// can ship more than 1 ARM deb, so for now match redo's behavior of
|
// can ship more than 1 ARM deb, so for now match redo's behavior of
|
||||||
// shipping armv5 binaries in an armv7 trenchcoat.
|
// shipping armv5 binaries in an armv7 trenchcoat.
|
||||||
return "armhf"
|
return "armhf"
|
||||||
|
case "mipsle":
|
||||||
|
return "mipsel"
|
||||||
|
case "mips64le":
|
||||||
|
return "mips64el"
|
||||||
default:
|
default:
|
||||||
return arch
|
return arch
|
||||||
}
|
}
|
||||||
|
|
|
@ -82,17 +82,15 @@ var (
|
||||||
}
|
}
|
||||||
|
|
||||||
debs = map[string]bool{
|
debs = map[string]bool{
|
||||||
"linux/386": true,
|
"linux/386": true,
|
||||||
"linux/amd64": true,
|
"linux/amd64": true,
|
||||||
"linux/arm": true,
|
"linux/arm": true,
|
||||||
"linux/arm64": true,
|
"linux/arm64": true,
|
||||||
"linux/riscv64": true,
|
"linux/riscv64": true,
|
||||||
"linux/mips": true,
|
"linux/mips": true,
|
||||||
"linux/mips64": true,
|
"linux/mips64": true,
|
||||||
// TODO: enable and verify that mips architecture is passed correctly to
|
"linux/mipsle": true,
|
||||||
// debian. mipsle == mipsel (https://www.debian.org/ports/mips/)
|
"linux/mips64le": true,
|
||||||
// "linux/mipsle": true,
|
|
||||||
// "linux/mips64le": true,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
rpms = map[string]bool{
|
rpms = map[string]bool{
|
||||||
|
|
Loading…
Reference in New Issue