Re: devfs not making vn devices

2001-02-03 Thread Poul-Henning Kamp

In message [EMAIL PROTECTED], Doug Barton 
writes:

   I've been using devfs for a long time without problems. I had
device vn in my kernel conf since the pre-devfs days, and today I needed
to use a vn device to build picobsd. Lo and behold, I don't have any vn
devices of any sort in /dev. I tried 'vnconfig -c /dev/vn0' but it also
complained that the device didn't exist.

Use md instead of vn, it has all the same (and more) functionality.

See mdconfig(8).

--
Poul-Henning Kamp   | UNIX since Zilog Zeus 3.20
[EMAIL PROTECTED] | TCP/IP since RFC 956
FreeBSD committer   | BSD since 4.3-tahoe
Never attribute to malice what can adequately be explained by incompetence.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



devfs not making vn devices

2001-02-02 Thread Doug Barton

I've been using devfs for a long time without problems. I had
device vn in my kernel conf since the pre-devfs days, and today I needed
to use a vn device to build picobsd. Lo and behold, I don't have any vn
devices of any sort in /dev. I tried 'vnconfig -c /dev/vn0' but it also
complained that the device didn't exist.

I know that the goal is for vn to be phased out (at least that's
my impression) but what do we do in the meantime?

Doug
-- 
"Pain heals. Chicks dig scars. Glory . . . lasts forever."
-- Keanu Reeves as Shane Falco in "The Replacements"

Do YOU Yahoo!?




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



RE: devfs not making vn devices

2001-02-02 Thread John Baldwin


On 03-Feb-01 Doug Barton wrote:
   I've been using devfs for a long time without problems. I had
 device vn in my kernel conf since the pre-devfs days, and today I needed
 to use a vn device to build picobsd. Lo and behold, I don't have any vn
 devices of any sort in /dev. I tried 'vnconfig -c /dev/vn0' but it also
 complained that the device didn't exist.
 
   I know that the goal is for vn to be phased out (at least that's
 my impression) but what do we do in the meantime?
 
 Doug

mdconfig(8) has all of the functionality of vnconfig now, along with all the
functionality of the old md(4) driver.

-- 

John Baldwin [EMAIL PROTECTED] -- http://www.FreeBSD.org/~jhb/
PGP Key: http://www.baldwin.cx/~john/pgpkey.asc
"Power Users Use the Power to Serve!"  -  http://www.FreeBSD.org/


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: devfs not making vn devices

2001-02-02 Thread Peter Wemm

Doug Barton wrote:
   I've been using devfs for a long time without problems. I had
 device vn in my kernel conf since the pre-devfs days, and today I needed
 to use a vn device to build picobsd. Lo and behold, I don't have any vn
 devices of any sort in /dev. I tried 'vnconfig -c /dev/vn0' but it also
 complained that the device didn't exist.
 
   I know that the goal is for vn to be phased out (at least that's
 my impression) but what do we do in the meantime?

In the meantime?  besides using mdconfig, try this:

mkdir /dev2
cd /dev2
sh /usr/src/etc/MAKEDEV vn0
vnconfig -c /dev2/vn0 

 Doug

Cheers,
-Peter
--
Peter Wemm - [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]
"All of this is for nothing if we don't go to the stars" - JMS/B5



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message