/dev/ttyUSB symlinks not created when they should have linked to /dev/usb/tts Reproducible: Always Steps to Reproduce: 1. emerge devfsd 2. killall devfsd 3. /sbin/devfsd /dev Actual Results: The /dev/ttyUSB symlinks are not created Expected Results: Created /dev/ttyUSB symlink to /dev/usb/tts Fixed problem by modifying /etc/devfsd.conf and adding REGISTER ^usb/tts/(.*)$ CFUNCTION GLOBAL mksymlink $devname ttyUSB\1 UNREGISTER ^usb/tts/(.*)$ CFUNCTION GLOBAL unlink ttyUSB\1 or modify the compat_name.c file in devfsd and add the line to translate_table[] {"usb/tts/", "ttyUSB%s"}, /* USB Serial Device */
did you try looking at /dev/tts/USB[#] by chance? That's where must of my usb-serial converter device nodes end up.
added to portage, thanks