USB-Maus wird nicht automatisch erkannt

Gronau

Well-Known Member
Mein Problem ist, dass, obwohl ich alle benoetigten Module einkompiliert und (meiner Meinung nach) alles richtig konfiguriert hab, meine USB-Maus nicht automatisch erkannt wird (die rote LED bleibt aus und in den logs taucht keine Maus auf). Erst wenn ich den USB-Stecker raus und wieder reinstecke wird die Maus erkannt und kann ganz normal benutzt werden:

kernel: ums0: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM), rev 1.10/3.00, addr 3, iclass 3/1

Das Device ums0 existiert vorher nicht und wird anscheinend erst beim einstecken angelegt.

Mein Gamepad und meine Tastatur (beide USB) werden komischerweise erkannt.

Das Problem besteht nur beim Kaltstart, nicht aber beim Warmstart.

Meine configs (falls notwendig):
http://mitglied.lycos.de/server247/configs/freebsd/ws/CUSTOM
http://mitglied.lycos.de/server247/configs/freebsd/ws/rc.conf

Weiß wer was ich falsch mache?
 
Ich würde auf BIOS-Einstellungen tippen. Einfach mal nachsehen und Legacy-USB aus- oder einschalten.
 
Da koennte was dran sein. Im Bios wird in der Tat nur meine Tastatur erkannt. Wenn ich legacy support deaktiviere, aendert sich allerdings nichts, mit Ausnahme, dass ich im Bootloader keine Tastatur mehr zur Verfuegung hab. Auch Knoppix findet keine Maus. ;'(
 
Ach ja, USB ist was tolles -_-

Yamagis Hacks #81: Lade ums.ko mal nachdem der Kernel hochgefahren ist. Mit ein wenig Glück wird die doofe Maus dann erkannt. Keine Ahnung warum, aber manchmal hilft es.
 
Ich hab ein ähnliches Problem.

Ich muss immer ,damit die Maus erkannt wird, USB Kabel rein- und rausstecken.

Kann mir jemand helfen?
 
Immer, also auch nach einem Kaltstart oder nur nachdem die Kiste aus dem Singleusermoe hochkommt? Letzteres wäre normal, da devd das Gerät nicht greifen kann und daher moused nicht gestartet wird. Fall sie auch nach dem Kaltstart nicht erkannt wird, bräuchten wir eine dmesg und eine rc.conf und eine devd.conf von dir.
 
Ist immer so.

rc.conf:
Code:
#!/bin/sh
# This is rc.conf - a file full of useful variables that you can set
# to change the default startup behavior of your system.  You should
# not edit this file!  Put any overrides into one of the ${rc_conf_files}
# instead and you will be able to update these defaults later without
# spamming your local configuration information.
#
# The ${rc_conf_files} files should only contain values which override
# values set in this file.  This eases the upgrade path when defaults
# are changed and new features are added.
#
# All arguments must be in double or single quotes.
#
# For a more detailed explanation of all the rc.conf variables, please
# refer to the rc.conf(5) manual page.
# Completely disable sendmail
sendmail_enable="NO"
sendmail_submit_enable="NO"
sendmail_outbound_enable="NO"
sendmail_msp_queue_enable="NO"
# Device services/settings
moused_enable="YES"
usbd_enable="YES"
devfs_system_ruleset="mount"
# Clear temporary files and mounts
clear_media_enable="YES"
clear_tmp_enable="YES"
# Disable boot logo screen saver
allscreens_flags="-t off"
# Printing
cupsd_enable="YES"
lpd_enable="NO"
# Network
# powerd: max speed while on AC power, adaptive while on battery power
powerd_enable="YES"
powerd_flags="-a max -b adaptive"
# Load linux compatibility
linux_enable="YES"
# /usr/X11R6 -> local move
local_startup="/usr/local/etc/rc.d"
ldconfig_paths="/usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg"
ldconfig_paths_aout="/usr/lib/compat/aout /usr/local/lib/aout"
ldconfig_local_dirs="/usr/local/libdata/ldconfig"
ldconfig_local32_dirs="/usr/local/libdata/ldconfig32"
hostname="DesktopBSD"
bsdstats_enable="YES"
defaultrouter="192.168.1.1"
ifconfig_sis0="inet 192.168.1.2 netmask 255.255.255.0"

