1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00
freebsd/usr.bin
Kenneth D. Merry 43518607b2 Significant upgrades to sa(4) and mt(1).
The primary focus of these changes is to modernize FreeBSD's
tape infrastructure so that we can take advantage of some of the
features of modern tape drives and allow support for LTFS.

Significant changes and new features include:

 o sa(4) driver status and parameter information is now exported via an
   XML structure.  This will allow for changes and improvements later
   on that will not break userland applications.  The old MTIOCGET
   status ioctl remains, so applications using the existing interface
   will not break.

 o 'mt status' now reports drive-reported tape position information
   as well as the previously available calculated tape position
   information.  These numbers will be different at times, because
   the drive-reported block numbers are relative to BOP (Beginning
   of Partition), but the block numbers calculated previously via
   sa(4) (and still provided) are relative to the last filemark.
   Both numbers are now provided.  'mt status' now also shows the
   drive INQUIRY information, serial number and any position flags
   (BOP, EOT, etc.) provided with the tape position information.
   'mt status -v' adds information on the maximum possible I/O size,
   and the underlying values used to calculate it.

 o The extra sa(4) /dev entries (/dev/saN.[0-3]) have been removed.

   The extra devices were originally added as place holders for
   density-specific device nodes.  Some OSes (NetBSD, NetApp's OnTap
   and Solaris) have had device nodes that, when you write to them,
   will automatically select a given density for particular tape drives.

   This is a convenient way of switching densities, but it was never
   implemented in FreeBSD.  Only the device nodes were there, and that
   sometimes confused users.

   For modern tape devices, the density is generally not selectable
   (e.g. with LTO) or defaults to the highest availble density when
   the tape is rewritten from BOT (e.g. TS11X0).  So, for most users,
   density selection won't be necessary.  If they do need to select
   the density, it is easy enough to use 'mt density' to change it.

 o Protection information is now supported.  This is either a
   Reed-Solomon CRC or CRC32 that is included at the end of each block
   read and written.  On write, the tape drive verifies the CRC, and
   on read, the tape drive provides a CRC for the userland application
   to verify.

 o New, extensible tape driver parameter get/set interface.

 o Density reporting information.  For drives that support it,
   'mt getdensity' will show detailed information on what formats the
   tape drive supports, and what formats the tape drive supports.

 o Some mt(1) functionality moved into a new mt(3) library so that
   external applications can reuse the code.

 o The new mt(3) library includes helper routines to aid in parsing
   the XML output of the sa(4) driver, and build a tree of driver
   metadata.

 o Support for the MTLOAD (load a tape in the drive) and MTWEOFI
   (write filemark immediate) ioctls needed by IBM's LTFS
   implementation.

 o Improve device departure behavior for the sa(4) driver.  The previous
   implementation led to hangs when the device was open.

 o This has been tested on the following types of drives:
	IBM TS1150
	IBM TS1140
	IBM LTO-6
	IBM LTO-5
	HP LTO-2
	Seagate DDS-4
	Quantum DLT-4000
	Exabyte 8505
	Sony DDS-2

contrib/groff/tmac/doc-syms,
share/mk/bsd.libnames.mk,
lib/Makefile,
	Add libmt.

lib/libmt/Makefile,
lib/libmt/mt.3,
lib/libmt/mtlib.c,
lib/libmt/mtlib.h,
	New mt(3) library that contains functions moved from mt(1) and
	new functions needed to interact with the updated sa(4) driver.

	This includes XML parser helper functions that application writers
	can use when writing code to query tape parameters.

rescue/rescue/Makefile:
	Add -lmt to CRUNCH_LIBS.

src/share/man/man4/mtio.4
	Clarify this man page a bit, and since it contains what is
	essentially the mtio.h header file, add new ioctls and structure
	definitions from mtio.h.

src/share/man/man4/sa.4
	Update BUGS and maintainer section.

sys/cam/scsi/scsi_all.c,
sys/cam/scsi/scsi_all.h:
	Add SCSI SECURITY PROTOCOL IN/OUT CDB definitions and CDB building
	functions.

