mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-18 21:16:54 +02:00
Add special case for Ubiquiti routers in platformDefaultHomePath()
This commit is contained in:
parent
0d42108254
commit
54f9f2ad53
2 changed files with 7 additions and 0 deletions
|
@ -85,6 +85,9 @@ endif
|
|||
ifeq ($(ZT_QNAP), 1)
|
||||
override DEFS+=-D__QNAP__
|
||||
endif
|
||||
ifeq ($(ZT_UBIQUITI), 1)
|
||||
override DEFS+=-D__UBIQUITI__
|
||||
endif
|
||||
|
||||
ifeq ($(ZT_SYNOLOGY), 1)
|
||||
override CFLAGS+=-fPIC
|
||||
|
|
|
@ -385,6 +385,10 @@ std::string OSUtils::platformDefaultHomePath()
|
|||
homeDir.erase(std::remove(homeDir.begin(), homeDir.end(), '\n'), homeDir.end());
|
||||
return homeDir;
|
||||
#endif
|
||||
#ifdef __UBIQUITI__
|
||||
// Only persistent location after firmware upgrades
|
||||
return std::string("/config/zerotier-one");
|
||||
#else
|
||||
|
||||
// Check for user-defined environment variable before using defaults
|
||||
#ifdef __WINDOWS__
|
||||
|
|
Loading…
Add table
Reference in a new issue