devd.conf
Code:
# $DesktopBSD$
#
# Refer to devd.conf(5) and devd(8) man pages for the details on how to
# run and configure devd.
#

# NB: All regular expressions have an implicit ^$ around them.
# NB: device-name is shorthand for 'match device-name'

options {
	# Each directory directive adds a directory the list of directories
	# that we scan for files.  Files are read-in in the order that they
	# are returned from readdir(3).  The rule-sets are combined to
	# create a DFA that's used to match events to actions.
	directory "/etc/devd";
	directory "/usr/local/etc/devd";
	pid-file "/var/run/devd.pid";

	# Setup some shorthand for regex that we use later in the file.
	set scsi-controller-regex
		"(aac|adv|adw|aha|ahb|ahc|ahd|aic|amd|amr|asr|bt|ciss|ct|dpt|\
		esp|ida|iir|ips|isp|mlx|mly|mpt|ncr|ncv|nsp|stg|sym|trm|wds)\
		[0-9]+";

	# Check for the presence of the dcop executable first, some
	# events can occur before /usr is mounted
	set dcop-hwnotify
		"/usr/local/bin/dcop --all-users --all-sessions dbsd-hwnotify Notify";
	
	set notify-attach
		"/usr/local/bin/dcop --all-users --all-sessions dbsd-hwnotify Notify attachDevice";

	set notify-detach
		"/usr/local/bin/dcop --all-users --all-sessions dbsd-hwnotify Notify detachDevice";

	set notify-link-status-change
		"/usr/local/bin/dcop --all-users --all-sessions dbsd-nettray Notify linkStatusChanged";

	set ignore-output
		" >/dev/null 2>&1 ";
};

# Note that the attach/detach with the highest value wins, so that one can
# override these general rules.

attach 0 {
	action "$notify-attach $device-name $ignore-output &";
};

detach 0 {
	action "$notify-detach $device-name $ignore-output &";
};

#
# Configure the interface on attach.  Due to a historical accident, this
# script is called pccard_ether.
#
notify 0 {
	match "system"		"IFNET";
	match "type"		"ATTACH";
	action "$notify-attach $subsystem $ignore-output & /etc/pccard_ether $subsystem start";
};

notify 0 {
	match "system"		"IFNET";
	match "type"		"DETACH";
	action "$notify-detach $subsystem $ignore-output & /etc/pccard_ether $subsystem stop";
};

notify 0 {
	match "system"		"IFNET";
	match "type"		"LINK_(UP|DOWN)";
	action "$notify-link-status-change $subsystem $ignore-output &";
};

attach 0 {
	media-type "802.11";
	action "$notify-attach $device-name $ignore-output & /etc/pccard_ether $device-name start";
};

detach 0 {
	media-type "802.11";
	action "$notify-detach $device-name $ignore-output & /etc/pccard_ether $device-name stop";
};

# When a USB Bluetooth dongle appears activate it
attach 100 {
	device-name "ubt[0-9]+";
	action "$notify-attach $device-name $ignore-output & /etc/rc.d/bluetooth start $device-name";
};
detach 100 {
	device-name "ubt[0-9]+";
	action "$notify-detach $device-name $ignore-output & /etc/rc.d/bluetooth stop $device-name";
};

# When a USB keyboard arrives, attach it as the console keyboard.
attach 100 {
	device-name "ukbd0";
	action "$notify-attach $device-name $ignore-output & /etc/rc.d/syscons setkeyboard /dev/ukbd0";
};
detach 100 {
	device-name "ukbd0";
	action "$notify-detach $device-name $ignore-output & /etc/rc.d/syscons setkeyboard /dev/kbd0";
};

