Hi, On Sun, 26 Aug 2007 23:22:56 -0400 "Walter Dnes" <[EMAIL PROTECTED]> wrote:
> Now that I have a working keyboard and a busybox shell, I'm trying > to mount a USB key. I did... > > mknod /dev/sda b 8 0 > mknod /dev/sda1 b 8 1 > > ...inserted a USB key, and tried mounting it. dmesg indicates that > the USB driver did find sda and sda1. However, the "mount" command > always fails with a cryptic, and useless, error message. Is there an > example somewhere of how busybox's "mount" command works? Or does it > not support "msdos" or "vfat" filesystem types? FS support has got to be inside the kernel. When module autoloading doesn't work, you'll have to make sure that everything needed is present. While the mount error message might be useless, is there any reasonable error report in dmesg? BTW, you can mount /proc and then look for PCI dev information and partitioning information there. $ mount -t proc none /proc $ cat /proc/bus/pci/devices (vendor/device string is on position 2) $ cat /proc/partitions and $ cat /proc/filesystems are your friends. -hwh -- [EMAIL PROTECTED] mailing list