summaryrefslogtreecommitdiffstats
path: root/sbin/mount_cd9660
Commit message (Collapse)AuthorAgeFilesLines
* Update the manual page to reflect reality. With r138509 and r152355,jkim2013-03-051-3/+3
| | | | | | | "nostrictjoliet" option for mount_cd9660(8) was completely replaced with "brokenjoliet" somehow. MFC after: 3 days
* GC unused variables. Prefer NULL over 0 for pointers.jkim2013-03-051-3/+3
|
* Change checkpath() to not exit on error. This is a prerequisite forjh2012-01-161-1/+2
| | | | | | | fixing the mount(8) "failok" option. PR: 163668 Reviewed by: Garrett Cooper, delphij (previous version)
* Add missing static keywords for global variables to tools in sbin/.ed2011-11-041-1/+1
| | | | | | These tools declare global variables without using the static keyword, even though their use is limited to a single C-file, or without placing an extern declaration of them in the proper header file.
* Fix minor memory leak in a function.netchild2009-11-201-1/+3
| | | | MFC after: 1 week
* Switch the default WARNS level for sbin/ to 6.ru2009-10-191-1/+0
| | | | Submitted by: Ulrich Spörlein
* Fixing multi-session disc mount by passing the correct "ssector" optionavatar2005-12-191-1/+1
| | | | | | to the kernel. Submitted by: Enache Adrian <enache at rdslink dot ro>
* It turns out that set_charset() invokes build_iovec() which modifiesavatar2005-11-251-5/+5
| | | | | | | | | | | | iov address internally through realloc(3). However, since the function parameter wasn't designed to allow the modified iov being passed back to the caller, we end up feeding iov with several corrupted entries(depends on how many arguments were pushed into iovec before set_charset()) to nmount(2). This commit fixes this regression introduced in rev1.31 such that mount_cd9660(8) with code page conversion option(-C) enabled works again. Reviewed by: rodrigc
* -mdoc sweep.ru2005-11-181-1/+1
|
* Increase WARNS level to 6rodrigc2005-11-131-1/+1
|
* Convert mount_cd9660 to use nmount().rodrigc2005-11-131-46/+53
|
* - s/cd0c/cd0blackend2005-10-031-2/+2
| | | | - Bump revision date to match many content changes since last revision
* Use MOPT_END in favor of MOPT_NULL, which better describes the purporsedelphij2005-06-101-1/+1
| | | | of the macro.
* Add a handy macro to represent null mount option, MOPT_NULL, and makedelphij2005-06-011-1/+1
| | | | | | | | | | | | | | | | | | | 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.
* Expand *n't contractions.ru2005-02-131-1/+1
|
* Sort sections.ru2005-01-181-9/+9
|
* NOSHARED -> NO_SHAREDru2004-12-211-1/+1
|
* Sync usage() and SYNOPSIS.ru2004-11-132-2/+3
|
* Mechanically kill hard sentence breaks.ru2004-07-021-3/+6
|
* Assorted markup, grammar, and spelling fixes.ru2004-05-171-4/+4
|
* Remove advertising clause from University of California Regent's license,markm2004-04-092-8/+0
| | | | | | per letter dated July 22, 1999. Approved by: core, imp
* style.Makefile(5):johan2004-02-231-1/+1
| | | | Use WARNS?= instead of WARNS=.
* Make msdosfs long filenames matching case insensitive again.fjoe2003-12-081-4/+1
| | | | | PR: 59765 Submitted by: Ryuichiro Imura <imura@ryu16.org>
* Use 'const' in the copyright stamp, this is done in other utilities.trhodes2003-11-041-1/+2
| | | | | | Return linker.h to the includes list. No objection from: wollman (for the copyright)
* Revert the first part of my previous change.trhodes2003-11-011-4/+6
| | | | Requested by: wollman
* The copywrite is not a 'static char', remove the #ifdefs and move the ↵trhodes2003-11-011-6/+4
| | | | | | | | copywrite up into the commented out 'copywrite' section. Include sys/linker.h for kldload(3).
* - Support for multibyte charsets in LIBICONV.fjoe2003-09-263-2/+55
| | | | | | | | - 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>
* s/filesystem/file system/g as discussed on -developerstrhodes2002-08-212-9/+9
|
* This should have been committed too, I have no ideamux2002-08-031-1/+1
| | | | why p4 didn't gave me this diff too.
* Now that the kernel is able to load modules itself,mux2002-08-031-12/+1
| | | | | | | | | | 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.
* The .Nm utilitycharnier2002-07-061-1/+1
|
* mdoc(7) police: misc fixes.ru2002-03-151-5/+4
|
* Add information about multi-session CDs from the log message of r1.4.murray2002-03-131-0/+9
| | | | | | Also, add an examples section and show how to mount a Kodak Photo-CD. PR: docs/35206
* o Move NTOHL() and associated macros into <sys/param.h>. These aremike2002-02-181-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Default to WARNS=2.obrien2001-12-041-0/+2
| | | | | | Binary builds that cannot handle this must explicitly set WARNS=0. Reviewed by: mike
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* Added missing no's to the -o options list.ru2001-04-261-6/+7
| | | | Fixed markup.
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-0/+1
| | | | - MAN[1-9] -> MAN.
* Set the default manual section for sbin/ to 8.ru2001-03-201-1/+1
|
* It is the ``nostrictjoliet'' option equivalent to -b.ru2001-03-161-2/+2
| | | | Reviewed by: bp
* Update userland interface for broken Joilet disks.bp2001-03-112-2/+12
| | | | Reviewed by: adrian
* Print out the target device when the mount fails.bsd2001-01-251-1/+2
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-1/+1
|
* Typokris1999-11-151-1/+1
| | | | Obtained from: OpenBSD
* mount* fixes from Martin Blapp <mb@imp.ch>:phk1999-10-091-2/+9
| | | | | | | | | | | | | | | | | 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
* $Id$ -> $FreeBSD$peter1999-08-282-2/+2
|
* Fix some bad references.chris1999-08-161-3/+3
|
* Add $Id$ to these manpages.nik1999-07-121-0/+2
| | | | Approved by: bde
* Add the missing cd9660-specific options to the -o flag. While I'm here,ghelmer1999-05-281-1/+16
| | | | | | add the missing -j flag to the synopsys. PR: docs/1667
* Add support for Joliet extensions to the iso9660 fs. The related PRdcs1999-04-182-2/+8
| | | | | | | | | | | | | 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>
OpenPOWER on IntegriCloud