Hi,
I found a tutorial for using USB on the WL-HDD on
http://wiki.freifunk-leipzig.public-ip.org/index.php/Asus_WL-HDD2.5#USBipkg install kmod-usb-core
ipkg install kmod-usb2
ipkg install kmod-usb-storage
ipkg install kmod-usb-printer
ipkg install kmod-usb-ohci
then I created a /etc/init.d/S12usb with:
#!/bin/sh
insmod usbcore
insmod ehci-hcd
insmod usb-ohci
insmod scsi_mod
insmod sd_mod
insmod sg
insmod usb-storage
insmod printer
but
root@OpenWrt:/opt# insmod ehci-hcd
Using /lib/modules/2.4.30/ehci-hcd.o
insmod: init_module: ehci-hcd: No such device
I used fdisk to create a partiton on the 128MB(!) stick:
fdisk -l
Disk /dev/scsi/host0/bus0/target0/lun0/disc: 1073 MB, 1073741312 bytes
34 heads, 61 sectors/track, 1011 cylinders
Units = cylinders of 2074 * 512 = 1061888 bytes
Device Boot Start End Blocks Id System
/dev/scsi/host0/bus0/target0/lun0/part1 1 1011 1048376+ b W95 FAT32
and its not possible to mount
mount /dev/scsi/host0/bus0/target0/lun0/part1 /opt/usb
mount: Mounting /dev/scsi/host0/bus0/target0/lun0/part1 on /opt/usb failed: No such file or directory
whereas
mount /dev/scsi/host0/bus0/target0/lun0/disk /opt/usb
is possible but does not work really - created files disappear nearly immediately.
Someone knows what I'm doing wrong here?
thanks + regards
Matthias