summaryrefslogtreecommitdiffstats
path: root/lib/libstand/zipfs.c
Commit message (Collapse)AuthorAgeFilesLines
* Add splitfs vfs layer into libstand, which allows loading big kernels andsobomax2002-03-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | modules split across several physical medias. Following is how it works: The splitfs code, when asked to open "foo" looks for a file "foo.split" which is a text file containing a list of filenames and media names, e.g. foo.aa "Kernel floppy 1" foo.ab "Kernel floppy 2" foo.ac "Kernel and modules floppy" For each file segment, the process is: - try to open the file - prompt "Insert the disk labelled <whatever> and press any key..." - try to open the file - return error if file could not be located RE team is free to use this feature in the upcoming 5.0-DP1. Reviewed by: msmith, dcs
* Add __FBSDID()s to libstanddillon2001-09-301-3/+3
|
* Add support for loading bzip2-compressed filesystems. Among other thingssobomax2001-09-181-2/+3
| | | | | | | this would allow to load bzip2-compressed kernels/modules from the loader(8) (support for that will be committer separately). MFC after: 1 month
* Check for malloc failure in a couple of caseskris2001-09-031-0/+4
| | | | MFC after: 2 weeks
* Add a readdir function to the loader fsops vector, and implement thejlemon2000-04-291-1/+2
| | | | functionality for some of the filesystesms.
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Replace the old and extremely icky Mach/NetBSD allocator with a similarlymsmith1998-09-261-2/+4
| | | | | | | | | | | | | | | | | compact and much better one donated by Matt Dillon. Implement a simple sbrk() which uses the existing setheap() api. Remove the custom allocator from the UFS code. It wasn't working quite right, and it shouldn't be needed with the new allocator. Fix a serious problem with changing the value of already-existent environment variables. Don't attempt to modify the supposedly-const argument to putenv() Fix an off-by-one sizing error in the zipfs code detected by the new allocator. Submitted by: zmalloc from Matt Dillon <dillon@backplane.com>
* Path arguments to *_open functions should be const, but we were manglingmsmith1998-09-181-3/+3
| | | | | | them. Submitted by: write-protected text segment in BTX
* This is libstand; a support library for standalone executables (eg. bootstrapmsmith1998-08-201-0/+316
modules). Obtained from: NetBSD, with some architectural changes and many additions.
OpenPOWER on IntegriCloud