This is because I foolishly used /dev/null before it was created, so an empty file was created. This prevented the actual device node from being created. The attached patch fixes that.
-- And that's my crabbing done for the day. Got it out of the way early, now I have the rest of the afternoon to sniff fragrant tea-roses or strangle cute bunnies or something. -- Michael Devore GnuPG Key Fingerprint 86 F5 81 A5 D4 2E 1F 1C http://gnupg.org The C Shore (Daniel Dickinson's Website) http://cshore.is-a-geek.com
Index: package/base-files/files/lib/preinit/20_device_fs_mount
===================================================================
--- package/base-files/files/lib/preinit/20_device_fs_mount (revision 19468)
+++ package/base-files/files/lib/preinit/20_device_fs_mount (working copy)
@@ -15,7 +15,7 @@
}
choose_device_fs() {
- if grep devfs /proc/filesystems > /dev/null; then
+ if grep devfs /proc/filesystems; then
do_mount_devfs
elif [ -x /sbin/hotplug2 ]; then
do_mount_hotplug
signature.asc
Description: This is a digitally signed message part
_______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
