From owner-cvs-all Sun Mar 17 4:18:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B3FF437B41B; Sun, 17 Mar 2002 04:18:05 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HCI5831637; Sun, 17 Mar 2002 04:18:05 -0800 (PST) (envelope-from sobomax) Message-Id: <200203171218.g2HCI5831637@freefall.freebsd.org> From: Maxim Sobolev Date: Sun, 17 Mar 2002 04:18:05 -0800 (PST) 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 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 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