According to the kernel guys the problem has been addressed. I await the next
Mandrake kernel with baited breath :-) ;-)
Owen
---------- Forwarded Message ----------
Subject: Re: PCMCIA problems (with correct return e-mail address !)
Date: Sat, 6 Jan 2001 15:32:59 -0800
From: David Hinds <[EMAIL PROTECTED]>
To: OS <[EMAIL PROTECTED]>
On Sat, Jan 06, 2001 at 10:21:48PM +0000, OS wrote:
> scsi: <fdomain> Usage: fdomain=<PORT_BASE>,<IRQ>[,<ADAPTOR_ID>]
> scsi: <fdomain> Bad LILO/INSMOD parameters?
> scsi: <fdomain> Cannot locate chip at port base 0x0
> scsi: <fdomain> Bad LILO/INSMOD parameters?
A change was made in the fdomain kernel driver's option handling
code. Try applying the following patch to the fdomain_stub.c file.
-- Dave
--- fdomain_stub.c 2000/06/12 21:27:25 1.43
+++ fdomain_stub.c 2001/01/06 20:32:28
@@ -215,6 +215,7 @@
u_char tuple_data[64];
Scsi_Device *dev;
dev_node_t *node, **tail;
+ char str[16];
#if (LINUX_VERSION_CODE >= VERSION(2,1,75))
struct Scsi_Host *host;
#endif
@@ -261,7 +262,8 @@
ints[0] = 2;
ints[1] = link->io.BasePort1;
ints[2] = link->irq.AssignedIRQ;
- fdomain_setup("PCMCIA setup", ints);
+ sprintf(str, "%d,%d", link->io.BasePort1, link->irq.AssignedIRQ);
+ fdomain_setup(str, ints);
scsi_register_module(MODULE_SCSI_HA, &driver_template);
-------------------------------------------------------