mirror of https://bitbucket.org/ausocean/av.git
Default dk to zero.
This commit is contained in:
parent
1df780fae1
commit
23f44b4655
|
@ -1,7 +1,7 @@
|
||||||
# Install files and directories required by NetSender clients (such as gpio-netsender, revid-cli, etc.)
|
# Install files and directories required by NetSender clients (such as gpio-netsender, revid-cli, etc.)
|
||||||
# and create a dhcpcd.enter-hook for setting the MAC address.
|
# and create a dhcpcd.enter-hook for setting the MAC address.
|
||||||
# MA and DK can be optionally passed to Make, e.g, for a hard (first-time) installation:
|
# MA and DK can be optionally passed to Make, e.g, for a hard (first-time) installation:
|
||||||
# sudo MA=mac DK=dk hard_install
|
# sudo MA=mac DK=dk install_hard
|
||||||
# NB: The default (soft) install does not override conf files.
|
# NB: The default (soft) install does not override conf files.
|
||||||
USER := $(shell whoami)
|
USER := $(shell whoami)
|
||||||
PATH := /usr/local/go/bin:$(PATH)
|
PATH := /usr/local/go/bin:$(PATH)
|
||||||
|
@ -9,7 +9,7 @@ ifeq ($(MA),)
|
||||||
MA := "00:E0:4C:00:00:01"
|
MA := "00:E0:4C:00:00:01"
|
||||||
endif
|
endif
|
||||||
ifeq ($(DK),)
|
ifeq ($(DK),)
|
||||||
DK := 1
|
DK := 0
|
||||||
endif
|
endif
|
||||||
|
|
||||||
.SILENT:make_dirs
|
.SILENT:make_dirs
|
||||||
|
|
Loading…
Reference in New Issue