mirror of
https://github.com/opnsense/src.git
synced 2026-06-07 07:42:26 -04:00
wlanstats is an incredible tool to get a quick overview of state of affairs of wireless by looking at the counters. And it makes it simple. Having landed the LinuxKPI HW_CRYPTO bits I was asked by users what to check and I realised the answer is in wlanstats. It is annoying even as a developer to manually build it for each installation but given it's also useful to users and support make it available with the general installation. Probably very long overdue. Adjust the Makefile and make build again on main. Hook it up to the build conditional on MK_WIRELESS. Discussed with: adrian Sponsored by: The FreeBSD Foundation TODO: man page MFC after: 3 days
226 lines
4.4 KiB
Makefile
226 lines
4.4 KiB
Makefile
.include <src.opts.mk>
|
|
|
|
SUBDIR= adduser \
|
|
arp \
|
|
binmiscctl \
|
|
boottrace \
|
|
bsdconfig \
|
|
camdd \
|
|
cdcontrol \
|
|
chkgrp \
|
|
chown \
|
|
chroot \
|
|
ckdist \
|
|
clear_locks \
|
|
crashinfo \
|
|
cron \
|
|
daemon \
|
|
dconschat \
|
|
devctl \
|
|
devinfo \
|
|
diskinfo \
|
|
dumpcis \
|
|
etcupdate \
|
|
extattr \
|
|
extattrctl \
|
|
fifolog \
|
|
fstyp \
|
|
fwcontrol \
|
|
fwget \
|
|
getfmac \
|
|
getpmac \
|
|
gstat \
|
|
i2c \
|
|
ifmcstat \
|
|
iostat \
|
|
iovctl \
|
|
kldxref \
|
|
mailwrapper \
|
|
makefs \
|
|
memcontrol \
|
|
mfiutil \
|
|
mixer \
|
|
mlxcontrol \
|
|
mountd \
|
|
mount_smbfs \
|
|
mpsutil \
|
|
mptutil \
|
|
mtest \
|
|
newsyslog \
|
|
nfscbd \
|
|
nfsd \
|
|
nfsdumpstate \
|
|
nfsrevoke \
|
|
nfsuserd \
|
|
nmtree \
|
|
nologin \
|
|
nvmfd \
|
|
pciconf \
|
|
periodic \
|
|
pnfsdscopymr \
|
|
pnfsdsfile \
|
|
pnfsdskill \
|
|
powerd \
|
|
prometheus_sysctl_exporter \
|
|
pstat \
|
|
pw \
|
|
pwd_mkdb \
|
|
pwm \
|
|
quot \
|
|
rarpd \
|
|
rmt \
|
|
rpcbind \
|
|
rpc.lockd \
|
|
rpc.statd \
|
|
rpc.umntall \
|
|
rtprio \
|
|
rwhod \
|
|
service \
|
|
services_mkdb \
|
|
sesutil \
|
|
setfib \
|
|
setfmac \
|
|
setpmac \
|
|
smbmsg \
|
|
snapinfo \
|
|
spi \
|
|
spray \
|
|
syslogd \
|
|
sysrc \
|
|
tcpdrop \
|
|
tcpdump \
|
|
tcpsso \
|
|
traceroute \
|
|
trim \
|
|
tzsetup \
|
|
ugidfw \
|
|
valectl \
|
|
vigr \
|
|
vipw \
|
|
wake \
|
|
watch \
|
|
watchdogd \
|
|
zdump \
|
|
zic \
|
|
zonectl
|
|
|
|
# NB: keep these sorted by MK_* knobs
|
|
|
|
SUBDIR.${MK_ACCT}+= accton
|
|
SUBDIR.${MK_ACCT}+= sa
|
|
SUBDIR.${MK_AUDIT}+= audit
|
|
SUBDIR.${MK_AUDIT}+= auditd
|
|
.if ${MK_OPENSSL} != "no"
|
|
SUBDIR.${MK_AUDIT}+= auditdistd
|
|
.endif
|
|
SUBDIR.${MK_AUDIT}+= auditreduce
|
|
SUBDIR.${MK_AUDIT}+= praudit
|
|
SUBDIR.${MK_AUTHPF}+= authpf
|
|
SUBDIR.${MK_AUTOFS}+= autofs
|
|
SUBDIR.${MK_BLACKLIST}+= blacklistctl
|
|
SUBDIR.${MK_BLACKLIST}+= blacklistd
|
|
SUBDIR.${MK_BLUETOOTH}+= bluetooth
|
|
SUBDIR.${MK_BOOTPARAMD}+= bootparamd
|
|
SUBDIR.${MK_BSDINSTALL}+= bsdinstall
|
|
SUBDIR.${MK_BSNMP}+= bsnmpd
|
|
.if ${MK_CAROOT} != "no"
|
|
SUBDIR.${MK_OPENSSL}+= certctl
|
|
.endif
|
|
SUBDIR.${MK_CXGBETOOL}+= cxgbetool
|
|
SUBDIR.${MK_EFI}+= efivar efidp efibootmgr efitable efiwake
|
|
.if ${MK_OPENSSL} != "no"
|
|
SUBDIR.${MK_EFI}+= uefisign
|
|
.endif
|
|
SUBDIR.${MK_FDT}+= ofwdump
|
|
SUBDIR.${MK_FLOPPY}+= fdcontrol
|
|
SUBDIR.${MK_FLOPPY}+= fdformat
|
|
SUBDIR.${MK_FLOPPY}+= fdread
|
|
SUBDIR.${MK_FLOPPY}+= fdwrite
|
|
SUBDIR.${MK_FREEBSD_UPDATE}+= freebsd-update
|
|
SUBDIR.${MK_GSSAPI}+= gssd
|
|
SUBDIR.${MK_GPIO}+= gpioctl
|
|
SUBDIR.${MK_HYPERV}+= hyperv
|
|
SUBDIR.${MK_INET6}+= ip6addrctl
|
|
SUBDIR.${MK_INET6}+= mld6query
|
|
SUBDIR.${MK_INET6}+= ndp
|
|
SUBDIR.${MK_INET6}+= rip6query
|
|
SUBDIR.${MK_INET6}+= route6d
|
|
SUBDIR.${MK_INET6}+= rrenumd
|
|
SUBDIR.${MK_INET6}+= rtadvctl
|
|
SUBDIR.${MK_INET6}+= rtadvd
|
|
SUBDIR.${MK_INET6}+= rtsold
|
|
SUBDIR.${MK_INET6}+= traceroute6
|
|
SUBDIR.${MK_INETD}+= inetd
|
|
SUBDIR.${MK_IPFW}+= ipfwpcap
|
|
SUBDIR.${MK_ISCSI}+= ctladm ctld iscsid
|
|
SUBDIR.${MK_JAIL}+= jail
|
|
SUBDIR.${MK_JAIL}+= jexec
|
|
SUBDIR.${MK_JAIL}+= jls
|
|
# XXX MK_SYSCONS
|
|
SUBDIR.${MK_LEGACY_CONSOLE}+= kbdcontrol
|
|
SUBDIR.${MK_LEGACY_CONSOLE}+= kbdmap
|
|
SUBDIR.${MK_LEGACY_CONSOLE}+= moused
|
|
SUBDIR.${MK_LEGACY_CONSOLE}+= vidcontrol
|
|
SUBDIR.${MK_PPP}+= pppctl
|
|
SUBDIR.${MK_NS_CACHING}+= nscd
|
|
SUBDIR.${MK_LPR}+= lpr
|
|
SUBDIR.${MK_MAN_UTILS}+= manctl
|
|
SUBDIR.${MK_MLX5TOOL}+= mlx5tool
|
|
SUBDIR.${MK_NETGRAPH}+= flowctl
|
|
SUBDIR.${MK_NETGRAPH}+= ngctl
|
|
SUBDIR.${MK_NETGRAPH}+= nghook
|
|
SUBDIR.${MK_NIS}+= rpc.yppasswdd
|
|
SUBDIR.${MK_NIS}+= rpc.ypupdated
|
|
SUBDIR.${MK_NIS}+= rpc.ypxfrd
|
|
SUBDIR.${MK_NIS}+= ypbind
|
|
SUBDIR.${MK_NIS}+= ypldap
|
|
SUBDIR.${MK_NIS}+= yp_mkdb
|
|
SUBDIR.${MK_NIS}+= yppoll
|
|
SUBDIR.${MK_NIS}+= yppush
|
|
SUBDIR.${MK_NIS}+= ypserv
|
|
SUBDIR.${MK_NIS}+= ypset
|
|
SUBDIR.${MK_NTP}+= ntp
|
|
SUBDIR.${MK_OPENSSL_KTLS}+= rpc.tlsclntd
|
|
SUBDIR.${MK_OPENSSL_KTLS}+= rpc.tlsservd
|
|
SUBDIR.${MK_PF}+= ftp-proxy
|
|
SUBDIR.${MK_PKGBOOTSTRAP}+= pkg
|
|
SUBDIR.${MK_PMC}+= pmc pmcannotate pmccontrol pmcstat pmcstudy
|
|
SUBDIR.${MK_PPP}+= ppp
|
|
SUBDIR.${MK_QUOTAS}+= edquota
|
|
SUBDIR.${MK_QUOTAS}+= quotaon
|
|
SUBDIR.${MK_QUOTAS}+= repquota
|
|
SUBDIR.${MK_SENDMAIL}+= editmap
|
|
SUBDIR.${MK_SENDMAIL}+= mailstats
|
|
SUBDIR.${MK_SENDMAIL}+= makemap
|
|
SUBDIR.${MK_SENDMAIL}+= praliases
|
|
SUBDIR.${MK_SENDMAIL}+= sendmail
|
|
SUBDIR.${MK_TCP_WRAPPERS}+= tcpdchk
|
|
SUBDIR.${MK_TCP_WRAPPERS}+= tcpdmatch
|
|
SUBDIR.${MK_TOOLCHAIN}+= config
|
|
SUBDIR.${MK_TOOLCHAIN}+= crunch
|
|
SUBDIR.${MK_UNBOUND}+= unbound
|
|
SUBDIR.${MK_USB}+= uathload
|
|
SUBDIR.${MK_USB}+= uhsoctl
|
|
SUBDIR.${MK_USB}+= usbconfig
|
|
SUBDIR.${MK_USB}+= usbdump
|
|
SUBDIR.${MK_UTMPX}+= ac
|
|
SUBDIR.${MK_UTMPX}+= lastlogin
|
|
SUBDIR.${MK_UTMPX}+= utx
|
|
SUBDIR.${MK_WIRELESS}+= wlandebug
|
|
SUBDIR.${MK_WIRELESS}+= wlanstats
|
|
SUBDIR.${MK_WIRELESS}+= wpa
|
|
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.arch.inc.mk>
|
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
# Add architecture-specific manpages
|
|
# to be included anyway
|
|
MAN= apmd/apmd.8 \
|
|
nvram/nvram.8
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.include <bsd.subdir.mk>
|