From owner-freebsd-fs@FreeBSD.ORG Wed Aug 4 12:18:08 2004 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F129E16A4CE; Wed, 4 Aug 2004 12:18:08 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7016C43D62; Wed, 4 Aug 2004 12:18:08 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i74CGYe8004795; Wed, 4 Aug 2004 08:16:34 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i74CGW2U004792; Wed, 4 Aug 2004 08:16:33 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Wed, 4 Aug 2004 08:16:31 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: ravi In-Reply-To: <1091608277.4760.68.camel@ravin> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Brian Fundakowski Feldman cc: Raja Guha cc: Dan Nelson cc: freebsd-fs@freebsd.org cc: Poul-Henning Kamp cc: Aniruddha Bohra cc: Andrey Simonenko Subject: Re: Regarding mknod X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Aug 2004 12:18:09 -0000 On Wed, 4 Aug 2004, ravi wrote: > Can u tell me the solution for this ? In FreeBSD 5.x, devfs will automatically create devices as specified in make_dev(), being unable to run mknod(8) should not be a problem. Is your device node appearing? Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research > > On Wed, 2004-08-04 at 13:17, Poul-Henning Kamp wrote: > > In message <1091602736.4760.64.camel@ravin>, ravi writes: > > >Hi, > > >If I run "make load " from /usr/share/examples/kld/cdev/module > > directory > > >then I'm getting the following error message . > > > > > ># make load > > >mknod /dev/cdev c 32 0 > > >mknod: /dev/cdev : No such file or directory > > >*****Error code 1 > > > > > >Even if I execute the " mknod /dev/cdev c 32 0 " command at the > > terminal > > >I'm getting the same error message . > > > > > > > > >What is the reason for this ? > > >Please tell me the solution as well .. > > > > the load target in the makefile is outdated and the mknod command should > > simply be removed. > >