aboutsummaryrefslogtreecommitdiff
path: root/lib/libdisk
Commit message (Collapse)AuthorAgeFilesLines
* White-space change only. Move closer to style(9).Poul-Henning Kamp2002-10-041-323/+322
| | | | Notes: svn path=/head/; revision=104469
* #include the right thing for PC98Poul-Henning Kamp2002-10-021-0/+4
| | | | | | | Sponsored by: DARPA & NAI Labs. Notes: svn path=/head/; revision=104362
* Split MBR and PC98 on-disk sliceformats out from disklabel.h, step 1:Poul-Henning Kamp2002-10-014-0/+4
| | | | | | | | | | | | | | | | | | | Peter had repocopied sys/disklabel.h to sys/diskpc98.h and sys/diskmbr.h. These two new copies are still intact copies of disklabel.h and therefore protected by #ifndef _SYS_DISKLABEL_H_ so #including them in programs which already include <sys.disklabel.h> is currently a no-op. This commit adds a number of such #includes. Once I have verified that I have fixed all the places which need fixing, I will commit the updated versions of the three #include files. Sponsored by: DARPA & NAI Labs. Notes: svn path=/head/; revision=104272
* Use correct printf format specifier to print unsigned longs.Garrett Wollman2002-05-301-1/+1
| | | | Notes: svn path=/head/; revision=97628
* NOSHARED is meaningless in the bsd.lib.mk context.Ruslan Ermilov2002-05-131-1/+0
| | | | Notes: svn path=/head/; revision=96518
* Retire the bogus uses of the disklabel field d_sbsize and begin toPoul-Henning Kamp2002-05-121-1/+1
| | | | | | | | | | initialize it to zero so we don't have to have everbody and their aunt including FFS specific header files. Sponsored by: DARPA & NAI Labs. Notes: svn path=/head/; revision=96475
* Modernize my email address.Poul-Henning Kamp2002-03-2510-10/+10
| | | | Notes: svn path=/head/; revision=93149
* Modify Delete_Chunk() into Delete_Chunk2() which can take a flagsMatthew Dillon2002-01-072-1/+20
| | | | | | | | | | argument. Leave a compatibility shim for Delete_Chunk(). Implement DELCHUNK_RECOVER flag so sysinstall can ask libdisk to recover space when deleting a chunk. Notes: svn path=/head/; revision=88995
* Sort the disknames when we get them from the kernel.Poul-Henning Kamp2001-12-231-10/+23
| | | | | | | Submitted by: <anarcat@anarcat.dyndns.org> Notes: svn path=/head/; revision=88448
* Add auto-fill-on-delete. When deleting an 'A'uto created partitionMatthew Dillon2001-12-092-17/+38
| | | | | | | | | | | | | | | | | | | sysinstall will automatically expand the previous partition to take up the freed up space. So you can 'D'elete /home and /usr will get the combined space, or you can 'D'elete /tmp and /var will get the combined space. This gives the user, developer, or lay person a huge amount of flexibility in constructing partitions from an 'A'uto base. It takes only 3 or 4 keystrokes to achieve virtually any combination of having or not having a /tmp and/or /home after doing an 'A'uto create. Change 'A'uto creation of /var/tmp to 'A'uto creation /tmp, which should be less controversial. MFC after: 6 days Notes: svn path=/head/; revision=87581
* One more fix for sysinstall/libdisk to create a device fileMakoto Matsushita2001-11-111-6/+10
| | | | | | | | | | | if and only if a target directory is devfs. Previous patch doesn't correct, it's unconditionally avoid to create a device file if kernel knows devfs. PR: 31109 Notes: svn path=/head/; revision=86260
* Add EFI GPT (238, 0xEE) and EFI System Parition (239, 0xEF)Peter Wemm2001-10-151-0/+2
| | | | Notes: svn path=/head/; revision=84965
* Check to see if the devfs MIB exists and return 1 if it exists ratherJordan K. Hubbard2001-10-101-0/+9
| | | | | | | | than making device node(s). Submitted by: Hiroo ONO <hiroo@oikumene.gcd.org> Notes: svn path=/head/; revision=84748
* Fixed bitrot in synopsis. The change of the return type ofBruce Evans2001-10-031-1/+1
| | | | | | | | Set_Boot_Blocks() from void to int had not reached here. Callers still don't check the new return value. Notes: svn path=/head/; revision=84394
* mdoc(7) police: Use the new .In macro for #include statements.Ruslan Ermilov2001-10-011-2/+2
| | | | Notes: svn path=/head/; revision=84306
* Add __FBSDID()s to libdiskMatthew Dillon2001-09-309-27/+27
| | | | Notes: svn path=/head/; revision=84200
* Mark some functions as __printflike() and/or taking const char * argumentsKris Kennaway2001-08-201-0/+2
| | | | | | | | | instead of char *. MFC after: 2 weeks Notes: svn path=/head/; revision=81975
* mdoc(7) police: s/BSD/.Bx/ where appropriate.Ruslan Ermilov2001-08-141-1/+3
| | | | Notes: svn path=/head/; revision=81622
* mdoc(7) police: protect trailing full stops of abbreviationsRuslan Ermilov2001-08-101-1/+1
| | | | | | | with a trailing zero-width space: `e.g.\&'. Notes: svn path=/head/; revision=81449
* Remove whitespace at EOL.Dima Dorfman2001-07-151-2/+2
| | | | Notes: svn path=/head/; revision=79754
* + add u_long sector_size to struct disk (documented in libdisk.3)Jordan K. Hubbard2001-05-138-80/+101
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + make Open_Disk sense the sector size by trying 512, 1024 and 2048 in this order. This makes the kernel note that dscheck(cd1): bio_bcount 512 is not on a sector boundary (ssize 2048) dscheck(cd1): bio_bcount 1024 is not on a sector boundary (ssize 2048) if 2048 is the sector size. If this worries anyone: the message is from /usr/src/sys/kern/subr_diskslice.c and shutups are to be placed there. + Have read_block and write_block use an additional parameter, the sector size. + replace all barfout calls with return NULL, 0, __LINE__, etc. Note that this does NOT emit diagnostics. More often than not, you don't want library functions to scribble on stderr -- it may not even be available. The right thing is to propagate the error condition to upper management. The app should take care of errors. + use d1->sector_size instead of 512 in various places. I've left many places untouched, especially those writing MBRs. I simply added another arg hardcoded as 512. This is because I would not know what I'm doing... I felt this approach would be reasonably backward compatible and not introduce any new bugs in critical software. Famous last words. Messing with MBRs might soon put me in the same screwup meister category as, uh, never mind. :-) + bump the max no of disks from 20 to 32 (due to PR 24503). PR: 8434 / 8436 / 24503 Submitted by: Jens Schweikhardt <schweikh@schweikhardt.net> Notes: svn path=/head/; revision=76551
* Add spaces around operators.David E. O'Brien2001-04-018-244/+248
| | | | | | | | 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
* Correct a comment.David E. O'Brien2001-04-011-1/+1
| | | | Notes: svn path=/head/; revision=75068
* Try to untangle some of the #ifdef spaghetti.David E. O'Brien2001-04-012-12/+12
| | | | | | | | | Also, looking to the future, don't assume all the world is an i386 and all its disk layout brain damage will be repeated by other platforms. So all the diking out if we are an Alpha, becomes adding in if we are an i386. Notes: svn path=/head/; revision=75067
* Add back <err.h> for warn().David E. O'Brien2001-04-011-0/+1
| | | | | | | | (of course it's pretty stupid to call it, as printf doesn't work w/in sysinstall, and sysinstall is the only consumer of libdisk) Notes: svn path=/head/; revision=75066
* Quiet warnings on the Alpha.David E. O'Brien2001-04-012-3/+11
| | | | Notes: svn path=/head/; revision=75065
* Add back <err.h> for warn().David E. O'Brien2001-04-011-0/+1
| | | | | | | | (of course it's pretty stupid to call it, as printf doesn't work w/in sysinstall, and sysinstall is the only consumer of libdisk) Notes: svn path=/head/; revision=75064
* MAN[1-9] -> MAN.Ruslan Ermilov2001-03-271-1/+1
| | | | Notes: svn path=/head/; revision=74870
* Libraries should _never_ call exit() themselves (or its alternate spellingDavid E. O'Brien2001-03-189-33/+33
| | | | | | | | | | | | | | `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
* Fixed bitrot in prototype(s) in synopsis.Bruce Evans2001-02-051-1/+1
| | | | Notes: svn path=/head/; revision=72062
* mdoc(7) police: split punctuation characters + misc fixes.Ruslan Ermilov2001-02-011-1/+1
| | | | Notes: svn path=/head/; revision=71895
* Prepare for mdoc(7)NG.Ruslan Ermilov2000-12-291-1/+1
| | | | Notes: svn path=/head/; revision=70481
* Do install-time configuration of the i386 boot0 boot manager. AtRobert Nordier2000-12-121-1/+23
| | | | | | | | | | | | present, this is limited to turning on the packet option if any of disk slices begin above cylinder 1023. The effect of this change should therefore be to automatically enable LBA support, as needed, when installing FreeBSD. Something-of-the-kind-requested-by: peter Notes: svn path=/head/; revision=69920
* logRuslan Ermilov2000-11-221-3/+5
| | | | Notes: svn path=/head/; revision=69026
* Use Fx macro wherever possible.Ruslan Ermilov2000-11-141-1/+3
| | | | Notes: svn path=/head/; revision=68716
* Avoid use of direct troff requests in mdoc(7) manual pages.Ruslan Ermilov2000-11-101-2/+1
| | | | Notes: svn path=/head/; revision=68575
* MFS: add ATA raid support for sysinstallJordan K. Hubbard2000-11-062-2/+4
| | | | Notes: svn path=/head/; revision=68409
* Use kern.disks sysctl on PC-98.Yoshihiro Takahashi2000-10-211-4/+0
| | | | Notes: svn path=/head/; revision=67417
* Turn dkcksum() into an __inline function.Poul-Henning Kamp2000-09-162-3/+1
| | | | | | | Change its type to u_int_16_t. Notes: svn path=/head/; revision=65921
* Teach libdisk about 'aac'Mike Smith2000-09-132-2/+4
| | | | Notes: svn path=/head/; revision=65801
* - Added support for installing boot0 and boot0.5 for PC-98.Yoshihiro Takahashi2000-08-123-2/+75
| | | | | | | - Cosmetic changes. Notes: svn path=/head/; revision=64555
* - Fixed warnings and typo.Yoshihiro Takahashi2000-08-082-1/+6
| | | | | | | | | - Recognize slice type 0x24 as FAT (only PC-98). Submitted by: Nobuyuki Koganemaru <kogane@koganemaru.co.jp> Notes: svn path=/head/; revision=64379
* Don't use kern.disks sysctl on PC-98 because the wd driver doesn't callYoshihiro Takahashi2000-08-071-0/+4
| | | | | | | disk_create() function. Notes: svn path=/head/; revision=64324
* - Allow support for MBR boot loaders that are longer than one sector. AsJohn Baldwin2000-07-126-62/+16
| | | | | | | | | 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
* Don't call printf without a format string.Kris Kennaway2000-07-111-1/+1
| | | | Notes: svn path=/head/; revision=62980
* _PATH_DEV'ify libdiskJohn Baldwin2000-06-284-7/+11
| | | | Notes: svn path=/head/; revision=62223
* Let Disk_Names() take advantage of the kern.disks sysctl if it'sNeil Blakey-Milner2000-06-231-0/+15
| | | | | | | | | | | | available. If not, it falls back to the existing hack and slash method. A positive side effect is that non-root users may now use Disk_Names(), for non-dangerous libh/disk.tcl testing. Reviewed by: phk Notes: svn path=/head/; revision=62008
* Re-support "wd" if PC98 is defined. Because PC-98 still uses the wd driver.Yoshihiro Takahashi2000-06-052-1/+9
| | | | Notes: svn path=/head/; revision=61279
* /dev/rXXX -> /dev/XXXMike Smith2000-05-313-5/+5
| | | | | | | | This should fix sysinstall and other tools that don't expect the 'r' devices to exist anymore (and thus don't create them). Notes: svn path=/head/; revision=61101
* De-support 'wd'; with it making a dual appearance with 'ad', thingsMike Smith2000-05-302-4/+2
| | | | | | | | depending on libdisk to detect a list of actually-there disk devices were providing duplicate entries (eg. sysinstall). Notes: svn path=/head/; revision=61093