Date: Mon, 2 Jan 1995 12:50:15 +0100 From: Lars Koeller <uphya001@odie.physik2.uni-rostock.de> To: sc67+@andrew.cmu.edu Cc: freebsd-questions@freefall.cdrom.com Subject: Re: Boot Manager Prob? Message-ID: <199501021150.MAA00828@odie.physik2.uni-rostock.de> In-Reply-To: Mail from 'Seth Andrew Covitz <sc67%2B@andrew.cmu.edu>' dated: Thu, 29 Dec 1994 14:03:49 -0500 (EST)
next in thread | previous in thread | raw e-mail | index | archive | help
Hello! You have to change the file boot.c in /usr/src/sys/i386/boot. Change the line part = unit = 0; into part = 0; unit = 1; even if you have one ISA drive (wd0) and a scsi dive as the second disk (sd0) you must also modify the following line: maj = (drive&0x80 ? 0 : 2); /* a good first bet */ into maj = (drive&0x80 ? 1 : 2); /* a good first bet */ and reinstall the bootblocks on the drive. Good luck Lars ------------------------------------------------------------------------------ Lars Köller E-Mail: University of Rostock (Germany) lars.koeller@odie.physik2.Uni-Rostock.DE Fachbereich Physik lars.koeller@physik.Uni-Rostock.DE Universitätsplatz 3 Phone: +49 381/498-1665 or 498-1648 18051 Rostock Fax: +49 381/498-1667
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199501021150.MAA00828>