aboutsummaryrefslogtreecommitdiff
path: root/lib/libdisk
Commit message (Collapse)AuthorAgeFilesLines
* MFC: Added boot selector supports for PC-98.Yoshihiro Takahashi2000-09-143-2/+75
| | | | Notes: svn path=/stable/4/; revision=65833
* MFC: Fixed warnings and typo. Recognize slice type 0x24 as FAT (only PC-98).Yoshihiro Takahashi2000-08-082-1/+6
| | | | Notes: svn path=/stable/4/; revision=64380
* MFC: /dev/rXXX -> /dev/XXXPaul Saab2000-08-073-6/+6
| | | | Notes: svn path=/stable/4/; revision=64332
* MFC: Don't call vfprintf-like functions without a format string.Kris Kennaway2000-07-201-1/+1
| | | | Notes: svn path=/stable/4/; revision=63636
* MFC: Support MBR boot loaders more than 1 sector long.John Baldwin2000-07-176-62/+16
| | | | Notes: svn path=/stable/4/; revision=63339
* MFC: _PATH_DEV'ify libdisk and fix a misspelling in an error message.John Baldwin2000-07-144-8/+12
| | | | Notes: svn path=/stable/4/; revision=63106
* MFC: teach libdisk about 'twe' disksMike Smith2000-05-252-1/+3
| | | | Notes: svn path=/stable/4/; revision=60909
* MFC: rev 1.13, reassemble a sentence.Joerg Wunsch2000-04-251-1/+1
| | | | Notes: svn path=/stable/4/; revision=59625
* MFC: introduce .Lb macro to libraries manpages, some mdoc cleanupAlexey Zelkin2000-04-221-1/+3
| | | | Notes: svn path=/stable/4/; revision=59519
* MFC: Supported PC-98.Yoshihiro Takahashi2000-04-019-0/+322
| | | | Notes: svn path=/stable/4/; revision=58890
* Fix fd leak in libdisk's Disk_Names()Warner Losh2000-03-101-0/+4
| | | | Notes: svn path=/head/; revision=57898
* Fix pointer addition bug (3 -> 4).Jonathan Lemon2000-03-091-1/+1
| | | | | | | Submitted by: david.w.james@bt.com Notes: svn path=/head/; revision=57856
* Correct device naming for IDA disk nodes (idad)Jonathan Lemon2000-03-082-2/+2
| | | | Notes: svn path=/head/; revision=57831
* Hide more debugging behind isDebug(); what's currentlyJordan K. Hubbard2000-02-181-2/+4
| | | | | | | spewing out will only alarm people. Notes: svn path=/head/; revision=57306
* Replace beforeinstall target with new variables used by .mk system.Rodney W. Grimes2000-01-141-5/+1
| | | | | | | Reviewed by: marcel, and make world Notes: svn path=/head/; revision=55955
* Just on the off-chance that somebody might use libdisk in a totallyPoul-Henning Kamp1999-12-221-5/+11
| | | | | | | | | | | lobotomized environment, say booted from a floppy with no /etc full of password and group files, give sensible fallbacks for roots uid and operators gid. This might fix sysinstall. Notes: svn path=/head/; revision=55008
* Catch up to the fact that block devices are toast.Jordan K. Hubbard1999-12-152-13/+38
| | | | | | | | | | | Teach about the afd driver. Teach new char dev for ad driver. Make ownerships correct. Submitted by: jhb Notes: svn path=/head/; revision=54627
* Remove 'sd' support. SCSI disks are known as 'da' these days.Mike Smith1999-11-272-3/+1
| | | | Notes: svn path=/head/; revision=53784
* Remove BAD144 supportPoul-Henning Kamp1999-11-275-42/+0
| | | | Notes: svn path=/head/; revision=53749
* Teach libdisk about the AMI and Mylex RAID drivers. You should be ableMike Smith1999-11-022-1/+5
| | | | | | | to install directly to arrays managed by these controllers now. Notes: svn path=/head/; revision=52786
* fix couple mdoc errorAlexey Zelkin1999-10-281-9/+7
| | | | | | | mention library name in header (.Nd field) - it allows to use "man -k libdisk" Notes: svn path=/head/; revision=52595
* $Id$ -> $FreeBSD$Peter Wemm1999-08-2812-12/+12
| | | | Notes: svn path=/head/; revision=50476
* Merge from -stable; support for the 'ida' driver, move fla to major 102Mike Smith1999-07-052-4/+6
| | | | Notes: svn path=/head/; revision=48585
* Fix my own Pie Floater.Mike Smith1999-05-121-2/+2
| | | | | | | (Correctly handle 'wd' devices) Notes: svn path=/head/; revision=47090
* Back out the last change to disk.c - a kernel change removed the need.Doug Rabson1999-05-092-3/+6
| | | | | | | Enabled writing to the disklabel when writing a disk (only affects alpha). Notes: svn path=/head/; revision=46787
* Make libdisk see the existing partitiions on the alpha.Doug Rabson1999-05-081-1/+2
| | | | Notes: svn path=/head/; revision=46731
* Clean up after another half-Danish.Mike Smith1999-05-042-3/+5
| | | | | | | Add 'ad' as another known disk driver of the same kind as 'wd'. Notes: svn path=/head/; revision=46455
* More egcs warning fixes:Warner Losh1999-04-251-11/+1
| | | | | | | | | | | | | o use braces to avoid potentially ambiguous else o don't default to type int (and also remove a useless register modifier). o Use parens around assignment values used as truth values. o Remove unused function. Reviewed by: obrien and chuckr Notes: svn path=/head/; revision=46079
* More support for Alpha installs.Jordan K. Hubbard1999-01-293-4/+76
| | | | | | | Submitted by: dfr Notes: svn path=/head/; revision=43393
* Bring us one step closer to sysinstall'ing on a DOC2k device.Poul-Henning Kamp1999-01-141-1/+3
| | | | Notes: svn path=/head/; revision=42669
* Changes for alpha support.Jordan K. Hubbard1999-01-082-2/+21
| | | | | | | Submitted by: dfr Notes: svn path=/head/; revision=42387
* Eliminate all dependence on boot1 and boot2. This is passed in byJordan K. Hubbard1998-12-313-28/+6
| | | | | | | | | Set_Boot_Blocks() anyway and should thus have never been a part of libdisk, it should have been provided by the client of libdisk since passing the information in is already part of the API. Notes: svn path=/head/; revision=42187
* Transition libdisk to use /boot since what it's looking for (boot1 and boot2)Jordan K. Hubbard1998-12-301-2/+2
| | | | | | | are now there. Notes: svn path=/head/; revision=42182
* Backed out previous commit. It depends on a.out utilities and librariesBruce Evans1998-12-301-2/+2
| | | | | | | somehow being available even on pure elf systems. Notes: svn path=/head/; revision=42181
* Fixed bootstrapping of /usr/mdec/boot[12].Bruce Evans1998-12-301-2/+2
| | | | Notes: svn path=/head/; revision=42180
* Add "fla" to Disk_Names()Poul-Henning Kamp1998-12-191-2/+2
| | | | Notes: svn path=/head/; revision=41941
* Fixes for handling 'wfd' (and any other disk with a non-2-character name)Mike Smith1998-10-272-9/+9
| | | | | | | Submitted by: Some from Satoh Junichi (junichi@astec.co.jp) Notes: svn path=/head/; revision=40676
* Teach libdisk about alpha boot blocks.Doug Rabson1998-10-064-4/+51
| | | | Notes: svn path=/head/; revision=40000
* Eliminate unaligned access on Alpha and also neaten up this code a little.Jordan K. Hubbard1998-09-302-8/+38
| | | | | | | Submitted by: dfr Notes: svn path=/head/; revision=39844
* Remove references to the "od" device.Justin T. Gibbs1998-09-152-5/+3
| | | | Notes: svn path=/head/; revision=39252
* Extend the existing hackery to set the disk type to SCSI for theJohn Polstra1998-06-271-2/+3
| | | | | | | | "da" and "od" devices. Formerly ESDI was used for them, causing problems for fresh installations of CAM systems. Notes: svn path=/head/; revision=37179
* Spelling corrections.Joseph Koshy1998-06-061-3/+3
| | | | | | | | PR: 6868 Submitted by: Josh Gilliam <josh@quick.net> Notes: svn path=/head/; revision=36692
* Add new NetBSD FFS with FDISK partition ID 0xa9David E. O'Brien1998-05-191-1/+2
| | | | | | | Obtained from: Frank van der Linden <frank@wins.uva.nl> Notes: svn path=/head/; revision=36182
* Change an arbitarly hardcoded `10' to MAX_NO_DISKS, which is currently "20".David E. O'Brien1998-05-151-2/+2
| | | | | | | | Otherwise can't see sd10 (obtained using wired down sd unit numbers), reguardless of the number of actual disks you have. Notes: svn path=/head/; revision=36081
* Add Compaq & SCO partition types.Jordan K. Hubbard1998-03-221-1/+3
| | | | | | | | PR: 6092 Submitted by: Drew Derbyshire <ahd@kew.com> Notes: svn path=/head/; revision=34776
* MF22: teach about LS-120 devices.Jordan K. Hubbard1998-03-202-3/+5
| | | | Notes: svn path=/head/; revision=34729
* .Sh AUTHOR -> .Sh AUTHORS. Use .An/.AqPhilippe Charnier1998-03-191-3/+4
| | | | Notes: svn path=/head/; revision=34669
* Add more AIX/DOS/Win95 partition typesAndrey A. Chernov1998-03-141-4/+12
| | | | Notes: svn path=/head/; revision=34579
* Add primary fat-32Andrey A. Chernov1998-03-071-1/+3
| | | | Notes: svn path=/head/; revision=34148
* Reconized OpenBSD partitions.David E. O'Brien1998-03-051-1/+3
| | | | Notes: svn path=/head/; revision=34037