# The entry below starts moused when a mouse is plugged in. Moused
# stops automatically (actually it bombs :) when the device disappears.
attach 100 {
	device-name "ums[0-9]+";
	action "$notify-attach $device-name $ignore-output & /etc/rc.d/moused start $device-name";
};

#
# Rescan scsi device-names on attach, but not detach.  However, it is
# disabled by default due to reports of problems.
#
#attach 0 {
#	device-name "$scsi-controller-regex";
#	action "camcontrol rescan all";
#};

# Don't even try to second guess what to do about drivers that don't
# match here.  Instead, pass it off to syslog.  Commented out for the
# moment, as pnpinfo isn't set in devd yet.
#nomatch 0 {
#	action "logger Unknown device: $pnpinfo $location $bus";
#};

# Switch power profiles when the AC line state changes.
notify 10 {
	match "system"		"ACPI";
	match "subsystem"	"ACAD";
	action "$dcop-hwnotify acpiLineStateChanged $notify $ignore-output & /etc/rc.d/power_profile $notify";
};

# Notify all users before beginning emergency shutdown when we get
# a _CRT or _HOT thermal event and we're going to power down the system
# very soon.
notify 10 {
	match "system"		"ACPI";
	match "subsystem"	"Thermal";
	match "notify"		"0xcc";
	action "$dcop-hwnotify acpiTemperatureCritical $ignore-output & logger -p kern.emerg 'WARNING: system temperature too high, shutting down soon!'";
};

/* EXAMPLES TO END OF FILE

# The following might be an example of something that a vendor might
# install if you were to add their device.  This might reside in
# /usr/local/etc/devd/deqna.conf.  A deqna is, in this hypothetical
# example, a pccard ethernet-like device.  Students of history may
# know other devices by this name, and will get the in-jokes in this
# entry.
nomatch 10 {
	match "bus" "pccard[0-9]+";
	match "manufacturer" "0x1234";
	match "product" "0x2323";
	action "kldload if_deqna";
};
attach 10 {
	device-name "deqna[0-9]+";
	action "/etc/pccard_ether $device-name start";
};
detach 10 {
	device-name "deqna[0-9]+";
	action "/etc/pccard_ether $device-name stop";
};

# Examples of notify hooks.  A notify is a generic way for a kernel
# subsystem to send event notification to userland.
#
# Here are some examples of ACPI notify handlers.  ACPI subsystems that
# generate notifies include the AC adapter, power/sleep buttons,
# control method batteries, lid switch, and thermal zones.
#
# Information returned is not always the same as the ACPI notify
# events.  See the ACPI specification for more information about
# notifies.  Here is the information returned for each subsystem:
#
# ACAD:		AC line state (0 is offline, 1 is online)
# Button:	Button pressed (0 for power, 1 for sleep)
# CMBAT:	ACPI battery events
# Lid:		Lid state (0 is closed, 1 is open)
# Thermal:	ACPI thermal zone events
#
# This example calls a script when the AC state changes, passing the
# notify value as the first argument.  If the state is 0x00, it might
# call some sysctls to implement economy mode.  If 0x01, it might set
# the mode to performance.
notify 10 {
	match "system"		"ACPI";
	match "subsystem"	"ACAD";
	action			"/etc/acpi_ac $notify";
};
*/

dmesg kommt noch, wenn ich nach dem Neustart zu FreeBSD gewechselt bin.
 
Hallo,

hatte mir vor noch nicht allzulanger Zeit ein Funk-Tastatur/Maus Set
gegönnt, was leider nur USB kann. :ugly:

Habe die Kernelkonfiguration* folgendermaßen für das
USB Tastatur/Maus Set geändert:
Code:
#device		atkbdc			# AT keyboard controller ==> raus fuer USB Tastatur
#device		atkbd			# AT keyboard ==> raus fuer USB Tastatur
#device		psm				# PS/2 mouse ==> raus fuer USB Maus

device		ums				# USB-Mouse

