diff options
author | Navdeep Parhar <np@FreeBSD.org> | 2017-03-03 03:11:58 +0000 |
---|---|---|
committer | Navdeep Parhar <np@FreeBSD.org> | 2017-03-03 03:11:58 +0000 |
commit | 54912308c8cf41f59bc0cc29d107975896bdc7dd (patch) | |
tree | 72a0437b09761d429b487b1a480e3a9b98ef62d2 /targets/pseudo/userland | |
parent | 401032c67d5b3bfd8b710cd0909190399604ce20 (diff) | |
download | src-54912308c8cf41f59bc0cc29d107975896bdc7dd.tar.gz src-54912308c8cf41f59bc0cc29d107975896bdc7dd.zip |
Add cxgbetool(8) to the base system.
Move cxgbetool from tools/tools to usr.sbin. Compile and install it on
platforms where cxgbe(4) is built by default. Knobs (WITH_CXGBETOOL and
WITHOUT_CXGBETOOL) have been added so that the user can override the
default setting.
Reviewed by: ngie@, gnn@, bdrewery@
MFC after: 1 month
Sponsored by: Chelsio Communications
Differential Revision: https://reviews.freebsd.org/D9854
Notes
Notes:
svn path=/head/; revision=314579
Diffstat (limited to 'targets/pseudo/userland')
-rw-r--r-- | targets/pseudo/userland/Makefile.depend | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/targets/pseudo/userland/Makefile.depend b/targets/pseudo/userland/Makefile.depend index 1201a233c36d..43fe71d61984 100644 --- a/targets/pseudo/userland/Makefile.depend +++ b/targets/pseudo/userland/Makefile.depend @@ -895,6 +895,10 @@ DIRDEPS+= \ usr.sbin/blacklistd .endif +.if ${MK_CXGBETOOL} != "no" +DIRDEPS+= usr.sbin/cxgbetool +.endif + .if ${MK_GPL_DTC} != "yes" DIRDEPS+= usr.bin/dtc .endif |