aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/valectl
Commit message (Collapse)AuthorAgeFilesLines
* Update Makefile.depend filesSimon J. Gerraty2024-10-141-0/+16
| | | | | | | After building packages we have a number of new and updated Makefile.depend files Reviewed by: stevek
* valectl(8): explicitly mention network switchesTom Hukins2024-08-301-3/+3
| | | | | | | | | Use the term "network switch" instead of the ambiguous term "switch". Signed-off-by: Tom Hukins <tom@FreeBSD.org> Reviewed by: imp, mhorne MFC after: 3 days Pull Request: https://github.com/freebsd/freebsd-src/pull/1369
* Remove residual blank line at start of MakefileWarner Losh2024-07-151-1/+0
| | | | | | | This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
* Remove $FreeBSD$: two-line nroff patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* Remove $FreeBSD$: one-line .c comment patternWarner Losh2023-08-161-1/+0
| | | | Remove /^/[*/]\s*\$FreeBSD\$.*\n/
* pkgbase: Create a FreeBSD-netmap packageEmmanuel Vadot2023-02-081-0/+1
| | | | | | | | This unbloat FreeBSD-utilities a bit and not everyone uses valectl which is the only in-tree consumer of libnetmap Sponsored by: Beckhoff Automation GmbH & Co. KG Differential Revision: https://reviews.freebsd.org/D38225
* netmap: several typo fixesVincenzo Maffione2021-04-021-4/+4
| | | | No functional changes intended.
* [vale] Fix valectl to compile on a 32-bit platformAdrian Chadd2020-12-301-1/+1
| | | | | | | | This shows up when compiling valectl on a 32 bit platform like i386 and mips32. gcc-6.4 complains about this (-Wint-to-pointer-cast). Reviewed by: vmaffione Differential Revision: https://reviews.freebsd.org/D27814
* netmap: valectl: switch to libnetmapVincenzo Maffione2020-11-222-130/+297
| | | | | | | | | | Use the newer libnetmap (included in base) rather than the older nm_open()/nm_close() defined in netmap_user.h MFC after: 3 days Notes: svn path=/head/; revision=367935
* valectl: fix typo in man pageVincenzo Maffione2020-03-311-2/+2
| | | | | | | | Submitted by: Jose Luis Duran MFC after: 3 days Notes: svn path=/head/; revision=359489
* add valectl to the system commandsVincenzo Maffione2019-10-313-0/+451
The valectl(4) program is used to manage vale(4) switches. Add it to the system commands so that it can be used right away. This program was previously called vale-ctl, and stored in tools/tools/netmap Reviewed by: hrs, bcr, lwhsu, kevans MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D22146 Notes: svn path=/head/; revision=354229