RE: [uClinux-dev] Driver appears to be successfully registetered butdoesn't appear in /dev

2009-12-17 Thread David Wooff
you need to create it yourself with `mknod`, or if you want to utilize the hotplug stack, you have to create some classes/devices using the kobject layer. /dev is not a pseudo file system (ignoring the devtmpfs in 2.6.32) which means *someone* has to create the device node. it's either

Re: [uClinux-dev] Driver appears to be successfully registetered butdoesn't appear in /dev

2009-12-17 Thread Mike Frysinger
On Thursday 17 December 2009 12:11:16 David Wooff wrote: you need to create it yourself with `mknod`, or if you want to utilize the hotplug stack, you have to create some classes/devices using the kobject layer. /dev is not a pseudo file system (ignoring the devtmpfs in 2.6.32) which