Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 04 Apr 2000 10:48:07 -0600
From:      Warner Losh <imp@village.org>
To:        Randy Bush <randy@psg.com>
Cc:        FreeBSD Stable <freebsd-stable@FreeBSD.ORG>
Subject:   Re: 3.4-stable to 4.0-stable wedge 
Message-ID:  <200004041648.KAA69682@harmony.village.org>
In-Reply-To: Your message of "Mon, 03 Apr 2000 21:12:00 PDT." <E12cKh6-000Lxk-00@rip.psg.com> 
References:  <E12cKh6-000Lxk-00@rip.psg.com>  

next in thread | previous in thread | raw e-mail | index | archive | help
In message <E12cKh6-000Lxk-00@rip.psg.com> Randy Bush writes:
: i did a buildworld and
: 
:     cd /usr/src
:     <see notes below>				[**]
:     make buildworld
:     cd sbin/mknod
:     make install
:     cd sys/modules
:     make install
:     <follow directions to build/install a kernel>
: 

We've upgraded the instructions a little.  The above now says:
	To build a kernel
	-----------------
	cd /usr/src
	# If you have not already done so, please buildworld here
	make buildkernel KERNEL=<YOUR_KERNEL_HERE>
	make installkernel  KERNEL=<YOUR_KERNEL_HERE>
	# Verify that the new kernel works, it will be installed as
	# /YOUR_KERNEL_HERE
	chflags noschg /kernel
	mv /kernel /kernel.old
	mv /YOUR_KERNEL_HERE /kernel
	chflags schg /kernel

which avoids the libc.so.4.0 problem you ran into.

: # SCSI peripherals
: #device		scbus		# SCSI bus (required)
: #device		da		# Direct Access (disks)
: device		sa		# Sequential Access (tape etc)
: #device		cd		# CD
: device		pass		# Passthrough device (direct SCSI access)

commenting out "required" devices generally is a bad idea :-).  That's
likely the root of your problem.  You need to have scbus in your
kernel to deal properly with having the ahc driver, the pass driver
and the sa driver.

Warner




To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200004041648.KAA69682>