2.4.37 Filesystem and USB Kernel Modules

Post new topic   Reply to topic    DD-WRT Forum Index -> Broadcom SoC based Hardware
Goto page 1, 2, 3  Next
Author Message
rkozola
DD-WRT User


Joined: 27 Oct 2007
Posts: 152

PostPosted: Sun Nov 30, 2008 23:27    Post subject: 2.4.37 Filesystem and USB Kernel Modules Reply with quote
I have had a few requests for kernel modules. The attached contains the following:

/fs/hfs.o (Apple HFS file system support)
/fs/hfsplus.o (Apple HFS+ (Extended HFS) file system support)
/fs/nfs.o (NFS file system support w/ NFSv3 client support)
/fs/nfsd.o (NFS server support w/ NFSv3 client support)
/fs/ntfs.o (NTFS file system support w/ NTFS write support)
/usb/acm.o (Modem (CDC ACM) support)
/usb/hid.o (Human Interface Device (full HID) support w/ /dev/hiddev raw HID device support)
/usb/scanner.o (USB Scanner support)
/usb/serial/belkin_sa.o (Belkin and Peracom Single Port Serial Driver)
/usb/serial/cyberjack.o (REINER SCT cyberJack pinpad/e-com chipcard reader)
/usb/serial/digi_acceleport.o (Digi International AccelePort USB Serial Driver)
/usb/serial/empeg.o (Empeg empeg-car Mark I/II Driver)
/usb/serial/ftdi_sio.o (FTDI Single Port Serial Driver)
/usb/serial/io_edgeport.o (Inside Out Edgeport Serial Driver)
/usb/serial/io_ti.o (Inside Out Edgeport Serial Driver (TI devices))
/usb/serial/ipaq.o (Compaq iPAQ / HP Jornada / Casio EM500 Driver)
/usb/serial/ir-usb.o (IR Dongle Serial Driver)
/usb/serial/keyspan.o (Keyspan USA-xxx Serial Driver w/ 28,28X,28XA,28XB,19,18X,19W,19QW,19QI,MPR,49W,49WLC)
/usb/serial/keyspan_pda.o (Keyspan PDA Single Port Serial Driver)
/usb/serial/kl5kusb105.o (KL5KUSB105 (Palmconnect) Driver)
/usb/serial/kobil_sct.o (UKOBIL chipcard reader)
/usb/serial/mct_u232.o (MCT Single Port Serial Driver)
/usb/serial/omninet.o (ZyXEL omni.net LCD Plus Driver)
/usb/serial/pl2303.o (Prolific 2303 Single Port Serial Driver)
/usb/serial/usbserial.o (USB Serial Converter support w/ USB Generic Serial Driver)
/usb/serial/visor.o (Handspring Visor / Palm m50x / Sony Clie Driver)
/usb/serial/whiteheat.o (ConnectTech WhiteHEAT Serial Driver)

**Built from svn 11990



fs_and_usb_modules_2_4_37.tar.gz
 Description:

Download
 Filename:  fs_and_usb_modules_2_4_37.tar.gz
 Filesize:  556.1 KB
 Downloaded:  17764 Time(s)



Last edited by rkozola on Wed Apr 22, 2009 22:09; edited 1 time in total
Sponsor
aag_ddwrt
DD-WRT Novice


Joined: 06 Aug 2008
Posts: 11

PostPosted: Sat Jan 24, 2009 22:37    Post subject: Re: 2.4.36.6 Filesystem and USB Kernel Modules Reply with quote
Hi,

I have been trying to use the ntfs module:

rkozola wrote:

/fs/ntfs.o (NTFS file system support w/ NTFS write support)


Aparently it should have write support, but when I mount a NTFS formated drive, it is mounted as read-only. I get this message in "dmesg":

NTFS: Warning! NTFS volume version is Win2k+: Mounting read-only

I'm not too worried about this, I was just playing around with an old HD. I wanted to know if there is something I can do to be able to write on it too or I have to re-format the HD as vfat.
dontomase
DD-WRT Novice


Joined: 02 Mar 2009
Posts: 6

PostPosted: Mon Mar 02, 2009 17:16    Post subject: Reply with quote
I am a n00b on this but how do I install it on my router with dd-wrt it´s a asus wl-500w.
djmulder
DD-WRT User


Joined: 19 Jan 2009
Posts: 120

PostPosted: Mon Mar 02, 2009 19:41    Post subject: Reply with quote
dontomase wrote:
I am a n00b on this but how do I install it on my router with dd-wrt it´s a asus wl-500w.


n00b here too, but I heard alot about insmod Razz

gonna try if I'm right ^.^



hmm *annoyed* bzip not installed on the mega for the 610 Surprised so can't unzip :< bleh..means I have to start up knoppix again *reminds self to dl some vm software*
aag_ddwrt
DD-WRT Novice


Joined: 06 Aug 2008
Posts: 11

PostPosted: Mon Mar 02, 2009 20:35    Post subject: Reply with quote
Here is a hint on what I did to use it. I assume you have some space in your router to save the file(s) and you have a way to put the file(s) in it (smb, ftp...).

I downloaded the modules from above, copied the ntfs.o module on my router (/jffs) and:

