Hi Ukjairaj,
Walker is right, your modem is almost certainly supported. I would recommend a different driver, though - some improvements have been made since the "fc1" version he noted. This is the most recent:
http://linmodems.technion.ac.il/pcte...-rht-4c.tar.gz
Unfortunately there is a known bug when it's used with Fedora Core 4. The good news is we have a fix, but it hasn't made it into the 4c version yet. I will tell you what to do.
I would use the following procedure after you download the file:
tar xvzf pctel-0.9.7-9-rht-4c.tar.gz
cd pctel-0.9.7-9-rht-4c/src
at this point you will need to edit the file called "ptserial-2.6.c". Add the lines that say "BUG FIX" below to the pctel_interrupt routine:
static irqreturn_t pctel_interrupt(int irq, void *dev_id,
struct pt_regs *regs )
{
static union i387_union i387;
static unsigned long flags;
static unsigned long cr0; /* BUG FIX */
struct irq_info *i = dev_id;
...
GlobalTimer = HAL_GetTimer();
__asm__ __volatile__("mov %%cr0,%0 ; clts" : "=r" (cr0)); /* BUG FIX */
__asm__ __volatile__("fnsave %0\n\t"
"fwait"
: "=m" (i387));
...
__asm__ __volatile__("frstor %0": :"m" (i387));
__asm__ __volatile__("mov %0,%%cr0" : : "r" (cr0)); /* BUG FIX */
when that's done you can do the remaining steps:
./configure -auto
make
su root
(type your root password now)
make install
make insmod
The special device file you are asking about will be /dev/ttyS_PCTEL0
Good luck, and regards,
Jeff Trull