Revision tags: release/6.0.0_cvs, release/6.0.0 |
|
#
46b7a14b |
| 10-Jun-2005 |
Xin LI <delphij@FreeBSD.org> |
Use MOPT_END in favor of MOPT_NULL, which better describes the purporse of the macro.
|
#
73ac4505 |
| 01-Jun-2005 |
Xin LI <delphij@FreeBSD.org> |
Add a handy macro to represent null mount option, MOPT_NULL, and make use of the macro in sbin/mount*'s, by replacing:
mopts[] = { MOPT_STDOPTS, { NULL } }
With: mopts[] = { MOPT_
Add a handy macro to represent null mount option, MOPT_NULL, and make use of the macro in sbin/mount*'s, by replacing:
mopts[] = { MOPT_STDOPTS, { NULL } }
With: mopts[] = { MOPT_STDOPTS, MOPT_NULL }
This change will help to reduce the situation that we don't explicitly initialize "struct mntopt"'s. It should not contribute to any functional/logical changes as far as I can tell.
show more ...
|
Revision tags: release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0 |
|
#
bcd84fb7 |
| 13-Nov-2004 |
Ruslan Ermilov <ru@FreeBSD.org> |
Sync usage() and SYNOPSIS.
|
Revision tags: release/5.3.0_cvs, release/5.3.0, release/4.10.0_cvs, release/4.10.0 |
|
#
4c723140 |
| 09-Apr-2004 |
Mark Murray <markm@FreeBSD.org> |
Remove advertising clause from University of California Regent's license, per letter dated July 22, 1999.
Approved by: core, imp
|
Revision tags: release/5.2.1_cvs, release/5.2.1, release/5.2.0_cvs, release/5.2.0 |
|
#
0f4e4130 |
| 08-Dec-2003 |
Max Khon <fjoe@FreeBSD.org> |
Make msdosfs long filenames matching case insensitive again.
PR: 59765 Submitted by: Ryuichiro Imura <imura@ryu16.org>
|
#
1476864b |
| 04-Nov-2003 |
Tom Rhodes <trhodes@FreeBSD.org> |
Use 'const' in the copyright stamp, this is done in other utilities. Return linker.h to the includes list.
No objection from: wollman (for the copyright)
|
#
b34553a3 |
| 01-Nov-2003 |
Tom Rhodes <trhodes@FreeBSD.org> |
Revert the first part of my previous change.
Requested by: wollman
|
#
31212c21 |
| 01-Nov-2003 |
Tom Rhodes <trhodes@FreeBSD.org> |
The copywrite is not a 'static char', remove the #ifdefs and move the copywrite up into the commented out 'copywrite' section.
Include sys/linker.h for kldload(3).
|
Revision tags: release/4.9.0_cvs, release/4.9.0 |
|
#
c4f02a89 |
| 26-Sep-2003 |
Max Khon <fjoe@FreeBSD.org> |
- Support for multibyte charsets in LIBICONV. - CD9660_ICONV, NTFS_ICONV and MSDOSFS_ICONV kernel options (with corresponding modules). - kiconv(3) for loadable charset conversion tables support.
Su
- Support for multibyte charsets in LIBICONV. - CD9660_ICONV, NTFS_ICONV and MSDOSFS_ICONV kernel options (with corresponding modules). - kiconv(3) for loadable charset conversion tables support.
Submitted by: Ryuichiro Imura <imura@ryu16.org>
show more ...
|
Revision tags: release/5.1.0_cvs, release/5.1.0, release/4.8.0_cvs, release/4.8.0, release/5.0.0_cvs, release/5.0.0, release/4.7.0_cvs |
|
#
ce66ddb7 |
| 21-Aug-2002 |
Tom Rhodes <trhodes@FreeBSD.org> |
s/filesystem/file system/g as discussed on -developers
|
Revision tags: release/4.6.2_cvs, release/4.6.2 |
|
#
7b333193 |
| 03-Aug-2002 |
Maxime Henrion <mux@FreeBSD.org> |
This should have been committed too, I have no idea why p4 didn't gave me this diff too.
|
#
526ba6d3 |
| 03-Aug-2002 |
Maxime Henrion <mux@FreeBSD.org> |
Now that the kernel is able to load modules itself, remove all the code which was trying to do so. This code was nasty in several ways, it was hiding the kernel bug where the kernel was unable to pro
Now that the kernel is able to load modules itself, remove all the code which was trying to do so. This code was nasty in several ways, it was hiding the kernel bug where the kernel was unable to properly load a module, and it was quitting if it wasn't able to load the module. The consequence is that an ABI breakage of the vfsconf API would have broken *every* mount utility.
show more ...
|
Revision tags: release/4.6.1, release/4.6.0_cvs |
|
#
fd8e4ebc |
| 18-Feb-2002 |
Mike Barcroft <mike@FreeBSD.org> |
o Move NTOHL() and associated macros into <sys/param.h>. These are deprecated in favor of the POSIX-defined lowercase variants. o Change all occurrences of NTOHL() and associated marcros in the
o Move NTOHL() and associated macros into <sys/param.h>. These are deprecated in favor of the POSIX-defined lowercase variants. o Change all occurrences of NTOHL() and associated marcros in the source tree to use the lowercase function variants. o Add missing license bits to sparc64's <machine/endian.h>. Approved by: jake o Clean up <machine/endian.h> files. o Remove unused __uint16_swap_uint32() from i386's <machine/endian.h>. o Remove prototypes for non-existent bswapXX() functions. o Include <machine/endian.h> in <arpa/inet.h> to define the POSIX-required ntohl() family of functions. o Do similar things to expose the ntohl() family in libstand, <netinet/in.h>, and <sys/param.h>. o Prepend underscores to the ntohl() family to help deal with complexities associated with having MD (asm and inline) versions, and having to prevent exposure of these functions in other headers that happen to make use of endian-specific defines. o Create weak aliases to the canonical function name to help deal with third-party software forgetting to include an appropriate header. o Remove some now unneeded pollution from <sys/types.h>. o Add missing <arpa/inet.h> includes in userland.
Tested on: alpha, i386 Reviewed by: bde, jake, tmm
show more ...
|
Revision tags: release/4.5.0_cvs, release/4.4.0_cvs, release/4.3.0_cvs, release/4.3.0 |
|
#
8c602ed9 |
| 11-Mar-2001 |
Boris Popov <bp@FreeBSD.org> |
Update userland interface for broken Joilet disks.
Reviewed by: adrian
|
#
f59091e7 |
| 25-Jan-2001 |
Brian S. Dean <bsd@FreeBSD.org> |
Print out the target device when the mount fails.
|
Revision tags: release/4.2.0, release/4.1.1_cvs, release/4.1.0, release/3.5.0_cvs, release/4.0.0_cvs, release/3.4.0_cvs |
|
#
73dd3167 |
| 09-Oct-1999 |
Poul-Henning Kamp <phk@FreeBSD.org> |
mount* fixes from Martin Blapp <mb@imp.ch>:
Made mount more userfriendly (bad slashes are now filtered out) and we remove in mount_nfs trailing slashes if there are any.
Fix
mount* fixes from Martin Blapp <mb@imp.ch>:
Made mount more userfriendly (bad slashes are now filtered out) and we remove in mount_nfs trailing slashes if there are any.
Fixed mount_xxx binarys to resolve with realpath(3) the mountpoint.
Translate the deprecated nfs-syntax with '@' to ':' . The ':' syntax has now precedence, but '@' still works. Notify the user that the '@' syntax should not be used.
PR: 7846 PR: 13692 Submitted by: Martin Blapp <mb@imp.ch> Reviewed by: phk
show more ...
|
Revision tags: release/3.3.0_cvs |
|
#
7f3dea24 |
| 28-Aug-1999 |
Peter Wemm <peter@FreeBSD.org> |
$Id$ -> $FreeBSD$
|
Revision tags: release/3.2.0 |
|
#
44e568e2 |
| 18-Apr-1999 |
Daniel C. Sobral <dcs@FreeBSD.org> |
Add support for Joliet extensions to the iso9660 fs. The related PR cannot yet be closed, though.
I hope I got all credits right, and that the multiple submitted by lines do not break anyone's scrip
Add support for Joliet extensions to the iso9660 fs. The related PR cannot yet be closed, though.
I hope I got all credits right, and that the multiple submitted by lines do not break anyone's scripts...
PR: kern/5038, kern/5567 Submitted by: Keith Jang <keith@email.gcn.net.tw> Submitted by: Joachim Kuebart <joki@kuebart.stuttgart.netsurf.de> Submitted by: Byung Yang <byung@wam.umd.edu> Submitted by: Motomichi Matsuzaki <mzaki@e-mail.ne.jp>
show more ...
|
Revision tags: release/3.1.0, release/3.0.0, release/2.2.8, release/2.2.7, release/2.2.6, release/2.2.5_cvs, release/2.2.2_cvs |
|
#
d6ef03d3 |
| 29-Apr-1997 |
Joerg Wunsch <joerg@FreeBSD.org> |
Userland part of ISO9660 multi-session support. mount_cd9660(8) will now by default mount the last data track (thus last session), as opposed to the very first session it has been mounting previousl
Userland part of ISO9660 multi-session support. mount_cd9660(8) will now by default mount the last data track (thus last session), as opposed to the very first session it has been mounting previously. This is consistent with the ISO9660 multi-session idea, and the way other operating systems are working.
There's support to mount arbitrary sessions using the -s option. This way, you can simulate multi-session CDs on something like vn devices that don't support CDIO* ioctl commands. You can also force the historic behaviour with
mount -t cd9660 -o -s=0 /dev/cd0a /cdrom
show more ...
|
#
8d64695c |
| 29-Mar-1997 |
Warner Losh <imp@FreeBSD.org> |
compare return value from getopt against -1 rather than EOF, per the final posix standard on the topic.
|
Revision tags: release/2.2.1_cvs, release/2.2.0 |
|
#
4a4c5285 |
| 11-Mar-1997 |
Peter Wemm <peter@FreeBSD.org> |
Merge from Lite2 (use new getvfsbyname() and mount(2) interface)
|
#
1811bdf3 |
| 11-Mar-1997 |
Peter Wemm <peter@FreeBSD.org> |
Import some CSRG 4.4BSD-Lite2 components for sbin onto vendor branch. (note that some of these have already been imported, this is a no-op)
|
Revision tags: release/2.1.7_cvs |
|
#
c0ec1f37 |
| 22-Feb-1997 |
Peter Wemm <peter@FreeBSD.org> |
Revert $FreeBSD$ to $Id$
|
Revision tags: release/2.1.6_cvs, release/2.1.6.1 |
|
#
1130b656 |
| 14-Jan-1997 |
Jordan K. Hubbard <jkh@FreeBSD.org> |
Make the long-awaited change from $Id$ to $FreeBSD$
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so
Make the long-awaited change from $Id$ to $FreeBSD$
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long.
Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
show more ...
|
Revision tags: release/2.1.5_cvs |
|
#
5e074e31 |
| 13-May-1996 |
Garrett Wollman <wollman@FreeBSD.org> |
Get rid of the last vestiges of the old MOUNT_* constants in the mount_* programs. While we're at it, collapse the four now-identical mount programs for devfs, fdesc, kernfs, and procfs into links t
Get rid of the last vestiges of the old MOUNT_* constants in the mount_* programs. While we're at it, collapse the four now-identical mount programs for devfs, fdesc, kernfs, and procfs into links to a new mount_std(8) which can mount any really generic filesystem such as these when called with the appropriate argv[0].
Also, convert the mount programs to use sysexits.h.
show more ...
|