summaryrefslogtreecommitdiff
path: root/lib/libdisk/change.c
Commit message (Collapse)AuthorAgeFilesLines
* With the old sade removed, libdisk is no longer used by anything in HEADNathan Whitehorn2012-12-301-129/+0
| | | | | | | | and uses a number of problematic pre-gpart interfaces. Since it has been entirely obsoleted by interfaces in geom, remove it. Notes: svn path=/head/; revision=244865
* Disable a check on a disk size because it's too strict. This change isYoshihiro Takahashi2009-09-211-0/+2
| | | | | | | | | | | | to avoid using incorrect geometry. It seems that this is the same problem in g_part_bsd_read()@g_part_bsd.c. Reviewed by: rink MFC after: 3 days Notes: svn path=/head/; revision=197374
* Correct BIOS header sanitizing on pc98.Yoshihiro Takahashi2009-09-191-3/+6
| | | | | | | MFC after: 3 days Notes: svn path=/head/; revision=197322
* - Allow a higher value for the number of heads. Its better to do this and allowUlf Lilleengen2009-06-171-1/+1
| | | | | | | a few bad systems to run than to be completely strict about it. Notes: svn path=/head/; revision=194334
* - The maximum number of heads is 255, not 256.Ulf Lilleengen2009-06-151-1/+1
| | | | | | | Pointed out by: marcel Notes: svn path=/head/; revision=194244
* - Relax sanitazion requirements in libdisk, as a previous commit enabling thisUlf Lilleengen2009-06-151-9/+1
| | | | | | | | | | | sanitization broke sysinstall on some disks. This was due to the disks reporting a geometry that was incorrectly sanitized by sysinstall. This makes the sanitization consistent with fdisk. Tested by: randi Notes: svn path=/head/; revision=194241
* Add over 32GB disk support on pc98 (userland part).Yoshihiro Takahashi2005-03-301-1/+24
| | | | | | | Submitted by: Hirokazu WATANABE Notes: svn path=/head/; revision=144334
* Fixed pc98 partition type.Yoshihiro Takahashi2004-01-271-1/+1
| | | | Notes: svn path=/head/; revision=125084
* Fixed style(9)Yoshihiro Takahashi2002-11-151-6/+8
| | | | Notes: svn path=/head/; revision=106949
* Live with it: I had hoped to find a neat way to deal with all the magicPoul-Henning Kamp2002-10-221-2/+9
| | | | | | | numbers, but so far havn't come up with anything: Add an #ifdef PC98. Notes: svn path=/head/; revision=105688
* Avoid a lot of #ifdef PC98 code by giving a couple of the Chunk functionsPoul-Henning Kamp2002-10-221-9/+0
| | | | | | | an extra argument for all archs. Notes: svn path=/head/; revision=105685
* Fix to check disk geometry.Yoshihiro Takahashi2002-10-141-1/+18
| | | | | | | Submitted by: kawanobe@st.rim.or.jp (Kawanobe Koh) Notes: svn path=/head/; revision=105105
* Modernize my email address.Poul-Henning Kamp2002-03-251-1/+1
| | | | Notes: svn path=/head/; revision=93149
* Add __FBSDID()s to libdiskMatthew Dillon2001-09-301-3/+3
| | | | Notes: svn path=/head/; revision=84200
* Add spaces around operators.David E. O'Brien2001-04-011-14/+16
| | | | | | | | It's OK, the Project and afford them now -- they aren't as expensive as they used to be. Notes: svn path=/head/; revision=75069
* Libraries should _never_ call exit() themselves (or its alternate spellingDavid E. O'Brien2001-03-181-1/+0
| | | | | | | | | | | | | | `err()'). libdisk does! and additionally libdisk gets confused on Alpha disks with foreign disklabels, throws up its hands and exits. This is the cause of the "going no where without my init" install bug on the Alpha. So now on the Alpha, rather than call err(), we print the error string and continue processing. Submitted by: jkh Notes: svn path=/head/; revision=74426
* - Allow support for MBR boot loaders that are longer than one sector. AsJohn Baldwin2000-07-121-3/+0
| | | | | | | | | with fdisk, ensure that they are a multiple of the sector size in length. - Axe all the 1024 cylinder checks as they are no longer relevant with the fixed bootstrap. Notes: svn path=/head/; revision=63030
* Changes for PC-98.KATO Takenori2000-03-291-0/+12
| | | | Notes: svn path=/head/; revision=58794
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50476
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=22993
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-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. Notes: svn path=/head/; revision=21673
* Improve the Dangerously Dedidcated mode a bit. Not much, but a bit better.Poul-Henning Kamp1996-11-271-20/+40
| | | | Notes: svn path=/head/; revision=19989
* Update the -current sources from the 2.1 branch.Peter Wemm1995-12-071-3/+4
| | | | | | | Approved (in spirit) by: jkh Notes: svn path=/head/; revision=12661
* Merge RELENG_2_0_5 into HEADRodney W. Grimes1995-06-111-1/+3
| | | | Notes: svn path=/head/; revision=9202
* Remove trailing whitespace.Rodney W. Grimes1995-05-301-2/+2
| | | | Notes: svn path=/head/; revision=8881
* Remove Ontrack special from All_FreeBSD().Poul-Henning Kamp1995-05-251-6/+1
| | | | | | | Add chunk->disk pointer. Notes: svn path=/head/; revision=8745
* Align slices to cylinder boundries.Jordan K. Hubbard1995-05-241-1/+6
| | | | | | | Submitted By: phk Notes: svn path=/head/; revision=8721
* Use the DIOCSYNCSLICE ioctl now. (use only with kernel from this morning).Poul-Henning Kamp1995-04-301-2/+2
| | | | | | | | Get the CHS's right. Get the disklabels (more) right. Notes: svn path=/head/; revision=8192
* Next Iteration, getting better.Poul-Henning Kamp1995-04-291-1/+16
| | | | | | | | | | | Made an All_FreeBSD() function. Added a cmd-line interface (lowest rank) to the tst01 program. The tst01 program is harmless (worst it can do is coredump), but it is instructive to run, you can see what the slice-code things of your disk... Notes: svn path=/head/; revision=8157
* Sanitize and explain a little bit... Implement the first rules...Poul-Henning Kamp1995-04-291-1/+0
| | | | Notes: svn path=/head/; revision=8156
* This is a revision 0.00 of the backend stuff for the fdisk/disklabel stuffPoul-Henning Kamp1995-04-281-0/+45
in the new sysinstall. If you want to give a helping hand, then send email to phk@FreeBSD.ORG. DO NOT COMMIT TO THIS DIRECTORY! Notes: svn path=/head/; revision=8153