mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 15:48:48 -04:00
- Introduce WITH_GPIO knob and disable building gpioctl
by default. Most systems do not need it.
This commit is contained in:
parent
c9558efd73
commit
eef93d2fae
2 changed files with 5 additions and 1 deletions
|
|
@ -422,6 +422,7 @@ MK_${var}:= yes
|
|||
BSD_GREP \
|
||||
${_clang_no} \
|
||||
FDT \
|
||||
GPIO \
|
||||
HESIOD \
|
||||
IDEA
|
||||
.if defined(WITH_${var}) && defined(WITHOUT_${var})
|
||||
|
|
|
|||
|
|
@ -27,7 +27,6 @@ SUBDIR= adduser \
|
|||
fwcontrol \
|
||||
getfmac \
|
||||
getpmac \
|
||||
gpioctl \
|
||||
gstat \
|
||||
i2c \
|
||||
ifmcstat \
|
||||
|
|
@ -160,6 +159,10 @@ SUBDIR+= freebsd-update
|
|||
SUBDIR+= gssd
|
||||
.endif
|
||||
|
||||
.if ${MK_GPIO} != "no"
|
||||
SUBDIR+= gpioctl
|
||||
.endif
|
||||
|
||||
.if ${MK_INET6} != "no"
|
||||
SUBDIR+= faithd
|
||||
SUBDIR+= ip6addrctl
|
||||
|
|
|
|||
Loading…
Reference in a new issue