LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 12-06-2006, 12:55 PM   #1
ramkumar_bit
LQ Newbie
 
Registered: Dec 2006
Posts: 3

Rep: Reputation: 0
modem driver problem


hi guys im using DAX external usb modem in linux kernel 2.6.xx my model is DX-56PU . i got thr driver and tyy to install and i got this problem..



[root@localhost ~]# cd /slmodem-2.9.9
[root@localhost slmodem-2.9.9]# make
make -C modem all
make[1]: Entering directory `/slmodem-2.9.9/modem'
make[1]: Leaving directory `/slmodem-2.9.9/modem'
make -C drivers KERNEL_DIR=/lib/modules/2.6.10-1.741_FC3/build
make[1]: Entering directory `/slmodem-2.9.9/drivers'
cc -I/lib/modules/2.6.10-1.741_FC3/build/include -o kernel-ver kernel-ver.c
make all KERNEL_VER=2.6.10-1.741_FC3
make[2]: Entering directory `/slmodem-2.9.9/drivers'
make modules -C /lib/modules/2.6.10-1.741_FC3/build SUBDIRS=/slmodem-2.9.9/drivers
make[3]: Entering directory `/lib/modules/2.6.10-1.741_FC3/build'
Building modules, stage 2.
MODPOST
Warning: could not find /slmodem-2.9.9/drivers/.amrlibs.o.cmd for /slmodem-2.9.9/drivers/amrlibs.o
*** Warning: "usb_endpoint_halted" [/slmodem-2.9.9/drivers/slusb.ko] undefined!
make[3]: Leaving directory `/lib/modules/2.6.10-1.741_FC3/build'
make[2]: Leaving directory `/slmodem-2.9.9/drivers'
make[1]: Leaving directory `/slmodem-2.9.9/drivers'
[root@localhost slmodem-2.9.9]# make insatall
make: *** No rule to make target `insatall'. Stop.
[root@localhost slmodem-2.9.9]# make insatal
make: *** No rule to make target `insatal'. Stop.
[root@localhost slmodem-2.9.9]# make install
make -C modem all
make[1]: Entering directory `/slmodem-2.9.9/modem'
make[1]: Leaving directory `/slmodem-2.9.9/modem'
make -C drivers KERNEL_DIR=/lib/modules/2.6.10-1.741_FC3/build
make[1]: Entering directory `/slmodem-2.9.9/drivers'
cc -I/lib/modules/2.6.10-1.741_FC3/build/include -o kernel-ver kernel-ver.c
make all KERNEL_VER=2.6.10-1.741_FC3
make[2]: Entering directory `/slmodem-2.9.9/drivers'
make modules -C /lib/modules/2.6.10-1.741_FC3/build SUBDIRS=/slmodem-2.9.9/drivers
make[3]: Entering directory `/lib/modules/2.6.10-1.741_FC3/build'
Building modules, stage 2.
MODPOST
Warning: could not find /slmodem-2.9.9/drivers/.amrlibs.o.cmd for /slmodem-2.9.9/drivers/amrlibs.o
*** Warning: "usb_endpoint_halted" [/slmodem-2.9.9/drivers/slusb.ko] undefined!
make[3]: Leaving directory `/lib/modules/2.6.10-1.741_FC3/build'
make[2]: Leaving directory `/slmodem-2.9.9/drivers'
make[1]: Leaving directory `/slmodem-2.9.9/drivers'
make install -C drivers KERNEL_DIR=/lib/modules/2.6.10-1.741_FC3/build
make[1]: Entering directory `/slmodem-2.9.9/drivers'
cc -I/lib/modules/2.6.10-1.741_FC3/build/include -o kernel-ver kernel-ver.c
mkdir -p /dev
mknod -m 600 /dev/slamr0 c 212 0 ; mknod -m 600 /dev/slamr1 c 212 1 ; mknod -m 600 /dev/slamr2 c 212 2 ; mknod -m 600 /dev/slamr3 c 212 3 ; echo -n
mknod -m 600 /dev/slusb0 c 213 0 ; mknod -m 600 /dev/slusb1 c 213 1 ; mknod -m 600 /dev/slusb2 c 213 2 ; mknod -m 600 /dev/slusb3 c 213 3 ; echo -n
make install KERNEL_VER=2.6.10-1.741_FC3
make[2]: Entering directory `/slmodem-2.9.9/drivers'
install -D -m 644 slamr.ko /lib/modules/2.6.10-1.741_FC3/extra/slamr.ko
install -D -m 644 slusb.ko /lib/modules/2.6.10-1.741_FC3/extra/slusb.ko
/sbin/depmod -a
make[2]: Leaving directory `/slmodem-2.9.9/drivers'
make[1]: Leaving directory `/slmodem-2.9.9/drivers'
install -D -m 755 modem/slmodemd /usr/sbin/slmodemd
rm -f -rf /var/lib/slmodem
install -d -D -m 755 /var/lib/slmodem
[root@localhost slmodem-2.9.9]# modprobe slusb
FATAL: Error inserting slusb (/lib/modules/2.6.10-1.741_FC3/extra/slusb.ko): Unknown symbol in module, or unknown parameter (see dmesg)
[root@localhost slmodem-2.9.9]#


i tryed in kernel 2.4 it is working but not working in 2.6 kernel..

-ramkumar
 
Old 12-08-2006, 02:10 PM   #2
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
Moved: This thread is more suitable in Linux-Software and has been moved accordingly to help your thread/question get the exposure it deserves.

I understand the driver is for 2.4 kernels. There are quite big differences in driver design between 2.4 and 2.6 and that may be the reason of your failure. But still, you can check if that's the case. Look into dmesg results. What's the error exactly (undefined sysmbol name, for example)?
 
Old 12-09-2006, 11:13 AM   #3
ramkumar_bit
LQ Newbie
 
Registered: Dec 2006
Posts: 3

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Mara
Moved: This thread is more suitable in Linux-Software and has been moved accordingly to help your thread/question get the exposure it deserves.

I understand the driver is for 2.4 kernels. There are quite big differences in driver design between 2.4 and 2.6 and that may be the reason of your failure. But still, you can check if that's the case. Look into dmesg results. What's the error exactly (undefined sysmbol name, for example)?
ram,
sir i got driver for both 2.4 and 2.6 kernel past i use 2.4 and i reinstalled 2.6 kernel . 2.4 driver works well..after upgrading i installed 2.6 kernel and my problem starts
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
modem driver installation problem nirmaltom Linux - Hardware 3 01-05-2006 02:45 PM
Modem Driver Installation Problem ar1 Linux - General 1 12-24-2003 02:51 PM
Problem with compiling modem driver csspcman Linux - Software 1 08-14-2003 01:36 PM
problem installing modem driver csspcman Linux - Software 0 08-13-2003 06:58 AM
very strange problem with modem driver cebesius Linux - Software 4 04-22-2002 11:01 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:43 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration