summaryrefslogtreecommitdiffstats
path: root/sbin/i386
Commit message (Collapse)AuthorAgeFilesLines
* $Id$ -> $FreeBSD$peter1999-08-2818-18/+18
|
* Add -e option to usage().dwhite1999-08-251-2/+2
|
* Add new option to fdisk: -ephk1999-08-232-13/+40
| | | | | | | This wipes the MBR and creates slice 1 as a FreeBSD slice covering the disk starting from the second track to the cylinder aligned end of the disk. This is the most compatibly layout we have as far as I know.
* Drop the embedded boot code in favour of a -B option which readsrnordier1999-06-273-142/+100
| | | | | | the boot code from /boot/mbr, or elsewhere as defined by the revised "-b bootcode" option; use getopt(3); clarify usage(); partially revise man page; etc.
* This lets you specify "gemdosfs", "shortnames", "longnames", andjkh1999-06-182-4/+21
| | | | | | | | | | | | | "nowin95" as arguments to the "-o" flag, as alternatives to "-G", "-s", "-l", and "-9"; when running "mount_msdos" by hand, that doesn't let you do anything you couldn't already do, but if you're letting "mount" run it, it lets you specify those options, which is especially useful if, for example, you have an entry in "/etc/fstab" for some file system, with "noauto" set, so you can conveniently mount a DOS partition from a removable drive and force it to treat the file system as VFAT rather than boring old FAT. Submitted by: Guy Harris <guy@netapp.com>
* Note that a standard MBR supports booting only from hard drive 0rnordier1999-03-131-1/+4
|
* Note that nextboot requires the legacy boot code.rnordier1999-02-051-1/+3
|
* Add a -b option as a simple way to rewrite the mbr codernordier1999-01-222-4/+27
| | | | (eg. replacing a boot manager with a standard mbr)
* Update to match rev. 1.28 of msdosfs_lookup.c.dt1999-01-111-11/+2
|
* sd0 -> da0joerg1998-11-262-4/+4
|
* Add an entry for the new NetBSD partition id.alex1998-11-061-1/+2
|
* Add an entry for BSD/OS [23].x partition types.jkoshy1998-11-061-1/+2
| | | | | | | | | I don't have access to a BSD/OS machine to check the veracity of the magic number. However, no harm will be done by the commit and since someone was motivated enough to file a PR, I'm committing the change. PR: 7629 Submitted by: Jos Backus <jbackus@plex.nl>
* Linux swap and Solaris x86 use the same BIOS partition id.obrien1998-09-161-2/+2
|
* Split lines into one subdir per line.gpalmer1998-08-301-2/+6
|
* Correct use of .Nm, use .Bx Free for FreeBSD. Add rcsid, remove unusedcharnier1998-07-062-119/+109
| | | | #includes. Spelling. Use err(3) and add usage().
* Add rcsid. Remove unused #includes. Use err(3) and check spelling. Reorganizecharnier1998-06-302-94/+79
| | | | man page.
* Split usage string.charnier1998-06-302-8/+14
|
* Document -r flag, document use of TAPE env variable. Add rcsid. Use err(3).charnier1998-06-303-49/+67
| | | | Remove unused vars (-Wall).
* Add SYNOPSIS section and change NULL to NUL in man page. Add rcsid, missingcharnier1998-06-302-74/+58
| | | | #includes. Use err(3).
* Add rcsid. Remove unused #includes. Use err(3).charnier1998-06-302-32/+34
|
* Fixed printf format errors.bde1998-06-281-8/+8
|
* Fixed printf format errors.bde1998-06-281-1/+1
|
* Fix a spelling error.steve1998-06-041-1/+1
| | | | | PR: 6857 Submitted by: Josh Gilliam <josh@quick.net>
* Fix typo in prompt.jraynard1998-05-201-1/+1
|
* Add NTFS partition type.obrien1998-03-291-8/+16
| | | | | | | Add "." at the end of some sentances. Also print "flag 80" in English. Give hint that "sysid" for FreeBSD is 165 decimal. Ensure active partition specified by user is 1-4.
* Use .An/.Aq.charnier1998-03-192-5/+5
|
* Add more DOS/Win95 partition typesache1998-03-141-2/+5
|
* Oops, merge back 32bit fat description from -stable.ache1998-03-071-1/+1
| | | | It was added to -stable but not to -current, strange.
* Add primary fat-32ache1998-03-071-0/+1
|
* Add more info about special characters in dos2unix/unix2dos tablesache1998-03-011-3/+11
|
* Add more info about -W optionache1998-02-231-2/+4
|
* Note that default local charset assumed as ISO 8859-1ache1998-02-231-1/+3
|
* Implement loadable DOS<->local conversion tables for DOS namesache1998-02-235-37/+92
| | | | Additionly load toupper table to create DOS names always in uppercase
* Implement loadable upper->lower local conversion tableache1998-02-232-7/+30
| | | | Recently introduced -w renamed to -W
* Add missing DESTDIRache1998-02-231-2/+2
|
* Add loadable local<->Unicode conversion support for Win95 namesache1998-02-224-5/+75
| | | | Note: DOS names still not work and require similar changes
* Support for FAT32 partitions.jkh1998-02-182-26/+86
| | | | | Submitted by: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru> Obtained from: NetBSD
* Removed definition of _NEW_VFSCONF. The new vfsconf interface is nowbde1998-01-201-2/+1
| | | | the default.
* Fixed some FUD (don't blame current msdosfs for old msdosfs+vfs_bio bugs).bde1997-12-191-8/+17
|
* Don't install mount_msdos setuid root. Lite2's mount(2) handlesbde1997-10-211-4/+1
| | | | | | permissions centrally and a setuid root mount utility just breaks its security. There was no new breakage in practice because mfdosfs_mount() still checks the ruid.
* Many places in the code NULL is used in integer context, wherephk1997-09-181-1/+1
| | | | | | | | | plain 0 should be used. This happens to work because we #define NULL to 0, but is stylistically wrong and can cause problems for people trying to port bits of code to other environments. PR: 2752 Submitted by: Arne Henrik Juul <arnej@imf.unit.no>
* Support all mount flags that are supported in the kernel.bde1997-08-251-1/+4
|
* Show the real revision date and not the date that thissteve1997-06-231-1/+1
| | | | manpage is being viewed.
* Number partitions 1-4, not 0-3.brian1997-06-032-30/+30
| | | | | | Any existing config files (using the -f option) will need to be changed although using the old files will usually result in an error (partition 0 is invalid).
* Don't overflow when calculating the size in MB of a partition.gibbs1997-06-021-3/+12
| | | | No more 241MB 4+ gig partitions for me!
* OpenBSD uses ID 0xa6 for its partitions on i386, arc and others that needimp1997-05-021-0/+1
| | | | | | a BIOS-like partition table. We now detect this correctly and print the right thing. Obtained from: Value obtained from OpenBSD sources.
* Spelling police.danny1997-04-231-2/+2
|
* compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-292-3/+3
| | | | posix standard on the topic.
* Updated mount_msdos to use the Lite2 getvfsbyname() interface.bde1997-03-032-12/+14
|
* Revert $FreeBSD$ to $Id$peter1997-02-228-8/+8
|
OpenPOWER on IntegriCloud