LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 12-03-2003, 05:03 PM   #1
texfs
LQ Newbie
 
Registered: Nov 2003
Location: Uruguay
Posts: 4

Rep: Reputation: 0
Question problems with Intel 537 modem


I am trying to install the Intel 537 modem (My OS is Mandrake 9.2)
I've already downloaded the .tgz file from Intel web page. The readme.txt saids:
"steps to install
1. login as ROOT
2. extract the archive into a directory with "tar -zxvf <archivename>.tgz"
3. cd into the directory it created.
4. Type: make clean
5. Type: make all
6. Type: make install

steps 1 to 3 ... OK

step 4:
[root@localhost mod]# make clean
cd coredrv; make clean
make[1]: Entering directory `/mod/coredrv'
rm -f *.o *~ core
make[1]: Leaving directory `/mod/coredrv'
cd serialdrv; make clean
make[1]: Entering directory `/mod/serialdrv'
rm -f *.o *~ core
make[1]: Leaving directory `/mod/serialdrv'
rm -f *.o
rm -f *.o

..... OK (I suppose)

step5:
[root@localhost mod]# make all
usage: make [clean] or [537] or [install] or [check] or [config_sync] or [uninstall]

...... (I'don't know)

step6:
[root@localhost mod]# make install
bash 537_inst
running kernel 2.4.22-10mdk
installing hamregistry, used for persistant storage
installing usrsound, a soft buzzer
installing ham module
install: no se puede efectuar `stat' sobre `537.o': No such file or directory
make: *** [install] Error 1
[root@localhost mod]#

.... What's going on?

Please help me, i'don't want to use my modem only in windows so, what can I do?
 
Old 12-03-2003, 06:33 PM   #2
jailbait
LQ Guru
 
Registered: Feb 2003
Location: Virginia, USA
Distribution: Debian 12
Posts: 8,340

Rep: Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550
" what can I do?"

You are somewhat at the mercy of the person who created the tarball and he seems to have made some sort of mistake. I would try substituting a plain make command for the make all command:
make clean
make
make install


If that does not work then you might email the developer for some advice on what to do.

___________________________________
Be prepared. Create a LifeBoat CD.
http://users.rcn.com/srstites/LifeBo...home.page.html

Steve Stites
 
Old 12-04-2003, 03:31 PM   #3
texfs
LQ Newbie
 
Registered: Nov 2003
Location: Uruguay
Posts: 4

Original Poster
Rep: Reputation: 0
Instead of make all i try make 537 and...

[root@localhost mod]# make 537
if [ -a /boot/vmlinuz.version.h ]; then \
cp /boot/vmlinuz.version.h /lib/modules/`uname -r`/build/include/linux/version.h; fi
if [ ]; then \
cd coredrv; make TARGET=TARGET_CATAWBA KERNEL_SOURCE_PATH= "PSTN_DEF=-DTARGET_CATAWBA -DTARGET_LINUX -DLINUX" 537core; \
cd ../serialdrv; make TARGET=TARGET_CATAWBA KERNEL_SOURCE_PATH= card=CARD_TJ320 \
"PSTN_DEF=-DTARGET_CATAWBA -DTARGET_LINUX -DLINUX" 537; \
else \
cd coredrv; make TARGET=TARGET_CATAWBA KERNEL_INCLUDES=/lib/modules/`uname -r`/build/include \
"PSTN_DEF=-DTARGET_CATAWBA -DTARGET_LINUX -DLINUX" 537core; \
cd ../serialdrv; make TARGET=TARGET_CATAWBA KERNEL_INCLUDES=/lib/modules/`uname -r`/build/include card=CARD_TJ320 \
"PSTN_DEF=-DTARGET_CATAWBA -DTARGET_LINUX -DLINUX" 537; \
fi ;
make[1]: Entering directory `/mod/coredrv'
cc -DTARGET_CATAWBA -DTARGET_LINUX -DLINUX -Wall -O -I /lib/modules/`uname -r`/build/include -I ../inc -fno-common -c -o coredrv.o coredrv.c
/bin/sh: line 1: cc: command not found
make[1]: *** [coredrv.o] Error 127
make[1]: Leaving directory `/mod/coredrv'
make[1]: Entering directory `/mod/serialdrv'
cc -DTARGET_CATAWBA -DTARGET_LINUX -DLINUX -Wall -O -I /lib/modules/`uname -r`/build/include -I ../inc -fno-common -c -o softserial.o softserial.c
/bin/sh: line 1: cc: command not found
make[1]: *** [softserial.o] Error 127
make[1]: Leaving directory `/mod/serialdrv'
make: *** [537] Error 2
… What’s going on here? What’s these "cc"? How can I solve it?