sys/cam/scsi/scsi_sa.c
sys/cam/scsi/scsi_sa.h
	Many tape driver changes, largely outlined above.

	Increase the sa(4) driver read/write timeout from 4 to 32
	minutes.  This is based on the recommended values for IBM LTO
	5/6 drives.  This may also avoid timeouts for other tape
	hardware that can take a long time to do retries and error
	recovery.  Longer term, a better way to handle this is to ask
	the drive for recommended timeout values using the REPORT
	SUPPORTED OPCODES command.  Modern IBM and Oracle tape drives
	at least support that command, and it would allow for more
	accurate timeout values.

	Add XML status generation.  This is done with a series of
	macros to eliminate as much duplicate code as possible.  The
	new XML-based status values are reported through the new
	MTIOCEXTGET ioctl.

	Add XML driver parameter reporting, using the new MTIOCPARAMGET
	ioctl.

	Add a new driver parameter setting interface, using the new
	MTIOCPARAMSET and MTIOCSETLIST ioctls.

	Add a new MTIOCRBLIM ioctl to get block limits information.

	Add CCB/CDB building routines scsi_locate_16, scsi_locate_10,
	and scsi_read_position_10().

	scsi_locate_10 implements the LOCATE command, as does the
	existing scsi_set_position() command.  It just supports
	additional arguments and features.  If/when we figure out a
	good way to provide backward compatibility for older
	applications using the old function API, we can just revamp
	scsi_set_position().  The same goes for
	scsi_read_position_10() and the existing scsi_read_position()
	function.

	Revamp sasetpos() to take the new mtlocate structure as an
	argument.  It now will use either scsi_locate_10() or
	scsi_locate_16(), depending upon the arguments the user
	supplies.  As before, once we change position we don't have a
	clear idea of what the current logical position of the tape
	drive is.

	For tape drives that support long form position data, we
	read the current position and store that for later reporting
	after changing the position.  This should help applications
	like Bacula speed tape access under FreeBSD once they are
	modified to support the new ioctls.

	Add a new quirk, SA_QUIRK_NO_LONG_POS, that is set for all
	drives that report SCSI-2 or older, as well as drives that
	report an Illegal Request type error for READ POSITION with
	the long format.  So we should automatically detect drives
	that don't support the long form and stop asking for it after
	an initial try.

	Add a partition number to the sa(4) softc.

	Improve device departure handling. The previous implementation
	led to hangs when the device was open.

	If an application had the sa(4) driver open, and attempted to
	close it after it went away, the cam_periph_release() call in
	saclose() would cause the periph to get destroyed because that
	was the last reference to it.  Because destroy_dev() was
	called from the sa(4) driver's cleanup routine (sacleanup()),
	and would block waiting for the close to happen, a deadlock
	would result.

	So instead of calling destroy_dev() from the cleanup routine,
	call destroy_dev_sched_cb() from saoninvalidate() and wait for
	the callback.

	Acquire a reference for devfs in saregister(), and release it
	in the new sadevgonecb() routine when all devfs devices for
	the particular sa(4) driver instance are gone.

	Add a new function, sasetupdev(), to centralize setting
	per-instance devfs device parameters instead of repeating the
	code in saregister().

	Add an open count to the softc, so we know how many
	peripheral driver references are a result of open
       	sessions.

	Add the D_TRACKCLOSE flag to the cdevsw flags so
	that we get a 1:1 mapping of open to close calls
	instead of a N:1 mapping.

	This should be a no-op for everything except the
	control device, since we don't allow more than one
	open on non-control devices.

	However, since we do allow multiple opens on the
	control device, the combination of the open count
	and the D_TRACKCLOSE flag should result in an
	accurate peripheral driver reference count, and an
	accurate open count.

	The accurate open count allows us to release all
	peripheral driver references that are the result
	of open contexts once we get the callback from devfs.