1.- run "lsmod", you will see that the ntfs module is not loaded.
2.- run "insmod /jffs/ntfs.o".
3.- run "lsmod" again and check that the ntfs module is loaded and labeled as unused. If the module is not loaded, there is not much I can tell you, maybe run "dmesg" to see if there is any message.
4.- mount your ntfs formated drive as you would normally do, e.g.:
mount /dev/scsi/host1/bus0/target0/lun0/part1 /mmc
(the "/dev/scsi..." part might be different in your case, maybe host0, host2, host3..., depending on how many usb devices you have plugged in)

This command should mount the usb drive. You can check again "dmesg" and see if there is any message related to the mounting procedure.
djmulder
DD-WRT User


Joined: 19 Jan 2009
Posts: 120

PostPosted: Mon Mar 02, 2009 20:44    Post subject: Reply with quote
aag_ddwrt wrote:
Here is a hint on what I did to use it. I assume you have some space in your router to save the file(s) and you have a way to put the file(s) in it (smb, ftp...).

I downloaded the modules from above, copied the ntfs.o module on my router (/jffs) and:

1.- run "lsmod", you will see that the ntfs module is not loaded.
2.- run "insmod /jffs/ntfs.o".
3.- run "lsmod" again and check that the ntfs module is loaded and labeled as unused. If the module is not loaded, there is not much I can tell you, maybe run "dmesg" to see if there is any message.
4.- mount your ntfs formated drive as you would normally do, e.g.:
mount /dev/scsi/host1/bus0/target0/lun0/part1 /mmc
(the "/dev/scsi..." part might be different in your case, maybe host0, host2, host3..., depending on how many usb devices you have plugged in)

This command should mount the usb drive. You can check again "dmesg" and see if there is any message related to the mounting procedure.


request Wink can you repack to gz pls? so I can unpack on my router Razz
MrAlvin
DD-WRT User


Joined: 07 Jan 2007
Posts: 457
Location: Denmark

PostPosted: Mon Mar 02, 2009 22:57    Post subject: Reply with quote
gz packed


fs_and_usb_modules_2_4_36_6.tar.gz
 Description:

Download
 Filename:  fs_and_usb_modules_2_4_36_6.tar.gz
 Filesize:  518.18 KB
 Downloaded:  5518 Time(s)

djmulder
DD-WRT User


Joined: 19 Jan 2009
Posts: 120

PostPosted: Mon Mar 02, 2009 23:02    Post subject: Reply with quote
<3 ta


ntfs seems to work, just can't remove files.
dontomase
DD-WRT Novice


Joined: 02 Mar 2009
Posts: 6

PostPosted: Tue Mar 03, 2009 6:09    Post subject: Reply with quote
thx..

I will try this as soon as I get home..
dontomase
DD-WRT Novice


Joined: 02 Mar 2009
Posts: 6

PostPosted: Tue Mar 03, 2009 20:49    Post subject: Reply with quote
Hmm I cant put the file on the router tftp doesn't work neither the tftpd client.

I can telnet to the router but how do I get the file to it.
MrAlvin
DD-WRT User


Joined: 07 Jan 2007
Posts: 457
Location: Denmark

PostPosted: Tue Mar 03, 2009 22:05    Post subject: Reply with quote
dontomase wrote:
Hmm I cant put the file on the router tftp doesn't work neither the tftpd client.

I can telnet to the router but how do I get the file to it.

What version of dd-wrt are you using?
Are you using a USB enabled router?

WinSCP can be used to copy files from a windows pc to your router - If you enable SSH on the router.
Please note that only /tmp is writabel on a default router.
trilith
DD-WRT Novice


Joined: 10 Oct 2008
Posts: 20

PostPosted: Wed Mar 04, 2009 6:49    Post subject: Reply with quote
Thanks, Hid.o and acm.o works like charm.

do you have kernal moduel for webcam ? how to make those *.o file from .h driver?
sorry I am new to these .
dontomase
DD-WRT Novice


Joined: 02 Mar 2009
Posts: 6

PostPosted: Thu Mar 05, 2009 5:42    Post subject: Reply with quote
MrAlvin wrote:
dontomase wrote:
Hmm I cant put the file on the router tftp doesn't work neither the tftpd client.

I can telnet to the router but how do I get the file to it.

What version of dd-wrt are you using?
Are you using a USB enabled router?

WinSCP can be used to copy files from a windows pc to your router - If you enable SSH on the router.
Please note that only /tmp is writabel on a default router.


I am running dd-wrt.v24-11218_NEWD_mega.bin on a Asus wl-500w which is usb enabled, if I run with the original firmware ntfs read does work as it should.

I will try winscp later, I am running it from vista could that be a problem maybe?
dontomase
DD-WRT Novice


Joined: 02 Mar 2009
Posts: 6

PostPosted: Thu Mar 05, 2009 20:50    Post subject: Reply with quote
No luck yet..

But I have learned how to activate ftp on the router but it's only read only but I am on my way.. Wink
dontomase
DD-WRT Novice


Joined: 02 Mar 2009
Posts: 6

PostPosted: Fri Mar 06, 2009 21:39    Post subject: Reply with quote
djmulder wrote:
<3 ta


ntfs seems to work, just can't remove files.


How did you do that I have now finally got the file to my router, and have it so I can see it with lsmod but still I cant mount the drive so I can see it.

Look here I'm doing some progress, now finally I a able to mount I can se the drive in telnet, but how do I share it so I can access the drive in my network, for my xbox for example?
Goto page 1, 2, 3  Next Display posts from previous:    Page 1 of 3
Post new topic   Reply to topic    DD-WRT Forum Index -> Broadcom SoC based Hardware All times are GMT

Navigation

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum