summaryrefslogtreecommitdiff
path: root/lib/libstand/zipfs.c
Commit message (Collapse)AuthorAgeFilesLines
* Renamed the loader's zipfs to gzipfs. zipfs.c was repo-copied to gzipfs.c.Jake Burkholder2002-12-191-324/+0
| | | | Notes: svn path=/head/; revision=108100
* Add splitfs vfs layer into libstand, which allows loading big kernels andMaxim Sobolev2002-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 Notes: svn path=/head/; revision=92494
* Add __FBSDID()s to libstandMatthew Dillon2001-09-301-3/+3
| | | | Notes: svn path=/head/; revision=84221
* Add support for loading bzip2-compressed filesystems. Among other thingsMaxim Sobolev2001-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 Notes: svn path=/head/; revision=83610
* Check for malloc failure in a couple of casesKris Kennaway2001-09-031-0/+4
| | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=82852
* Add a readdir function to the loader fsops vector, and implement theJonathan Lemon2000-04-291-1/+2
| | | | | | | functionality for some of the filesystesms. Notes: svn path=/head/; revision=59766
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50476
* Replace the old and extremely icky Mach/NetBSD allocator with a similarlyMike Smith1998-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> Notes: svn path=/head/; revision=39665
* Path arguments to *_open functions should be const, but we were manglingMike Smith1998-09-181-3/+3
| | | | | | | | | them. Submitted by: write-protected text segment in BTX Notes: svn path=/head/; revision=39468
* This is libstand; a support library for standalone executables (eg. bootstrapMike Smith1998-08-201-0/+316
modules). Obtained from: NetBSD, with some architectural changes and many additions. Notes: svn path=/cvs2svn/branches/MSMITH/; revision=38451