sys/sys/mtio.h:
	Add a number of new mt(4) ioctls and the requisite data
	structures.  None of the existing interfaces been removed
	or changed.

	This includes definitions for the following new ioctls:

	MTIOCRBLIM      /* get block limits */
	MTIOCEXTLOCATE	/* seek to position */
	MTIOCEXTGET     /* get tape status */
	MTIOCPARAMGET	/* get tape params */
	MTIOCPARAMSET	/* set tape params */
	MTIOCSETLIST	/* set N params */

usr.bin/mt/Makefile:
	mt(1) now depends on libmt, libsbuf and libbsdxml.

usr.bin/mt/mt.1:
	Document new mt(1) features and subcommands.

usr.bin/mt/mt.c:
	Implement support for mt(1) subcommands that need to
	use getopt(3) for their arguments.

	Implement a new 'mt status' command to replace the old
	'mt status' command.  The old status command has been
	renamed 'ostatus'.

	The new status function uses the MTIOCEXTGET ioctl, and
	therefore parses the XML data to determine drive status.
	The -x argument to 'mt status' allows the user to dump out
	the raw XML reported by the kernel.

	The new status display is mostly the same as the old status
	display, except that it doesn't print the redundant density
	mode information, and it does print the current partition
	number and position flags.

	Add a new command, 'mt locate', that will supersede the
	old 'mt setspos' and 'mt sethpos' commands.  'mt locate'
	implements all of the functionality of the MTIOCEXTLOCATE
	ioctl, and allows the user to change the logical position
	of the tape drive in a number of ways.  (Partition,
	block number, file number, set mark number, end of data.)
	The immediate bit and the explicit address bits are
	implemented, but not documented in the man page.

	Add a new 'mt weofi' command to use the new MTWEOFI ioctl.
	This allows the user to ask the drive to write a filemark
	without waiting around for the operation to complete.

	Add a new 'mt getdensity' command that gets the XML-based
	tape drive density report from the sa(4) driver and displays
	it.  This uses the SCSI REPORT DENSITY SUPPORT command
	to get comprehensive information from the tape drive about
	what formats it is able to read and write.

	Add a new 'mt protect' command that allows getting and setting
	tape drive protection information.  The protection information
	is a CRC tacked on to the end of every read/write from and to
	the tape drive.