Für moused mit USB-Maus in die /etc/rc.conf:
Code:
#moused_port="/dev/psm0"	# Mausanschluss PS/2 ==> raus fuer USB Maus

moused_port="/dev/ums0"		# Mausanschluss USB 
moused_type="auto"		# moused - Mouse-Daemon, Automatic Mode
moused_enable="YES"		# moused - Mouse-Daemon,Yes Well
Das tut es bei mir auf FreeBSD 7.0-STABLE i386.
Ist so natürlich kompromisslos auf USB Eingabgerätschaft angepasst.
Man beachte das "#", was die Zeilen für die PS/2 Eingabegeräte auskommentiert. ;)

*Das FreeBSD Handbuch ist zu empfehlen:
http://www.freebsd.org/doc/de_DE.ISO8859-1/books/handbook/kernelconfig-config.html


Gruß, Fusselbär

Nachtrag:
Meine USB-Eingabegerätschaft hat sich übrigens
an das OHCI PCI->USB interface drangehängt,
in meiner Kernelconfiguration ist OHCI drin:
Code:
device		ohci				# OHCI PCI->USB interface
 
Zuletzt bearbeitet:
Tut mir leid, aber ich weiß nicht genau, was ich machen soll, da ich sehr neu zu BSD gekommen bin. Kannst du es mir bitte erklären?:rolleyes:
Was ist die Kernelkonfiguration?

dmesg
Code:
Copyright (c) 1992-2008 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
	The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 6.3-RC2 #27: Sun Jan  6 05:44:48 UTC 2008
    root@tinderbox.3c-consulting.lokal:/usr/obj/usr/src/sys/GENERIC
Timecounter "i8254" frequency 1193182 Hz quality 0
CPU: AMD Duron(tm) Processor (1300.05-MHz 686-class CPU)
  Origin = "AuthenticAMD"  Id = 0x671  Stepping = 1
  Features=0x383f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE>
  AMD Features=0xc0400800<SYSCALL,MMX+,3DNow!+,3DNow!>
