Am Donnerstag, 24. Juni 2004 21:57 schrieb Joachim Reiter:
Thomas Müller schrieb:
Am Donnerstag, 24. Juni 2004 15:43 schrieb Joachim Reiter:
Hallo Leute,
1. Der IRDA-Port funktioniert immer noch nicht. Das angeblich funktionierende toshoboe-Modul kann ich auch nicht finden.
Schau mal hier : http://newsletter.toshiba-tro.de/main/index.html
War ich schon. Ich habe das Problem dass ich das smc-ircc bzw. das toshoboe-Modul nicht finde. Gibts das unter Kernel 2.6.x noch gar nicht?
Doch, einfach von der angegeben Quelle installieren Die Falle liegt in der Bezeichnung des Kernel-Moduls. ich poste hier mal den Inhalt von /etc/init.d/boot.smcinit ( von meiner fkt. config ): #! /bin/sh # # Copyright (c) 2003 Claudiu Costin <claudiuc@kde.org>. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the Free # Software Foundation; either version 2 of the License, or (at your option) # any later version. # # /etc/init.d/boot.smcinit # ### BEGIN INIT INFO # Provides: boot.smcinit # Required-Start: # Required-Stop: # Default-Start: B # Default-Stop: # Description: Initialize SMC-IRCC IrDA hardware ### END INIT INFO . /etc/rc.status . /etc/sysconfig/smcinit rc_reset case "$1" in start) if test -x /usr/sbin/tosh${SMCCONFIG}-smcinit ; then /usr/sbin/tosh${SMCCONFIG}-smcinit rc_status modprobe smsc-ircc2 >/dev/null 2>/dev/null modprobe smsc-ircc2 rc_status else echo "'tosh${SMCCONFIG}-smcinit' is missing" rc_failed 1 fi rc_status -v1 -r ;; stop) echo -n "Unloading smc-ircc kernel module" modprobe -r smsc-ircc2 rc_status -v ;; status) echo -n "Checking for smc-ircc kernel module" line=`lsmod 2>/dev/null | grep smsc-ircc2 | grep -v grep` if test -z "$line" ; then rc_failed 3 fi rc_status -v ;; *) echo "Usage: $0 {start|stop|status}" exit 1 ;; esac rc_exit Wichtig ist : smsc-ircc2 ( also im vorhandenen Script umbenennen ) Ausserdem sind wichtig: /etc/sysconfig/smcinit: # # Which SMC configurator to start # See the smcinit(8) man page for more info # SMCCONFIG="5100" und # Path: Hardware/IrDA ## Description: Settings for the infraread device ## Type: string("",/dev/ttyS1) ## Default: /dev/ttyS1 ## ServiceRestart: irda # # IrDA is the infrared interface often found on laptops. # To activate permanently, call "insserv /etc/init.d/irda" # # Currently the UART (SIR) mode is supported in the normal configuration. The # variable IRDA_PORT sets the used serial port. Have a look at your BIOS-Setup, # to find out which is correct. # # If you have a supported FIR chipset, specify the name of the corresponding # kernel module in IRDA_PORT, e.g. IRDA_PORT="toshoboe". FIR must be enabled in # the BIOS setup first. Sometimes you additionally have to disable the serial # port, which would be used in SIR mode via 'setserial /dev/ttyS<x> uart none' # IRDA_PORT="irda0" Ausserdem im BIOS sicherstellen, dass der Serial-port NICHT verwendet wird. Siehe auch man setserial. Gruß Thomas -der meint, dass die Linux-unterstützung von Toshiba beispielhaft ist -