We previously had two GOARCH variants for natlab testing (gokrazy/natlabapp and gokrazy/natlabapp.arm64), but we didn't have those variants for the "tsapp" (production, not testing) variant. This adds arm64 for tsapp too. But there are two major users of arm64 for gokrazy: Raspberry Pis, and cloud VMs. So make two variants. Updates #1866 Change-Id: Ib9efaf1255101e3cdbc31d49c76fd86dcba21bb1 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
19 lines
505 B
Go
19 lines
505 B
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build for_go_mod_tidy_only
|
|
|
|
package gokrazydeps
|
|
|
|
import (
|
|
_ "github.com/gokrazy/breakglass"
|
|
_ "github.com/gokrazy/gokrazy/cmd/dhcp"
|
|
_ "github.com/gokrazy/gokrazy/cmd/ntp"
|
|
_ "github.com/gokrazy/gokrazy/cmd/randomd"
|
|
_ "github.com/gokrazy/kernel.arm64"
|
|
_ "github.com/gokrazy/serial-busybox"
|
|
_ "github.com/tailscale/ts-gokrazy/gokrazyinit"
|
|
_ "tailscale.com/cmd/tailscale"
|
|
_ "tailscale.com/cmd/tailscaled"
|
|
)
|