real memory  = 268369920 (255 MB)
avail memory = 248090624 (236 MB)
kbd1 at kbdmux0
ath_hal: 0.9.20.3 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413)
module_register_init: MOD_LOAD (splash_pcx, 0xc0ba178c, 0) error 2
hptrr: HPT RocketRAID controller driver v1.1 (Jan  6 2008 05:44:22)
acpi0: <AMIINT SiS740XX> on motherboard
acpi0: Power Button (fixed)
Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0
cpu0: <ACPI CPU> on acpi0
acpi_button0: <Power Button> on acpi0
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pci0: <ACPI PCI bus> on pcib0
agp0: <SiS 740 host to AGP bridge> mem 0xd0000000-0xd7ffffff at device 0.0 on pci0
pcib1: <PCI-PCI bridge> at device 1.0 on pci0
pci1: <PCI bus> on pcib1
pci1: <display, VGA> at device 0.0 (no driver attached)
isab0: <PCI-ISA bridge> at device 2.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <SiS 962/963 UDMA133 controller> port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xff00-0xff0f at device 2.5 on pci0
ata0: <ATA channel 0> on atapci0
ata1: <ATA channel 1> on atapci0
pcm0: <SiS 7012> port 0xdc00-0xdcff,0xd400-0xd47f irq 11 at device 2.7 on pci0
pcm0: <C-Media Electronics CMI9738 AC97 Codec>
ohci0: <SiS 5571 USB controller> mem 0xcffed000-0xcffedfff irq 5 at device 3.0 on pci0
ohci0: [GIANT-LOCKED]
usb0: OHCI version 1.0, legacy support
usb0: SMM does not respond, resetting
usb0: <SiS 5571 USB controller> on ohci0
usb0: USB revision 1.0
uhub0: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 3 ports with 3 removable, self powered
ohci1: <SiS 5571 USB controller> mem 0xcffee000-0xcffeefff irq 11 at device 3.1 on pci0
ohci1: [GIANT-LOCKED]
usb1: OHCI version 1.0, legacy support
usb1: SMM does not respond, resetting
usb1: <SiS 5571 USB controller> on ohci1
usb1: USB revision 1.0
uhub1: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub1: 3 ports with 3 removable, self powered
ehci0: <EHCI (generic) USB 2.0 controller> mem 0xcffef000-0xcffeffff irq 12 at device 3.3 on pci0
ehci0: [GIANT-LOCKED]
usb2: EHCI version 1.0
usb2: companion controllers, 3 ports each: usb0 usb1
usb2: <EHCI (generic) USB 2.0 controller> on ehci0
usb2: USB revision 2.0
uhub2: SiS EHCI root hub, class 9/0, rev 2.00/1.00, addr 1
uhub2: 6 ports with 6 removable, self powered
sis0: <SiS 900 10/100BaseTX> port 0xd000-0xd0ff mem 0xcffec000-0xcffecfff irq 11 at device 4.0 on pci0
miibus0: <MII bus> on sis0
ukphy0: <Generic IEEE 802.3u media interface> on miibus0
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
sis0: Ethernet address: 00:0d:87:08:48:31
pci0: <display, VGA> at device 9.0 (no driver attached)
pci0: <display> at device 9.1 (no driver attached)
acpi_button1: <Sleep Button> on acpi0
fdc0: <floppy drive controller> port 0x3f2-0x3f3,0x3f4-0x3f5,0x3f7 irq 6 drq 2 on acpi0
fdc0: [FAST]
sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
sio0: type 16550A
ppc0: <ECP parallel printer port> port 0x378-0x37f,0x778-0x77b irq 7 drq 3 on acpi0
ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode
ppc0: FIFO with 16/16/16 bytes threshold
ppbus0: <Parallel port bus> on ppc0
ppi0: <Parallel I/O> on ppbus0
plip0: <PLIP network interface> on ppbus0
lpt0: <Printer> on ppbus0
lpt0: Interrupt-driven port
pmtimer0 on isa0
orm0: <ISA Option ROMs> at iomem 0xc0000-0xccfff,0xcd000-0xd4fff on isa0
atkbdc0: <Keyboard controller (i8042)> at port 0x60,0x64 on isa0
atkbd0: <AT Keyboard> irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
sc0: <System console> at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
sio1: configured irq 3 not in bitmap of probed irqs 0
sio1: port may not be enabled
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0
ukbd0: MOSART Semi. Wireless Keyboard & Mouse, rev 1.10/1.00, addr 2, iclass 3/1
kbd2 at ukbd0
ums0: MOSART Semi. Wireless Keyboard & Mouse, rev 1.10/1.00, addr 2, iclass 3/1
ums0: 5 buttons and Z dir.
Timecounter "TSC" frequency 1300054692 Hz quality 800
Timecounters tick every 1.000 msec
hptrr: no controller detected.
acd0: DVDR <HL-DT-ST DVDRAM GSA-4163B/A103> at ata0-master UDMA33
ad2: DMA limited to UDMA33, controller found non-ATA66 cableacd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x01