Sponsored by:	Spectra Logic
MFC after:	1 month
2015-02-23 21:59:30 +00:00
..
addr2line Build infrastructure for elftoolchain tools 2014-12-01 17:49:42 +00:00
alias
apply Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
ar ar: Avoid null pointer deref while reading corrupt archives 2015-01-07 01:51:02 +00:00
asa
at Sigh, remove a line that needs to be removed along with previous commit. 2014-09-29 21:54:46 +00:00
atm Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
awk Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
banner
basename Integrate usr.sbin/basename/tests from NetBSD into atf/kyua 2014-10-09 00:41:42 +00:00
bc Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
biff
bluetooth Merge from projects/sendfile: 2014-11-30 12:52:33 +00:00
bmake Update to bmake-20140620 2014-07-08 22:27:50 +00:00
brandelf use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
bsdiff Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
bzip2 Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
bzip2recover NO_MAN= has been deprecated in favor of MAN= for some time, go ahead 2014-04-13 05:21:56 +00:00
c89
c99
calendar Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
cap_mkdb
catman
chat
checknr
chkey Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
chpass Partially revert 278642 2015-02-13 07:51:26 +00:00
cksum
clang Add the llvm-symbolizer tool, which enables the sanitizers to report 2015-01-10 22:22:42 +00:00
cmp Integrate usr.bin/cmp/tests from NetBSD into atf/kyua 2014-10-09 00:50:33 +00:00
col Fix to col when printing half-line feeds w/ -f option... 2014-10-17 21:09:03 +00:00
colcrt
colldef Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
colrm
column
comm Use src.opts.mk in preference to bsd.own.mk except where we need stuff 2014-05-06 04:22:01 +00:00
compile_et Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
compress compress,gzip,xz: Preserve timestamps with nanosecond precision. 2015-02-17 13:12:54 +00:00
cpio Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
cpuset Document CPU_WHICH_DOMAIN and bump Dd for cpuset.1. 2015-01-08 18:53:11 +00:00
csplit Correct example. 2014-02-08 13:29:35 +00:00
ctags
ctlstat Fix couple issues in ctlstat header printing. 2015-02-07 17:53:47 +00:00
cut Integrate usr.bin/cut/tests from NetBSD into atf/kyua 2014-10-09 01:46:31 +00:00
dc Init array field in the proper place. 2014-11-27 01:37:01 +00:00
demandoc Forgot to convert demandoc along with mandoc 2014-11-24 23:29:56 +00:00
dirname Integrate usr.bin/dirname/tests from NetBSD into atf/kyua 2014-10-09 00:55:04 +00:00
dpv mdoc: sort SEE ALSO. 2014-12-26 21:56:23 +00:00
drill Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
dtc dtc: ignore lines starting with #. 2014-06-10 06:16:34 +00:00
du du(1): replace malloc + memset with calloc. 2015-02-17 21:12:45 +00:00
ee Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
elf2aout use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
elfcopy Build infrastructure for elftoolchain tools 2014-12-01 17:49:42 +00:00
elfdump Limit descriptors and enter capability mode. 2014-11-24 09:31:38 +00:00
enigma Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
env
expand
false
fetch Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
file Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
file2c Use src.opts.mk in preference to bsd.own.mk except where we need stuff 2014-05-06 04:22:01 +00:00
find Correct scale factor for T terabyte suffix 2014-10-08 17:40:58 +00:00
finger
fmt
fold
from Add static where appropriate. 2013-11-21 21:19:01 +00:00
fstat Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
fsync
ftp Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
gcore Include OBJT_PHYS VM objects in ELF core dumps. In particular this 2015-02-14 17:12:31 +00:00
gencat
getconf use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
getent
getopt
gprof Remove ia64. 2014-07-07 00:27:09 +00:00
grep Create MANLINKS for lzgrep, etc when MK_LZMA_SUPPORT != no 2015-01-30 18:07:46 +00:00
gzip compress,gzip,xz: Preserve timestamps with nanosecond precision. 2015-02-17 13:12:54 +00:00
head
hesinfo
hexdump fix spelling of offset since that is what is used in the body... 2014-10-30 06:54:25 +00:00
host Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
iconv Nothing in iconv(1) uses symbols from libcrypt 2014-11-05 14:55:01 +00:00
id Adjust printf format specifiers for dev_t and ino_t in user space. 2014-12-17 07:10:48 +00:00
indent multiple: Remove 3rd clause from BSD license where approved by the 2014-03-14 03:07:51 +00:00
ipcrm Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
ipcs Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
iscsictl Make it possible to set (via iscsi.conf(5)) and query (via iscsictl -v) 2015-02-05 06:37:59 +00:00
join Use src.opts.mk in preference to bsd.own.mk except where we need stuff 2014-05-06 04:22:01 +00:00
jot Use src.opts.mk in preference to bsd.own.mk except where we need stuff 2014-05-06 04:22:01 +00:00
kdump kdump: sendfile(2) "flags" argument needs casting on 64-bit platforms. 2015-02-16 17:19:28 +00:00
keylogin Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
keylogout
killall Adjust printf format specifiers for dev_t and ino_t in user space. 2014-12-17 07:10:48 +00:00
ktrace Clarify that the -c argument clears the list of tracepoints specified by 2014-08-26 21:21:57 +00:00
ktrdump Change ktrdump to use the more standard -M/-N flags to specify the path 2015-02-06 19:41:23 +00:00
lam
last mdoc: sort SEE ALSO. 2014-12-26 21:56:23 +00:00
lastcomm Use src.opts.mk in preference to bsd.own.mk except where we need stuff 2014-05-06 04:22:01 +00:00
ldd use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
leave
less Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
lessecho
lesskey
lex Add a ${CP} alias for copying files in the build. 2015-01-16 21:39:08 +00:00
limits Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
locale
locate Fix the following -Werror warnings from clang 3.5.0, while building 2014-11-22 12:13:05 +00:00
lock Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
lockf use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
logger Use src.opts.mk in preference to bsd.own.mk except where we need stuff 2014-05-06 04:22:01 +00:00
login Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
logins use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
logname
look look: implement long options 2014-07-04 04:47:29 +00:00
lorder
lsvfs
lzmainfo Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
m4 Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
mail Always check the limits of array index variables before using them. 2014-08-21 02:40:33 +00:00
make Add a ${CP} alias for copying files in the build. 2015-01-16 21:39:08 +00:00
makewhatis Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
man Only manpages with fatal errors should be rendered by groff(1) 2015-01-03 23:39:44 +00:00
mandoc Update mandoc to 1.13.2 2014-12-25 21:56:56 +00:00
mesg mesg: remove advertising clause 2014-05-11 02:04:40 +00:00
minigzip Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
ministat ministat(1): replace malloc + memset with calloc. 2015-02-17 23:20:19 +00:00
mkcsmapper mdoc: sort SEE ALSO. 2014-12-26 21:56:23 +00:00
mkcsmapper_static NO_MAN= has been deprecated in favor of MAN= for some time, go ahead 2014-04-13 05:21:56 +00:00
mkdep
mkesdb mdoc: sort SEE ALSO. 2014-12-26 21:56:23 +00:00
mkesdb_static NO_MAN= has been deprecated in favor of MAN= for some time, go ahead 2014-04-13 05:21:56 +00:00
mkfifo
mkimg Add the -c option for specifying the capacity of the disk image. When 2015-02-22 04:50:47 +00:00
mklocale
mkstr
mktemp
mkulzma Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
mkuzip Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
msgs Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
mt Significant upgrades to sa(4) and mt(1). 2015-02-23 21:59:30 +00:00
nc Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
ncal Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
netstat Document that netstat(1) supports libxo(3). 2015-02-22 00:01:42 +00:00
newgrp Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
newkey Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
nfsstat Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
nice
nl Treat the '-' as meaning standard input. 2014-05-04 12:20:40 +00:00
nm Build infrastructure for elftoolchain tools 2014-12-01 17:49:42 +00:00
nohup
opieinfo Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
opiekey Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
opiepasswd Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
pagesize
pamtest Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
passwd Revert r278642 2015-02-13 09:02:15 +00:00
paste
patch Fixes to exit status. 2014-12-31 16:30:33 +00:00
pathchk pathchk: Ensure bytes >= 128 are considered non-portable characters. 2013-10-20 20:10:31 +00:00
perror
pr multiple: Remove 3rd clause from BSD license where approved by the 2014-03-14 03:07:51 +00:00
printenv
printf printf: Install tests/regress.missingpos1.out, fixing tests. 2014-06-01 13:33:22 +00:00
procstat Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
protect Correct stale comments. 2013-09-20 16:05:09 +00:00
quota Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
rctl Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
readelf Add Makefile for elftoolchain readelf(1) 2015-01-02 22:26:54 +00:00
renice
rev
revoke use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
rlogin
rpcgen Fix some rpcgen sample file issues. 2014-06-06 17:38:37 +00:00
rpcinfo Use INADDR_NONE instead of -1 to check inet_addr() result. 2013-10-15 07:37:30 +00:00
rs
rsh
rup mdoc: sort SEE ALSO. 2014-12-26 21:56:23 +00:00
ruptime
rusers mdoc: sort SEE ALSO. 2014-12-26 21:56:23 +00:00
rwall mdoc: sort SEE ALSO. 2014-12-26 21:56:23 +00:00
rwho Update most userspace consumers of capability.h to use capsicum.h instead. 2014-03-16 11:04:44 +00:00
script mdoc: sort SEE ALSO. 2014-12-26 21:56:23 +00:00
sed sed: fix pasto from previous r277802. 2015-01-27 19:46:19 +00:00
send-pr Add a stub send-pr that simply points people towards the online support 2014-06-17 12:59:03 +00:00
seq Sync with NetBSD, mainly address NetBSD bug #43355: 2014-12-18 20:23:19 +00:00
setchannel mdoc: sort SEE ALSO. 2014-12-26 21:56:23 +00:00
shar
showmount mdoc: sort SEE ALSO. 2014-12-26 21:56:23 +00:00
size Build infrastructure for elftoolchain tools 2014-12-01 17:49:42 +00:00
smbutil Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
sockstat use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
soeliminate mdoc: remove EOL whitespace. 2014-12-29 13:50:59 +00:00
sort mdoc: use An macro. 2015-01-04 12:42:08 +00:00
split Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
ssh-copy-id use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
stat use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
stdbuf
strings Build infrastructure for elftoolchain tools 2014-12-01 17:49:42 +00:00
su Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
svn Reduce number of lines to set ORGANIZATION_NAME in 2015-02-12 00:17:14 +00:00
systat Merge from projects/sendfile: 2014-11-30 12:52:33 +00:00
tabs Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
tail
talk Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
tar Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
tcopy
tee
telnet Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
tests Migrate most of tools/regression/usr.bin/ to the new tests layout. 2014-03-16 08:04:06 +00:00
tftp Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
time
timeout timeout: handle zombie grandchildren 2015-02-15 20:10:53 +00:00
tip
top Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
touch touch: Fix some subtle bugs related to NULL times fallback: 2015-02-15 21:28:00 +00:00
tput Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
tr Use src.opts.mk in preference to bsd.own.mk except where we need stuff 2014-05-06 04:22:01 +00:00
true
truncate Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
truss The current POSIX semaphore implementation stores the _has_waiters flag 2014-10-24 20:02:44 +00:00
tset Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
tsort
tty
ul Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
uname Change introduction history. 2013-11-20 17:48:38 +00:00
unexpand NO_MAN= has been deprecated in favor of MAN= for some time, go ahead 2014-04-13 05:21:56 +00:00
unifdef use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
uniq Update most userspace consumers of capability.h to use capsicum.h instead. 2014-03-16 11:04:44 +00:00
units Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
unvis
unzip Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
usbhidaction Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
usbhidctl Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
users Unbreak the build by re-enabling exceptions. 2014-07-14 12:24:38 +00:00
uudecode Use src.opts.mk in preference to bsd.own.mk except where we need stuff 2014-05-06 04:22:01 +00:00
uuencode Use src.opts.mk in preference to bsd.own.mk except where we need stuff 2014-05-06 04:22:01 +00:00
vacation Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
vgrind NO_MAN= has been deprecated in favor of MAN= for some time, go ahead 2014-04-13 05:21:56 +00:00
vi MF projects/building-blocks r275198: 2014-11-29 06:53:06 +00:00
vis
vmstat Use clock_gettime to measure the time that we spent asleep during 2015-01-23 16:21:31 +00:00
vtfontcvt vtfontcvt will first ship in FreeBSD 10.1 2014-07-24 15:16:03 +00:00
w Add xo_finish() to w.c in case it's invoked as uptime 2015-02-10 22:23:52 +00:00
wall
wc Close the file list before opening the container that holds the 2015-02-11 17:56:24 +00:00
what
whereis Step 1 of eliminating the "games" distribution: Move binaries to /usr/bin; 2015-02-12 05:35:00 +00:00
which use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
who
whois Introduce $RA_SERVER to set default whois server. 2014-06-25 15:39:08 +00:00
write
xargs Use src.opts.mk in preference to bsd.own.mk except where we need stuff 2014-05-06 04:22:01 +00:00
xinstall Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
xlint Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
xo Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
xstr
xz Merge xz 5.2.0. 2015-02-09 06:20:34 +00:00
xzdec Convert to usr.bin/ to LIBADD 2014-11-25 14:29:10 +00:00
yacc Increase MAXTABLE to the maxmimum possible value. The default value is too 2014-11-13 00:46:53 +00:00
yes mdoc: drop the trailing dot from the xref list. 2014-06-05 08:20:14 +00:00
ypcat use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
ypmatch use .Mt to mark up email addresses consistently (part3) 2014-06-23 08:23:05 +00:00
ypwhich
Makefile Add MK_FILE to control whether or not to build file(1), libmagic(3), etc 2015-02-04 10:24:40 +00:00
Makefile.amd64
Makefile.arm
Makefile.i386
Makefile.inc
Makefile.powerpc
Makefile.sparc64