mirror of
https://github.com/tailscale/tailscale.git
synced 2024-12-05 07:55:36 +00:00
release: enable mipsle and mips64le pkgs for Debian
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
parent
ce3c5b5570
commit
ca3048e41e
4
release/dist/unixpkgs/pkgs.go
vendored
4
release/dist/unixpkgs/pkgs.go
vendored
@ -354,6 +354,10 @@ func debArch(arch string) string {
|
||||
// can ship more than 1 ARM deb, so for now match redo's behavior of
|
||||
// shipping armv5 binaries in an armv7 trenchcoat.
|
||||
return "armhf"
|
||||
case "mipsle":
|
||||
return "mipsel"
|
||||
case "mips64le":
|
||||
return "mips64el"
|
||||
default:
|
||||
return arch
|
||||
}
|
||||
|
20
release/dist/unixpkgs/targets.go
vendored
20
release/dist/unixpkgs/targets.go
vendored
@ -82,17 +82,15 @@ func Targets() []dist.Target {
|
||||
}
|
||||
|
||||
debs = map[string]bool{
|
||||
"linux/386": true,
|
||||
"linux/amd64": true,
|
||||
"linux/arm": true,
|
||||
"linux/arm64": true,
|
||||
"linux/riscv64": 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/mips64le": true,
|
||||
"linux/386": true,
|
||||
"linux/amd64": true,
|
||||
"linux/arm": true,
|
||||
"linux/arm64": true,
|
||||
"linux/riscv64": true,
|
||||
"linux/mips": true,
|
||||
"linux/mips64": true,
|
||||
"linux/mipsle": true,
|
||||
"linux/mips64le": true,
|
||||
}
|
||||
|
||||
rpms = map[string]bool{
|
||||
|
Loading…
Reference in New Issue
Block a user