Hi again...
For those interested in the old_belkin dongle, you need to use
Linux-IrDA 2.2.13-irda9 (kernel 2.2.13, not -acX, and
patch-2.2.13-irda9), anything earlier than that will give you grief
and pain.
Then, you need to patch irattach.c along those lines :
----------------------------------
--- irattach.dag.c Mon Dec 6 04:53:30 1999
+++ irattach.c Mon Dec 6 05:00:13 1999
@@ -65,6 +65,9 @@
#ifndef IRDA_AIRPORT_DONGLE
#define IRDA_AIRPORT_DONGLE 6
#endif
+#ifndef IRDA_OLD_BELKIN_DONGLE
+#define IRDA_OLD_BELKIN_DONGLE 7
+#endif
extern void fork_now(void);
extern int set_sysctl_param(char *name, char *value);
@@ -319,6 +322,8 @@ int main(int argc, char *argv[])
dongle = IRDA_LITELINK_DONGLE;
else if (strcmp(optarg, "airport") == 0)
dongle = IRDA_AIRPORT_DONGLE;
+ else if (strcmp(optarg, "old_belkin") == 0)
+ dongle = IRDA_OLD_BELKIN_DONGLE;
if (dongle == -1) {
syslog(LOG_ERR, "Sorry, dongle not supported yet!\n");
exit(-1);
----------------------------------
Then, add the /etc/conf.modules the following :
----------------------------------
alias irda-dongle-7 old_belkin # Belkin (old) SmartBeam
----------------------------------
Then, you should be set...
Jean
_______________________________________________
Linux-IrDA mailing list - [EMAIL PROTECTED]
http://www4.pasta.cs.UiT.No/mailman/listinfo/linux-irda