ad2: 39205MB <Maxtor 2F040L0 VAM51JJ0> at ata1-master UDMA33
ad3: DMA limited to UDMA33, controller found non-ATA66 cable
ad3: 190782MB <Seagate ST3200822A 3.01> at ata1-slave UDMA33
acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x01
cd0 at ata0 bus 0 target 0 lun 0
cd0: <HL-DT-ST DVDRAM GSA-4163B A103> Removable CD-ROM SCSI-0 device 
cd0: 33.000MB/s transfers
cd0: cd present [1 x 2048 byte records]
acd0: FAILURE - READ_TOC ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x06
acd0: FAILURE - READ_TOC ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x06
acd0: FAILURE - READ_TOC ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x06
Trying to mount root from ufs:/dev/ad2s3a
Waiting (max 60 seconds) for system process `vnlru' to stop...done
Waiting (max 60 seconds) for system process `syncer' to stop...
Syncing disks, vnodes remaining...0 0 0 0 0 0 0 0 0 done
Waiting (max 60 seconds) for system process `bufdaemon' to stop...done
All buffers synced.
Uptime: 2m38s
Copyright (c) 1992-2008 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
	The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 6.3-RC2 #27: Sun Jan  6 05:44:48 UTC 2008
    root@tinderbox.3c-consulting.lokal:/usr/obj/usr/src/sys/GENERIC
Timecounter "i8254" frequency 1193182 Hz quality 0
CPU: AMD Duron(tm) Processor (1300.05-MHz 686-class CPU)
  Origin = "AuthenticAMD"  Id = 0x671  Stepping = 1
  Features=0x383f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE>
  AMD Features=0xc0400800<SYSCALL,MMX+,3DNow!+,3DNow!>
real memory  = 268369920 (255 MB)
avail memory = 248090624 (236 MB)
kbd1 at kbdmux0
ath_hal: 0.9.20.3 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413)
module_register_init: MOD_LOAD (splash_pcx, 0xc0ba178c, 0) error 2
hptrr: HPT RocketRAID controller driver v1.1 (Jan  6 2008 05:44:22)
acpi0: <AMIINT SiS740XX> on motherboard
acpi0: Power Button (fixed)
Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0
cpu0: <ACPI CPU> on acpi0
acpi_button0: <Power Button> on acpi0
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pci0: <ACPI PCI bus> on pcib0
agp0: <SiS 740 host to AGP bridge> mem 0xd0000000-0xd7ffffff at device 0.0 on pci0
pcib1: <PCI-PCI bridge> at device 1.0 on pci0
pci1: <PCI bus> on pcib1
pci1: <display, VGA> at device 0.0 (no driver attached)
isab0: <PCI-ISA bridge> at device 2.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <SiS 962/963 UDMA133 controller> port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xff00-0xff0f at device 2.5 on pci0
ata0: <ATA channel 0> on atapci0
ata1: <ATA channel 1> on atapci0
pcm0: <SiS 7012> port 0xdc00-0xdcff,0xd400-0xd47f irq 11 at device 2.7 on pci0
pcm0: <C-Media Electronics CMI9738 AC97 Codec>
ohci0: <SiS 5571 USB controller> mem 0xcffed000-0xcffedfff irq 5 at device 3.0 on pci0
ohci0: [GIANT-LOCKED]
usb0: OHCI version 1.0, legacy support
usb0: SMM does not respond, resetting
usb0: <SiS 5571 USB controller> on ohci0
usb0: USB revision 1.0
uhub0: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 3 ports with 3 removable, self powered
ohci1: <SiS 5571 USB controller> mem 0xcffee000-0xcffeefff irq 11 at device 3.1 on pci0
ohci1: [GIANT-LOCKED]
usb1: OHCI version 1.0, legacy support
usb1: SMM does not respond, resetting
usb1: <SiS 5571 USB controller> on ohci1
usb1: USB revision 1.0
uhub1: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub1: 3 ports with 3 removable, self powered
ehci0: <EHCI (generic) USB 2.0 controller> mem 0xcffef000-0xcffeffff irq 12 at device 3.3 on pci0
ehci0: [GIANT-LOCKED]
usb2: EHCI version 1.0
usb2: companion controllers, 3 ports each: usb0 usb1
usb2: <EHCI (generic) USB 2.0 controller> on ehci0
usb2: USB revision 2.0
uhub2: SiS EHCI root hub, class 9/0, rev 2.00/1.00, addr 1
uhub2: 6 ports with 6 removable, self powered
sis0: <SiS 900 10/100BaseTX> port 0xd000-0xd0ff mem 0xcffec000-0xcffecfff irq 11 at device 4.0 on pci0
miibus0: <MII bus> on sis0
ukphy0: <Generic IEEE 802.3u media interface> on miibus0
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
sis0: Ethernet address: 00:0d:87:08:48:31
pci0: <display, VGA> at device 9.0 (no driver attached)
pci0: <display> at device 9.1 (no driver attached)
acpi_button1: <Sleep Button> on acpi0
fdc0: <floppy drive controller> port 0x3f2-0x3f3,0x3f4-0x3f5,0x3f7 irq 6 drq 2 on acpi0
fdc0: [FAST]
sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
sio0: type 16550A
ppc0: <ECP parallel printer port> port 0x378-0x37f,0x778-0x77b irq 7 drq 3 on acpi0
ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode
ppc0: FIFO with 16/16/16 bytes threshold
ppbus0: <Parallel port bus> on ppc0
ppi0: <Parallel I/O> on ppbus0
plip0: <PLIP network interface> on ppbus0
lpt0: <Printer> on ppbus0
lpt0: Interrupt-driven port
pmtimer0 on isa0
orm0: <ISA Option ROMs> at iomem 0xc0000-0xccfff,0xcd000-0xd4fff on isa0
atkbdc0: <Keyboard controller (i8042)> at port 0x60,0x64 on isa0
atkbd0: <AT Keyboard> irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
sc0: <System console> at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
sio1: configured irq 3 not in bitmap of probed irqs 0
sio1: port may not be enabled
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0
ukbd0: MOSART Semi. Wireless Keyboard & Mouse, rev 1.10/1.00, addr 2, iclass 3/1
kbd2 at ukbd0
ums0: MOSART Semi. Wireless Keyboard & Mouse, rev 1.10/1.00, addr 2, iclass 3/1
ums0: 5 buttons and Z dir.
Timecounter "TSC" frequency 1300054926 Hz quality 800
Timecounters tick every 1.000 msec
hptrr: no controller detected.
acd0: DVDR <HL-DT-ST DVDRAM GSA-4163B/A103> at ata0-master UDMA33
ad2: DMA limited to UDMA33, controller found non-ATA66 cableacd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x01

ad2: 39205MB <Maxtor 2F040L0 VAM51JJ0> at ata1-master UDMA33
ad3: DMA limited to UDMA33, controller found non-ATA66 cable
ad3: 190782MB <Seagate ST3200822A 3.01> at ata1-slave UDMA33
acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x01
cd0 at ata0 bus 0 target 0 lun 0
cd0: <HL-DT-ST DVDRAM GSA-4163B A103> Removable CD-ROM SCSI-0 device 
cd0: 33.000MB/s transfers
cd0: cd present [1 x 2048 byte records]
acd0: FAILURE - READ_TOC ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x06
acd0: FAILURE - READ_TOC ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x06
acd0: FAILURE - READ_TOC ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x06
Trying to mount root from ufs:/dev/ad2s3a
ukbd0: at uhub1 port 1 (addr 2) disconnected
ukbd0: detached
ums0: at uhub1 port 1 (addr 2) disconnected
ums0: detached
ukbd0: MOSART Semi. Wireless Keyboard & Mouse, rev 1.10/1.00, addr 2, iclass 3/1
kbd2 at ukbd0
ums0: MOSART Semi. Wireless Keyboard & Mouse, rev 1.10/1.00, addr 2, iclass 3/1
ums0: 5 buttons and Z dir.
 
BTW: Sendmail kann man ein für alle man und komplett mit
Code:
sendmail_enable="NONE"
ausschalten, dann braucht man nicht 3 verschiedene Einträge.
 
Habe das Problem weiterhin :D
Keine hier angegebene Massnahme hat gezogen...

Yamagi: wann genau ums.ko laden?
 
Ich hatte damals - seit 7.0 brauche ich den Hack nicht mehr -
/sbin/kldload usb.ko
/sbin/kldload ums.ko
in der /etc/rc.local stehen.
 
Hach ist das schön... als Workaround habe ich mir ein Verlängerungskabel an den Schreibtisch hochgelegt. Stecker ziehen -> wieder reinstecken ist momentan das Einzige, das hilft.
Alle anderen Tipps bringen nichts...
 
Zurück
Oben