step6:
[root@localhost mod]# make install
bash 537_inst
running kernel 2.4.22-10mdk
installing hamregistry, used for persistant storage
installing usrsound, a soft buzzer
installing ham module
install: no se puede efectuar `stat' sobre `537.o': No such file or directory
make: *** [install] Error 1
[root@localhost mod]#
.... What's going on?


Last edited by texfs; 12-04-2003 at 03:34 PM.
 
Old 12-04-2003, 03:39 PM   #4
jailbait
LQ Guru
 
Registered: Feb 2003
Location: Virginia, USA
Distribution: Debian 12
Posts: 8,340

Rep: Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550
Try just plain old make:
make clean
make
make install


___________________________________
Be prepared. Create a LifeBoat CD.
http://users.rcn.com/srstites/LifeBo...home.page.html

Steve Stites
 
Old 12-04-2003, 09:17 PM   #5
texfs
LQ Newbie
 
Registered: Nov 2003
Location: Uruguay
Posts: 4

Original Poster
Rep: Reputation: 0
the result of tiping "make " it's the same as tiping "make all" ...
help please !=[]
 
Old 12-05-2003, 10:00 AM   #6
jailbait
LQ Guru
 
Registered: Feb 2003
Location: Virginia, USA
Distribution: Debian 12
Posts: 8,340

Rep: Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550
"the result of tiping "make " it's the same as tiping "make all" ...
help please !=[]"

I think that the .tgz file is buggy. I suggest that you look in the .tgz documentation and find the email address of the developer. Contact the developer and see what they have to say about the problem.

___________________________________
Be prepared. Create a LifeBoat CD.
http://users.rcn.com/srstites/LifeBo...home.page.html

Steve Stites
 
Old 12-06-2003, 05:39 AM   #7
texfs
LQ Newbie
 
Registered: Nov 2003
Location: Uruguay
Posts: 4

Original Poster
Rep: Reputation: 0
You are rigth, but i think that the problem is in this piece of code and i think that the problem is my machine too. Look the <===, cc: comand not found. Maybe i haven't the cc (What the hell is the cc?). I don't know... Anyway thanks a lot for the time you spend on me..,.

(END OF STEP 5)
make[1]: Entering directory `/mod/coredrv'
cc -DTARGET_CATAWBA -DTARGET_LINUX -DLINUX -Wall -O -I /lib/modules/`uname -r`/build/include -I ../inc -fno-common -c -o coredrv.o coredrv.c
/bin/sh: line 1: cc: command not found <===
make[1]: *** [coredrv.o] Error 127

make[1]: Leaving directory `/mod/coredrv'
make[1]: Entering directory `/mod/serialdrv'
cc -DTARGET_CATAWBA -DTARGET_LINUX -DLINUX -Wall -O -I /lib/modules/`uname -r`/build/include -I ../inc -fno-common -c -o softserial.o softserial.c
/bin/sh: line 1: cc: command not found <===
make[1]: *** [softserial.o] Error 127

make[1]: Leaving directory `/mod/serialdrv'
make: *** [537] Error 2

Last edited by texfs; 12-06-2003 at 05:41 AM.
 
Old 12-06-2003, 09:59 AM   #8
jailbait
LQ Guru
 
Registered: Feb 2003
Location: Virginia, USA
Distribution: Debian 12
Posts: 8,340

Rep: Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550
" Look the <===, cc: comand not found. Maybe i haven't the cc (What the hell is the cc?). "

cc means C compiler. Do you have gcc installed?

___________________________________
Be prepared. Create a LifeBoat CD.
http://users.rcn.com/srstites/LifeBo...home.page.html

Steve Stites
 
  


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 Intel 537 driver? linx win Debian 3 10-24-2005 01:24 AM
Intel 537 modem problem cuchumino Linux - Hardware 6 09-27-2004 05:36 PM
Intel 537 Modem install help jrvillac Linux - Hardware 0 07-15-2004 08:02 PM
[sis] intel 537 (win)modem raven Linux - Laptop and Netbook 4 04-01-2004 01:59 PM
Modem Intel 537 in linux Dragon20 Linux - Hardware 9 01-06-2004 03:22 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 11:15 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