summaryrefslogtreecommitdiffstats
path: root/usr.sbin/snapinfo
Commit message (Collapse)AuthorAgeFilesLines
* Add META_MODE support.sjg2015-06-131-0/+19
|\ | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp
| * dirdeps.mk now sets DEP_RELDIRsjg2015-06-081-2/+0
| |
| * Merge sync of headsjg2015-05-271-3/+2
| |\ | |/ |/|
| * Merge head from 7/28sjg2014-08-191-1/+1
| |\
| * | Updated dependenciessjg2014-05-161-1/+0
| | |
| * | Updated dependenciessjg2014-05-101-0/+2
| | |
| * | Updated dependenciessjg2013-03-111-0/+1
| | |
| * | Updated dependenciessjg2013-02-161-2/+0
| | |
| | |
| | \
| *-. \ Sync from headsjg2012-11-041-1/+2
| |\ \ \
| * | | | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.marcel2012-08-221-0/+20
| | |/ / | |/| | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net>
* | | | Convert usr.sbin to LIBADDbapt2014-11-251-3/+2
| |_|/ |/| | | | | | | | Reduce overlinking
* | | use .Mt to mark up email addresses consistently (part2)bapt2014-06-201-1/+1
| |/ |/| | | | | | | PR: 191174 Submitted by: Franco Fichtner <franco@lastsummer.de>
* | Fix usr.bin/ and usr.sbin/ build with a 64-bit ino_t.mdf2012-09-271-1/+2
|/ | | | Original code by: Gleb Kurtsou
* Mark global functions and/or variables in snapinfo(8) static where possible.ed2011-11-061-11/+12
| | | | This allows compilers and static analyzers to do more thorough analysis.
* mdoc: consistently spell our email addresses <foo@FreeBSD.org>uqs2010-05-191-1/+1
| | | | Reviewed by: ru
* Mark ftwv as __unused. This compare function does not need it.ed2010-01-021-1/+1
|
* Imagine a situation where:pjd2007-03-161-4/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # ls -ld /mnt/{foo,bar} drwxr-xr-x 3 root wheel 512 Mar 16 06:56 /mnt/bar lrwxr-xr-x 1 root wheel 3 Mar 16 12:10 /mnt/foo -> bar # grep /mnt/foo /etc/fstab /dev/da1 /mnt/foo ufs rw 0 0 Which means, we give symbolic link as a mount point to mount(8), but mount(8) use realpath(3) before mounting the file systems, so we get: # mount | grep /dev/da1 /dev/da1 on /mnt/bar (ufs, local) Before the commit: # snapinfo /mnt/foo usage: snapinfo [-v] -a snapinfo [-v] mountpoint # snapinfo /mnt/bar /mnt/bar/snap This commit makes snapinfo(8) to first realpath(3) the given mount point and now we have: # snapinfo /mnt/foo /mnt/bar/snap # snapinfo /mnt/bar /mnt/bar/snap
* Pass special device to the ufs_disk_fillout() function, instead of mountpjd2007-03-161-12/+9
| | | | | | point path. This way we properly handle the case when file system listed in /etc/fstab was unmounted and another file system was mounted on the same mount point.
* Fix version number when the feature was added.hrs2006-03-231-1/+1
| | | | | Spotted by: ceri MFC after: 1 day
* snapinfo -- show snapshot location on UFS file systemsmarks2005-07-203-0/+251
Glanced over by: kan Review by: ru (snapshot.8) MFC: TBD
OpenPOWER on IntegriCloud