mirror of
https://github.com/tailscale/tailscale.git
synced 2025-06-10 09:48:35 +00:00

Updates #12614 Change-Id: I0e2a18eca3515d3d6206c059110556d2bbbb0c5c Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
18 lines
301 B
Go
18 lines
301 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !linux || android
|
|
|
|
package ethtool
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"tailscale.com/types/logger"
|
|
)
|
|
|
|
func ethtoolImpl(logf logger.Logf) error {
|
|
logf("unsupported on %s/%s", runtime.GOOS, runtime.GOARCH)
|
|
return nil
|
|
}
|