-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: James Hilliard <[email protected]>
- Loading branch information
1 parent
7cca41e
commit eb1f3f5
Showing
5 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
config BR2_PACKAGE_TAILSCALE | ||
bool "tailscale" | ||
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS | ||
select BR2_PACKAGE_HOST_GO | ||
help | ||
The easiest, most secure way to use WireGuard and 2FA. | ||
|
||
https://github.com/tailscale/tailscale |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Locally computed | ||
sha256 2b08140f9391f51e83c0d8b430c33f240d50d1edeac969c124dec59af3e27054 tailscale-1.72.0-go2.tar.gz | ||
sha256 d1ee1c7947d4b2c1963ea214d5324f1d4c89f2f1d0f0224889b4dfb868dad725 LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
################################################################################ | ||
# | ||
# tailscale | ||
# | ||
################################################################################ | ||
|
||
TAILSCALE_VERSION = 1.72.0 | ||
TAILSCALE_SITE = $(call github,tailscale,tailscale,v$(TAILSCALE_VERSION)) | ||
TAILSCALE_LICENSE = BSD-3-Clause | ||
TAILSCALE_LICENSE_FILES = LICENSE | ||
TAILSCALE_GOMOD = tailscale.com | ||
TAILSCALE_BUILD_TARGETS = cmd/tailscale cmd/tailscaled | ||
TAILSCALE_INSTALL_BINS = tailscale tailscaled | ||
TAILSCALE_LDFLAGS = \ | ||
-X tailscale.com/version.longStamp=$(TAILSCALE_VERSION) \ | ||
-X tailscale.com/version.shortStamp=$(TAILSCALE_VERSION) | ||
|
||
define TAILSCALE_LINUX_CONFIG_FIXUPS | ||
$(call KCONFIG_ENABLE_OPT,CONFIG_TUN) | ||
endef | ||
|
||
$(eval $(golang-package)) |