summaryrefslogtreecommitdiffstats
path: root/sys/modules/msdosfs
Commit message (Collapse)AuthorAgeFilesLines
* Let kmod.mk touch opt_*.h files as needed.ru2004-09-041-3/+0
| | | | Inspired by: imp's email
* By popular request, add a workaround that allows large (>128GB or so)tjr2004-07-031-1/+4
| | | | | | | | | | | | | | | FAT32 filesystems to be mounted, subject to some fairly serious limitations. This works by extending the internal pseudo-inode-numbers generated from the file's starting cluster number to 64-bits, then creating a table mapping these into arbitrary 32-bit inode numbers, which can fit in struct dirent's d_fileno and struct vattr's va_fileid fields. The mappings do not persist across unmounts or reboots, so it's not possible to export these filesystems through NFS. The mapping table may grow to be rather large, and may grow large enough to exhaust kernel memory on filesystems with millions of files. Don't enable this option unless you understand the consequences.
* - Support for multibyte charsets in LIBICONV.fjoe2003-09-261-0/+1
| | | | | | | | - 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>
* Move adding -DPC98 to CFLAGS from each modules to sys/modules/Makefile.inc.nyan2002-11-061-4/+0
|
* Drop <bsd.man.mk> support from <bsd.kmod.mk>.ru2002-01-111-1/+0
| | | | Not objected to by: -current
* - VFS_SET(msdos) -> VFS_SET(msdosfs)ru2001-06-011-1/+1
| | | | | | - msdos.ko -> msdosfs.ko - mount_msdos(8) -> mount_msdosfs(8) - "msdos" -> "msdosfs" compatibility glue in mount(8)
* Name this module msdos.ko so that mount_msdos(8) can autoloadru2001-05-281-1/+1
| | | | | | | | | | | | it with vfsload("msdos"). (The proper fix would be to rename the `msdos' file system to `msdosfs' in VFS_SET(), and mount_msdos(8) to mount_msdosfs(8). But that would break too many existing fstab(5) setups, and would require a lot of unnecessary documentation and code msdos -> msdosfs changes.) Noticed by: markm
* - sys/msdosfs moved to sys/fs/msdosfsru2001-05-251-2/+2
| | | | | - msdos.ko renamed to msdosfs.ko - /usr/include/msdosfs moved to /usr/include/fs/msdosfs
* Use a consistent style and one much closer to the rest of /usr/srcobrien2001-01-061-1/+2
|
* Use .include <bsd.kmod.mk> to get to ../../*/conf/kmod.mk instead ofpeter2000-05-271-1/+1
| | | | encoding the relative path.
* Pull in sys/conf/kmod.mk, rather than /usr/share/mk/bsd.kmod.mk.peter2000-05-041-1/+1
| | | | | | | This means that the kernel can be totally self contained now and is not dependent on the last buildworld to update /usr/share/mk. This might also make it easier to build 5.x kernels on 4.0 boxes etc, assuming gensetdefs and config(8) are updated.
* Define PC98 when MACHINE == pc98, because msdos_vfsops.c containskato2000-03-191-0/+4
| | | | `#ifdef PC98'.
* Remove a whole bunch of "CFLAGS+= -DFSNAME" cruft. It hasn't beenpeter1999-12-121-1/+0
| | | | | | needed for ages, but keeps getting cut/pasted into new Makefiles. (Once apon a time it was used to activate mount arguments in <sys/mount.h>, but that was killed with extreme prejudice long ago)
* Bring these more into line with other modules that have .h files generatedpeter1999-12-121-2/+2
| | | | on the fly.
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Sample initial set of kld-ified modules. Not all have been completelypeter1998-10-161-4/+4
| | | | | | | converted yet. These are more of a starting point. This is NOT connected to the parent Makefile. OK'ed by jkh (who is ever so patiently waiting)
* Back out opt_diagnostic.h changes.eivind1998-02-061-6/+2
|
* Make the LKMs handle DIAGNOSTIC as a new-style option.eivind1998-02-041-2/+6
|
* Revert $FreeBSD$ back to $Id$peter1997-02-221-1/+1
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-141-1/+1
| | | | | | | | 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.
* Removed redundant delcaration of msdosfs_denode.c from the SRCS line.nate1995-03-031-3/+3
|
* Build LKMs for all ``easy'' filesystems. (lfs can be done, but it's morewollman1994-09-211-0/+11
work; ditto NFS and it's even more work.)
OpenPOWER on IntegriCloud