My Kamikaze still have kernel 2.4, because 2.6 not frendly for my DLink DIR-320 router.
I don't know, is this problem on 2.6 kernels, but on my 2.4, I have it.
On boot up router can't automatically mount my USB flash drive
for fix this problem
First:
check (and edit if need) your file: /etc/config/fstab
in section config mount, must be:
-----------------------------------------------------------------
option target /usbdrive
option device /dev/scsi/host0/bus0/target0/lun0/part1
option enabled 1
-----------------------------------------------------------------
other options of this section depends from your fs-type of the flash drive ( in my case this - ext3 fs) are:
-----------------------
option fstype ext3
option options rw,sync
------------------------
Second:
in script /etc/init.d/fstab
add only one strig in section(function): start ()
between strings
------------------------------------------------------
config_foreach do_swapon swap
mount -a
------------------------------------------------------
add string: sleep 20
in "new edition" it must be:
------------------------------------------------------
config_foreach do_swapon swap
sleep 20
mount -a
------------------------------------------------------
this just add some 20 sec. delay before try of aytomaticaly mountig for correct USB flash initialisation
now reboot and check automounting of USB-flash
must be work.... have a fun
ps/ forgive me my awful englesh
(Last edited by zeon35 on 29 Mar 2009, 15:21)