Date: Sun, 17 Mar 2002 04:18:05 -0800 (PST) From: Maxim Sobolev <sobomax@FreeBSD.org> To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/loader conf.c src/lib/libstand Makefile bzipfs.c splitfs.c stand.h zipfs.c Message-ID: <200203171218.g2HCI5831637@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
sobomax 2002/03/17 04:18:05 PST Modified files: sys/boot/i386/loader conf.c lib/libstand Makefile bzipfs.c stand.h zipfs.c Added files: lib/libstand splitfs.c Log: Add splitfs vfs layer into libstand, which allows loading big kernels and 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 Revision Changes Path 1.28 +1 -0 src/lib/libstand/Makefile 1.4 +1 -1 src/lib/libstand/bzipfs.c 1.1 +287 -0 src/lib/libstand/splitfs.c (new) 1.30 +1 -0 src/lib/libstand/stand.h 1.9 +1 -1 src/lib/libstand/zipfs.c 1.19 +1 -0 src/sys/boot/i386/loader/conf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200203171218.g2HCI5831637>