From guru at unixarea.de Mon Jun 1 05:33:06 2009 From: guru at unixarea.de (Matthias Apitz) Date: Mon Jun 1 05:33:14 2009 Subject: X.org nv driver (xf86-video-nv-2.1.13) && Quadro FX 770M && dual screens In-Reply-To: <53a1e0710905311219h2e7fe9c5o4ffb913e4902226f@mail.gmail.com> References: <20090530140335.GA4500@current.Sisis.de> <53a1e0710905311219h2e7fe9c5o4ffb913e4902226f@mail.gmail.com> Message-ID: <20090601053306.GA1801@current.Sisis.de> El d?a Monday, June 01, 2009 a las 03:19:49AM +0800, Henry Hu escribi?: > On Sat, May 30, 2009 at 10:03 PM, Matthias Apitz wrote: > > > > Hello > > > > I'd like to use the external display of my Dell M4400 as a second X display > > screen, with lower resolution, to connect a beamer to it and to be able to direct > > X applications to use it with ... -display :0.1 or even just to drag the > > application to the second display. I have no idea how to configure this. > > Anyone has any pointer for me where to start reading about this? Is > > this possible at all with the Quadro FX 770M and the xf86-video-nv > > driver? The main display on LCD runs with 1920x1200 and I don't have a > > beamer supporting this resolution. > > You may try the nvidia driver, since I know that you can use > nvidia-settings to setup such things easily. Thanks for your feedback. But I'm running 8-CURRENT and it seems that the drivers at http://www.nvidia.com/object/unix.html (the latest version is 180.51 there) doesn not support -CURRENT and the kmod of the version in the port /usr/ports/x11/nvidia-driver (180.44) let X create a confi file fine with X -configure but if you launch X with the created config file it hardlocks the system. Thx matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ People who hate Microsoft Windows use Linux but people who love UNIX use FreeBSD. From guru at unixarea.de Mon Jun 1 12:26:52 2009 From: guru at unixarea.de (Matthias Apitz) Date: Mon Jun 1 12:26:59 2009 Subject: X.org nv driver (xf86-video-nv-2.1.13) && Quadro FX 770M && dual screens In-Reply-To: <20090601053306.GA1801@current.Sisis.de> References: <20090530140335.GA4500@current.Sisis.de> <53a1e0710905311219h2e7fe9c5o4ffb913e4902226f@mail.gmail.com> <20090601053306.GA1801@current.Sisis.de> Message-ID: <20090601122649.GA2902@current.Sisis.de> El d?a Monday, June 01, 2009 a las 07:33:06AM +0200, Matthias Apitz escribi?: > El d?a Monday, June 01, 2009 a las 03:19:49AM +0800, Henry Hu escribi?: > > > You may try the nvidia driver, since I know that you can use > > nvidia-settings to setup such things easily. > > Thanks for your feedback. But I'm running 8-CURRENT and it seems that > the drivers at http://www.nvidia.com/object/unix.html (the latest > version is 180.51 there) doesn not support -CURRENT and the kmod of the > version in the port /usr/ports/x11/nvidia-driver (180.44) let X create a > config file fine with X -configure but if you launch X with the created > config file it hardlocks the system. I've searched a while the FreeBSD forum of the nvidia driver at http://www.nvnews.net/vbulletin/forumdisplay.php?f=47 and learned that the lock is caused by the huge amount of memory my laptop has (4 GByte) and one needs a setting in /boot/loader.conf of machdep.disable_mtrrs=1 with this all is fine and X comes up as it should. The actual version is 180.60 and does not compile on CURRENT. One must disable the check for this version in NVIDIA-FreeBSD-x86-180.60/src/nv-freebsd.h: /* #if __FreeBSD_version >= 800000 #error This driver does not support FreeBSD 8.x/-CURRENT! #endif */ then it compiles and installs fine. As well the nvidia-settings must be compiled directly from the source because the one in the ports has some library conflict. Thanks for your hint again matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ People who hate Microsoft Windows use Linux but people who love UNIX use FreeBSD. From henry.hu.sh at gmail.com Mon Jun 1 12:36:04 2009 From: henry.hu.sh at gmail.com (Henry Hu) Date: Mon Jun 1 12:36:10 2009 Subject: X.org nv driver (xf86-video-nv-2.1.13) && Quadro FX 770M && dual screens In-Reply-To: <20090601122649.GA2902@current.Sisis.de> References: <20090530140335.GA4500@current.Sisis.de> <53a1e0710905311219h2e7fe9c5o4ffb913e4902226f@mail.gmail.com> <20090601053306.GA1801@current.Sisis.de> <20090601122649.GA2902@current.Sisis.de> Message-ID: <53a1e0710906010536r2f6c7dc4u502335f6f3e4bacc@mail.gmail.com> On Mon, Jun 1, 2009 at 8:26 PM, Matthias Apitz wrote: > El d?a Monday, June 01, 2009 a las 07:33:06AM +0200, Matthias Apitz escribi?: > >> El d?a Monday, June 01, 2009 a las 03:19:49AM +0800, Henry Hu escribi?: >> >> > You may try the nvidia driver, since I know that you can use >> > nvidia-settings to setup such things easily. >> >> Thanks for your feedback. But I'm running 8-CURRENT and it seems that >> the drivers at http://www.nvidia.com/object/unix.html (the latest >> version is 180.51 there) doesn not support -CURRENT and the kmod of the >> version in the port /usr/ports/x11/nvidia-driver (180.44) let X create a >> config file fine with X -configure but if you launch X with the created >> config file it hardlocks the system. > > I've searched a while the FreeBSD forum of the nvidia driver at > http://www.nvnews.net/vbulletin/forumdisplay.php?f=47 > and learned that the lock is caused by the huge amount of memory my > laptop has (4 GByte) and one needs a setting in /boot/loader.conf of > > machdep.disable_mtrrs=1 > > with this all is fine and X comes up as it should. > > The actual version is 180.60 and does not compile on CURRENT. One must > disable the check for this version in > NVIDIA-FreeBSD-x86-180.60/src/nv-freebsd.h: > > /* > #if __FreeBSD_version >= 800000 > #error This driver does not support FreeBSD 8.x/-CURRENT! > #endif > */ > > then it compiles and installs fine. Oh, I've forgotten the problem about large memory. By the way, since you said that the nvidia driver works well on 8-CURRENT, maybe I would upgrade to 8-CURRENT soon as it seems that there are many new features there. Have you tried 3D applications? Do they work well? > > As well the nvidia-settings must be compiled directly from the source > because the one in the ports has some library conflict. > > Thanks for your hint again > > ? ? ? ?matthias > -- > Matthias Apitz > t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 > e - w http://www.unixarea.de/ > People who hate Microsoft Windows use Linux but people who love UNIX use FreeBSD. > _______________________________________________ > freebsd-mobile@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-mobile > To unsubscribe, send any mail to "freebsd-mobile-unsubscribe@freebsd.org" > Cheers, Henry From vova at fbsd.ru Wed Jun 3 08:48:31 2009 From: vova at fbsd.ru (Vladimir Grebenschikov) Date: Wed Jun 3 08:48:38 2009 Subject: Any success with Lenovo T60 In-Reply-To: <20090528201844.7df2e164.taku@tackymt.homeip.net> References: <20090528191311.b68ab3b7.taku@tackymt.homeip.net> <200905281022.n4SAMdxr065296@sana.init-main.com> <20090528201844.7df2e164.taku@tackymt.homeip.net> Message-ID: <1244018899.1784.45.camel@localhost> Hi > I'll attach the patch in a Triaez fashion :) > though I don't think this is the way to go. > # We need to implement suspend_cpus() for i386 and utilize it. Just tested patch with modem suggestion on my T60. Kind of success, If I boot kernel without modules and then do suspend It resumes, and kind of 'lived' after that (everything expect display). If I had X on another vt I can switch here and it works fine. On switch back to console I get again black screen (no even backlight). hw.acpi.reset_video=1 makes difference, now after wake-up there is backlight, even sometimes just after wake-up it shows previous screen for a moment then makes it black again (but with backlight). Only switching to X reconfigures video mode again. If I try to suspend with modules loaded it does not wake up. (need to dig what module is problem) Any hints are very appreciated. PS. fresh 8-CURRENT, recent ports, patch from this thread. -- Vladimir B. Grebenschikov vova@fbsd.ru From akosela at andykosela.com Wed Jun 10 11:32:45 2009 From: akosela at andykosela.com (Andy Kosela) Date: Wed Jun 10 11:33:06 2009 Subject: FreeBSD and recent laptops Message-ID: <4a2f94be.MWoXcA9XOCCjKupX%akosela@andykosela.com> Hi all, Anyone can share their experience with running FreeBSD on modern business laptops, especially from HP or IBM. HP EliteBook, ProBook or Compaq models would be perfect. I need Fn brightness keys to work correctly out of the box. On my current 6715b with radeon(4) driver it's working. On a more recent 6730b with intel(4) this is not working unfortunately. I need to buy some new laptop and looking for a model with greatest FreeBSD compatibility. --Andy From guru at unixarea.de Wed Jun 10 11:56:58 2009 From: guru at unixarea.de (Matthias Apitz) Date: Wed Jun 10 11:57:05 2009 Subject: FreeBSD and recent laptops In-Reply-To: <4a2f94be.MWoXcA9XOCCjKupX%akosela@andykosela.com> References: <4a2f94be.MWoXcA9XOCCjKupX%akosela@andykosela.com> Message-ID: <20090610115656.GA3564@current.Sisis.de> El d?a Wednesday, June 10, 2009 a las 01:10:53PM +0200, Andy Kosela escribi?: > Hi all, > > Anyone can share their experience with running FreeBSD on modern > business laptops, especially from HP or IBM. HP EliteBook, ProBook or > Compaq models would be perfect. I need Fn brightness keys to work > correctly out of the box. On my current 6715b with radeon(4) driver > it's working. On a more recent 6730b with intel(4) this is not working > unfortunately. > > I need to buy some new laptop and looking for a model with greatest > FreeBSD compatibility. Please check this database: http://laptop.bsdgroup.de/freebsd/ Mine one is this: http://laptop.bsdgroup.de/freebsd/index.html?action=show_laptop_detail&laptop=12868 running 8-CURRENT, Wifi, 1920x1200 NVIDIA 180.66 driver, ... a power-engine :-) after typing 'pkg_add xxx' the prompt just in the same eye shut re-apeared and I was asking me if the beast did something or not :-) matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ People who hate Microsoft Windows use Linux but people who love UNIX use FreeBSD. From dealates at barimills.com Wed Jun 10 21:04:03 2009 From: dealates at barimills.com (Messler Mennie) Date: Wed Jun 10 21:04:17 2009 Subject: Tupac Tisspues? Message-ID: <5b56SLKheP@voshoving.nl> Hi, myy photo attached From ch.brunner at web.de Sat Jun 13 16:39:27 2009 From: ch.brunner at web.de (Christoph Brunner) Date: Sat Jun 13 16:39:35 2009 Subject: Glidepoint + Scrolling Message-ID: <20090613181533.503b7dc8@nostromo> Hi, on a Dell Precision M2300 laptop i am trying FreeBSD 8.0-CURRENT i386. It runs so long but i cannot get the touchpad to provide scrolling (in X). The touchpad identifies as GlidePoint. # dmesg | grep psm psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: [ITHREAD] psm0: model GlidePoint, device ID 0 Setting VertEdgeScroll, VertScrollDelta, *Edge options in xorg.conf i didn't have success. Does anybody have a working setup with Glidepoint and scrolling? How do i get this to work? Thank you in advance. Best regards, Chris From alex323 at gmail.com Sat Jun 13 20:09:47 2009 From: alex323 at gmail.com (Alex) Date: Sat Jun 13 20:10:21 2009 Subject: ThinkPad X200 (7454-CTO) Message-ID: <20090613154404.1f739030@orion.lan> Hello, I recently purchased a ThinkPad X200. I am attempting to run FreeBSD 7.2-RELEASE (amd64) and have had some success. I have sound working from the headphone port (snd_hda), but not the speakers. Wireless is not operational, as it is not detected at all by the kernel. X works fine using the intel video driver. Below is the output from dmesg: Copyright (c) 1992-2009 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 7.2-RELEASE-p1 #2: Sat Jun 13 12:51:19 EDT 2009 root@orion:/usr/obj/usr/src/sys/ORION Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Core(TM)2 Duo CPU P8600 @ 2.40GHz (2394.02-MHz K8-class CPU) Origin = "GenuineIntel" Id = 0x1067a Stepping = 10 Features=0xbfebfbff Features2=0x408e3fd,XSAVE> AMD Features=0x20100800 AMD Features2=0x1 Cores per package: 2 usable memory = 3148926976 (3003 MB) avail memory = 3038056448 (2897 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0: Changing APIC ID to 1 ioapic0 irqs 0-23 on motherboard kbd1 at kbdmux0 cryptosoft0: on motherboard acpi0: on motherboard acpi0: [ITHREAD] acpi_ec0: port 0x62,0x66 on acpi0 acpi0: Power Button (fixed) acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, bef00000 (3) failed Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 acpi_hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 14318180 Hz quality 900 acpi_lid0: on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 vgapci0: port 0x1800-0x1807 mem 0xf2000000-0xf23fffff,0xd0000000-0xdfffffff irq 16 at device 2.0 on pci0 agp0: on vgapci0 agp0: detected 32764k stolen memory agp0: aperture size is 256M vgapci1: mem 0xf2400000-0xf24fffff at device 2.1 on pci0 pci0: at device 3.0 (no driver attached) atapci0: port 0x1828-0x182f,0x180c-0x180f,0x1820-0x1827,0x1808-0x180b,0x1810-0x181f irq 18 at device 3.2 on pci0 atapci0: [ITHREAD] ata2: on atapci0 ata2: [ITHREAD] ata3: on atapci0 ata3: [ITHREAD] pci0: at device 3.3 (no driver attached) em0: port 0x1840-0x185f mem 0xf2600000-0xf261ffff,0xf2625000-0xf2625fff irq 20 at device 25.0 on pci0 em0: Using MSI interrupt em0: [FILTER] em0: Ethernet address: 00:1f:16:1e:bf:09 uhci0: port 0x1860-0x187f irq 20 at device 26.0 on pci0 uhci0: [GIANT-LOCKED] uhci0: [ITHREAD] usb0: on uhci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 2 ports with 2 removable, self powered uhci1: port 0x1880-0x189f irq 21 at device 26.1 on pci0 uhci1: [GIANT-LOCKED] uhci1: [ITHREAD] usb1: on uhci1 usb1: USB revision 1.0 uhub1: on usb1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0x18a0-0x18bf irq 22 at device 26.2 on pci0 uhci2: [GIANT-LOCKED] uhci2: [ITHREAD] usb2: on uhci2 usb2: USB revision 1.0 uhub2: on usb2 uhub2: 2 ports with 2 removable, self powered ehci0: mem 0xf2826c00-0xf2826fff irq 23 at device 26.7 on pci0 ehci0: [GIANT-LOCKED] ehci0: [ITHREAD] usb3: EHCI version 1.0 usb3: companion controllers, 2 ports each: usb0 usb1 usb2 usb3: on ehci0 usb3: USB revision 2.0 uhub3: on usb3 uhub3: 6 ports with 6 removable, self powered ugen0: on uhub3 hdac0: mem 0xf2620000-0xf2623fff irq 17 at device 27.0 on pci0 hdac0: HDA Driver Revision: 20090329_0131 hdac0: [ITHREAD] pcib1: irq 20 at device 28.0 on pci0 pci2: on pcib1 pcib2: irq 21 at device 28.1 on pci0 pci3: on pcib2 pci3: at device 0.0 (no driver attached) pcib3: irq 23 at device 28.3 on pci0 pci5: on pcib3 uhci3: port 0x18c0-0x18df irq 16 at device 29.0 on pci0 uhci3: [GIANT-LOCKED] uhci3: [ITHREAD] usb4: on uhci3 usb4: USB revision 1.0 uhub4: on usb4 uhub4: 2 ports with 2 removable, self powered uhci4: port 0x18e0-0x18ff irq 17 at device 29.1 on pci0 uhci4: [GIANT-LOCKED] uhci4: [ITHREAD] usb5: on uhci4 usb5: USB revision 1.0 uhub5: on usb5 uhub5: 2 ports with 2 removable, self powered uhci5: port 0x1c00-0x1c1f irq 18 at device 29.2 on pci0 uhci5: [GIANT-LOCKED] uhci5: [ITHREAD] usb6: on uhci5 usb6: USB revision 1.0 uhub6: on usb6 uhub6: 2 ports with 2 removable, self powered ehci1: mem 0xf2827000-0xf28273ff irq 19 at device 29.7 on pci0 ehci1: [GIANT-LOCKED] ehci1: [ITHREAD] usb7: EHCI version 1.0 usb7: companion controllers, 2 ports each: usb4 usb5 usb6 usb7: on ehci1 usb7: USB revision 2.0 uhub7: on usb7 uhub7: 6 ports with 6 removable, self powered pcib4: at device 30.0 on pci0 pci13: on pcib4 isab0: at device 31.0 on pci0 isa0: on isab0 atapci1: port 0x1c48-0x1c4f,0x183c-0x183f,0x1c40-0x1c47,0x1838-0x183b,0x1c20-0x1c3f mem 0xf2826000-0xf28267ff irq 16 at device 31.2 on pci0 atapci1: [ITHREAD] atapci1: AHCI Version 01.20 controller with 4 ports detected ata4: on atapci1 ata4: [ITHREAD] ata5: on atapci1 ata5: [ITHREAD] ata6: on atapci1 ata6: port not implemented ata6: [ITHREAD] ata7: on atapci1 ata7: port not implemented ata7: [ITHREAD] pci0: at device 31.3 (no driver attached) acpi_tz0: on acpi0 acpi_tz1: on acpi0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: [ITHREAD] psm0: model Generic PS/2 mouse, device ID 0 battery0: on acpi0 acpi_acad0: on acpi0 cpu0: on acpi0 ACPI Error (dsopcode-0350): No pointer back to NS node in buffer obj 0xffffff0003405080 [20070320] ACPI Exception (dswexec-0556): AE_AML_INTERNAL, While resolving operands for [OpcodeName unavailable] [20070320] ACPI Error (psparse-0626): Method parse/execution failed [\\_PR_.CPU0._OSC] (Node 0xffffff0001428c80), AE_AML_INTERNAL est0: on cpu0 p4tcc0: on cpu0 cpu1: on acpi0 ACPI Error (dsopcode-0350): No pointer back to NS node in buffer obj 0xffffff0003408800 [20070320] ACPI Exception (dswexec-0556): AE_AML_INTERNAL, While resolving operands for [OpcodeName unavailable] [20070320] ACPI Error (psparse-0626): Method parse/execution failed [\\_PR_.CPU1._OSC] (Node 0xffffff0001428ba0), AE_AML_INTERNAL est1: on cpu1 p4tcc1: on cpu1 orm0: at iomem 0xc0000-0xcffff,0xde000-0xdf7ff,0xe0000-0xeffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounters tick every 1.000 msec ad8: 152627MB at ata4-master SATA150 hdac0: HDA Codec #0: Conexant CX20561 (Hermosa) pcm0: at cad 0 nid 1 on hdac0 pcm1: at cad 0 nid 1 on hdac0 SMP: AP CPU #1 Launched! GEOM_LABEL: Label for provider ad8s2 is ufsid/4a3170a4a1588784. GEOM_LABEL: Label for provider ad8s1a is ufsid/4a3170a412bd0989. GEOM_LABEL: Label for provider ad8s1d is ufsid/4a3170ac73ed9a67. GEOM_LABEL: Label for provider ad8s1e is ufsid/4a3170a6f42ca34b. GEOM_LABEL: Label for provider ad8s1f is ufsid/4a3170a6b8af46dc. Trying to mount root from ufs:/dev/ad8s1a GEOM_LABEL: Label ufsid/4a3170a412bd0989 removed. GEOM_LABEL: Label for provider ad8s1a is ufsid/4a3170a412bd0989. GEOM_LABEL: Label ufsid/4a3170a4a1588784 removed. GEOM_LABEL: Label for provider ad8s2 is ufsid/4a3170a4a1588784. GEOM_LABEL: Label ufsid/4a3170a6f42ca34b removed. GEOM_LABEL: Label for provider ad8s1e is ufsid/4a3170a6f42ca34b. GEOM_LABEL: Label ufsid/4a3170a6b8af46dc removed. GEOM_LABEL: Label for provider ad8s1f is ufsid/4a3170a6b8af46dc. GEOM_LABEL: Label ufsid/4a3170ac73ed9a67 removed. GEOM_LABEL: Label for provider ad8s1d is ufsid/4a3170ac73ed9a67. GEOM_LABEL: Label ufsid/4a3170a412bd0989 removed. GEOM_LABEL: Label ufsid/4a3170a4a1588784 removed. GEOM_LABEL: Label ufsid/4a3170a6f42ca34b removed. GEOM_LABEL: Label ufsid/4a3170a6b8af46dc removed. GEOM_LABEL: Label ufsid/4a3170ac73ed9a67 removed. drm0: on vgapci0 vgapci0: child drm0 requested pci_enable_busmaster info: [drm] AGP at 0xd0000000 256MB info: [drm] Initialized i915 1.6.0 20080730 drm0: [ITHREAD] I purchased the laptop with the following wireless card: 44C8733I SBB THINKPAD B/G/N 44C5194I SBB INTEGRWIRELESSWIDEAREANETW This appears to be a RTL8192SE. I found a page from realtek describing it: http://www.realtek.com.tw/products/productsView.aspx?Langid=1&PNid=21&PFid=48&Level=5&Conn=4&ProdID=230 I tried downloading the Windows XP and Vista drivers from Lenovo and was able to get them compiled using ndisgen. However when I attempted to load them (seperately) into the kernel nothing happens. There is no output from dmesg and no new devices in the output of ifconfig -a. The following is the output from lshal regarding this device: udi = '/org/freedesktop/Hal/devices/pci_10ec_8172' info.parent = '/org/freedesktop/Hal/devices/pci_8086_2942' (string) info.subsystem = 'pci' (string) info.udi = '/org/freedesktop/Hal/devices/pci_10ec_8172' (string) info.vendor = 'Realtek Semiconductor Co., Ltd.' (string) pci.device_class = 2 (0x2) (int) pci.device_protocol = 0 (0x0) (int) pci.device_subclass = 128 (0x80) (int) pci.freebsd.bus = 3 (0x3) (int) pci.freebsd.device = 0 (0x0) (int) pci.freebsd.function = 0 (0x0) (int) pci.freebsd.secondary_bus = 0 (0x0) (int) pci.product_id = 33138 (0x8172) (int) pci.subsys_product_id = 57376 (0xe020) (int) pci.subsys_vendor = 'Realtek Semiconductor Co., Ltd.' (string) pci.subsys_vendor_id = 4332 (0x10ec) (int) pci.vendor = 'Realtek Semiconductor Co., Ltd.' (string) pci.vendor_id = 4332 (0x10ec) (int) uname -a follows: FreeBSD orion 7.2-RELEASE-p1 FreeBSD 7.2-RELEASE-p1 #2: Sat Jun 13 12:51:19 EDT 2009 root@orion:/usr/obj/usr/src/sys/ORION amd64 Does anyone know why the wireless card is not appearing, even though the drivers successfully compile? -- Alex From kg6ymn at gmail.com Sun Jun 14 02:38:43 2009 From: kg6ymn at gmail.com (michael brindle) Date: Sun Jun 14 02:38:49 2009 Subject: IBM x40 on Freebsd 7.2 Message-ID: Hello. I recently installed FreeBSD 7.2-RELEASE on an ibm x40 thinkpad. I have everything working as it should, except for the ipw 2200 bg wireless card. I have everything (more or less) set up, my kernel configuration file has everything the man page says it should. My /boot/loader.conf file has everything recommended for it to have. However, when I use ifconfig to connect to my wireless network, I get "iwi0: firmware error iwi0: firmware error iwi0: device configuration failed" I honestly have no idea how this is happening. Help would be much appreciated, thanks. -- Michael Brindle kg6ymn@gmail.com From guru at unixarea.de Mon Jun 15 07:04:48 2009 From: guru at unixarea.de (Matthias Apitz) Date: Mon Jun 15 07:04:57 2009 Subject: EeePC 900 with TwinView/Xinerama mode Message-ID: <20090615070448.GA1982@current.Sisis.de> Hello, I'm running 8-CURRENT on my EeePC 900; it uses the xorg-server xorg-7.4_1.tbz and xf86-video-intel-2.6.3.tbz (from the ports) for the display of the netbook with 1024x600 resolution; My questions is: can I somehow configure a 2nd external display with 1024x768 resolution (for connecting a video beamer for presentations) and bring both screens together in a Xinerama mode, like I can do with my bigger laptop using the NVIDIA driver? Any ideas? Thanks in advance matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ People who hate Microsoft Windows use Linux but people who love UNIX use FreeBSD. From rnoland at FreeBSD.org Mon Jun 15 14:20:50 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Mon Jun 15 14:21:08 2009 Subject: EeePC 900 with TwinView/Xinerama mode In-Reply-To: <20090615070448.GA1982@current.Sisis.de> References: <20090615070448.GA1982@current.Sisis.de> Message-ID: <1245075642.1940.618.camel@balrog.2hip.net> On Mon, 2009-06-15 at 09:04 +0200, Matthias Apitz wrote: > Hello, > > I'm running 8-CURRENT on my EeePC 900; it uses the xorg-server > xorg-7.4_1.tbz and xf86-video-intel-2.6.3.tbz (from the ports) for the > display of the netbook with 1024x600 resolution; My questions is: can I > somehow configure a 2nd external display with 1024x768 resolution (for > connecting a video beamer for presentations) and bring both screens > together in a Xinerama mode, like I can do with my bigger laptop using > the NVIDIA driver? Any ideas? Thanks in advance This should all be done with xrandr(1). Just make sure that your Virtual line in your xorg.conf allows for enough space in the framebuffer. robert. > matthias -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-mobile/attachments/20090615/d47b0ad3/attachment.pgp From vova at fbsd.ru Tue Jun 23 16:07:20 2009 From: vova at fbsd.ru (Vladimir Grebenschikov) Date: Tue Jun 23 16:07:27 2009 Subject: dbus and system events - howto Message-ID: <1245773234.11855.22.camel@localhost> Hi I am wandering is there "right" way to pass "system" events, like brightness buttons, volume buttons reported with devd to gnome desktop to: 1. do appropriate changes (change volume, brightness, etc) 2. show nice informational popup (with volume bar and so on) ? Before I had simple script, called from devd, it configures system with xbacklight, mixer and sysctl's, and shows something with onscreend daemon. After Xorg update oscreend starts to freeze by some reason. So now I am thinking about more "sane" way to link system events to gnome desktop. Also xbacklight now does not works with radeonhd again. So far I've dig for following dbus calls to manage brihgtness: /usr/local/bin/dbus-send --system --type=method_call --print-reply=1 \ --dest=org.freedesktop.PowerManagement \ --session /org/freedesktop/PowerManagement/Backlight \ org.freedesktop.PowerManagement.Backlight.GetBrightness /usr/local/bin/dbus-send --system --type=method_call --print-reply=1 \ --dest=org.freedesktop.PowerManagement \ --session /org/freedesktop/PowerManagement/Backlight \ org.freedesktop.PowerManagement.Backlight.SetBrightness uint32:$1 But, looks like they are not shows popup. And I've not found simple solution about volume yet. Hints will be appreciated. PS: Side question, can dbus work without DISPLAY and XAUTHORITY initialized ? (system bus ?, but above calls requires them) PPS: 8-CURRENT, Gnome, IBM T60. -- Vladimir B. Grebenschikov vova@fbsd.ru From lars.engels at 0x20.net Tue Jun 23 16:36:56 2009 From: lars.engels at 0x20.net (Lars Engels) Date: Tue Jun 23 16:37:03 2009 Subject: dbus and system events - howto In-Reply-To: <1245773234.11855.22.camel@localhost> References: <1245773234.11855.22.camel@localhost> Message-ID: <20090623182045.7wu2p8zs0g88k8w0@0x20.net> Quoting Vladimir Grebenschikov : > Hi > > I am wandering is there "right" way to pass "system" events, like > brightness buttons, volume buttons reported with devd to gnome desktop > to: > 1. do appropriate changes (change volume, brightness, etc) > 2. show nice informational popup (with volume bar and so on) > ? > > Before I had simple script, called from devd, it configures system with > xbacklight, mixer and sysctl's, and shows something with onscreend > daemon. > > After Xorg update oscreend starts to freeze by some reason. So now I am > thinking about more "sane" way to link system events to gnome desktop. > > Also xbacklight now does not works with radeonhd again. > > So far I've dig for following dbus calls to manage brihgtness: > /usr/local/bin/dbus-send --system --type=method_call > --print-reply=1 --dest=org.freedesktop.PowerManagement --session > /org/freedesktop/PowerManagement/Backlight > org.freedesktop.PowerManagement.Backlight.GetBrightness > > /usr/local/bin/dbus-send --system --type=method_call > --print-reply=1 --dest=org.freedesktop.PowerManagement --session > /org/freedesktop/PowerManagement/Backlight > org.freedesktop.PowerManagement.Backlight.SetBrightness uint32:$1 > > But, looks like they are not shows popup. > And I've not found simple solution about volume yet. > > Hints will be appreciated. > > PS: > Side question, can dbus work without DISPLAY and XAUTHORITY initialized ? > (system bus ?, but above calls requires them) > > PPS: > 8-CURRENT, Gnome, IBM T60. Just a side note: audio/osdmixer runs nicely in the background and shows any change to mixer volume via misc/xosd. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 195 bytes Desc: PGP Digital Signature Url : http://lists.freebsd.org/pipermail/freebsd-mobile/attachments/20090623/bae33a4a/attachment.pgp From parv at pair.com Wed Jun 24 12:09:10 2009 From: parv at pair.com (parv@pair.com) Date: Wed Jun 24 12:09:22 2009 Subject: eSATA and/or Firewire 800|400 card, cardbus or expresscard 54mm Message-ID: <20090624121036.GA3661@holstein.holy.cow> Hi there, Currently I am using FreeBSD 6-STABLE/i386 on Thinkpad T61 laptop[0], which has 3 USB ports, and vertically combined PC card & 54mm ExpressCard slot(s). My current SATA hard disk is going to fill soon. On soon to be acquired SATA hard disk[1], I will try first 7-STABLE (and later 8.x). To continue to be able to reliably[2] use one of the SATA hard drives, I am looking for suggestions for a eSATA, or Firewire 800 or 400 card either be cardbus or ExpressCard type. How do the multiports (eSATA with USB sometimes, along with Firewire [48]00 ports) cards workout? Is the support for either eSATA or Firewire cards equivalent in 6-STABLE & 7-STABLE? I am in Hawaii if that matters (well, it does in terms of shipping & return; so Amazon.com would be my first place to check). - Parv [0] http://www103.pair.com/parv/comp/unix/freebsd/thinkpad-t61-8897-cto/sys/ [1] One of Hitachi 5k500 or 5k320 320GB SATA, or WD Scorpio Blue 320GB or 500GB SATA-ii. [2] I had tried an external USB ATA hard disk enclosure (Vantec Nexstar) and an USB/SATA hard disk adapter with my older T41 ATA drive. During heavy activity over USB connection, FreeBSD 6.[12] panics using any of the two. AFAIR, I had tried with both [ue]hci drivers. -- From guru at unixarea.de Wed Jun 24 14:58:43 2009 From: guru at unixarea.de (Matthias Apitz) Date: Wed Jun 24 14:58:50 2009 Subject: EeePC 900 with TwinView/Xinerama mode In-Reply-To: <1245075642.1940.618.camel@balrog.2hip.net> References: <20090615070448.GA1982@current.Sisis.de> <1245075642.1940.618.camel@balrog.2hip.net> Message-ID: <20090624145828.GA5614@current.Sisis.de> El d?a Monday, June 15, 2009 a las 09:20:42AM -0500, Robert Noland escribi?: > On Mon, 2009-06-15 at 09:04 +0200, Matthias Apitz wrote: > > Hello, > > > > I'm running 8-CURRENT on my EeePC 900; it uses the xorg-server > > xorg-7.4_1.tbz and xf86-video-intel-2.6.3.tbz (from the ports) for the > > display of the netbook with 1024x600 resolution; My questions is: can I > > somehow configure a 2nd external display with 1024x768 resolution (for > > connecting a video beamer for presentations) and bring both screens > > together in a Xinerama mode, like I can do with my bigger laptop using > > the NVIDIA driver? Any ideas? Thanks in advance > > This should all be done with xrandr(1). Just make sure that your > Virtual line in your xorg.conf allows for enough space in the > framebuffer. > > robert. Robert, I wanted to play around with this on my other 8-CURRENT laptop, but it says: $ xrandr Xlib: extension "RANDR" missing on display ":0.0". RandR extension missing but it should be there: $ pkg_info | fgrep randr libXrandr-1.3.0 X Resize and Rotate extension library randrproto-1.3.0 Randr extension headers xrandr-1.3.0 Primitive command line interface to the RandR extension $ fgrep -i randr /var/log/Xorg.0.log (II) NVIDIA(0): will be available via XRandR and XF86VidMode): (II) NVIDIA(1): will be available via XRandR and XF86VidMode): (==) RandR enabled (==) RandR enabled (II) Initializing built-in extension RANDR What is wrong? Thx matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ People who hate Microsoft Windows use Linux but people who love UNIX use FreeBSD. From rnoland at FreeBSD.org Wed Jun 24 15:03:18 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Wed Jun 24 15:03:29 2009 Subject: EeePC 900 with TwinView/Xinerama mode In-Reply-To: <20090624145828.GA5614@current.Sisis.de> References: <20090615070448.GA1982@current.Sisis.de> <1245075642.1940.618.camel@balrog.2hip.net> <20090624145828.GA5614@current.Sisis.de> Message-ID: <1245855786.1742.9.camel@balrog.2hip.net> On Wed, 2009-06-24 at 16:58 +0200, Matthias Apitz wrote: > El d?a Monday, June 15, 2009 a las 09:20:42AM -0500, Robert Noland escribi?: > > > On Mon, 2009-06-15 at 09:04 +0200, Matthias Apitz wrote: > > > Hello, > > > > > > I'm running 8-CURRENT on my EeePC 900; it uses the xorg-server > > > xorg-7.4_1.tbz and xf86-video-intel-2.6.3.tbz (from the ports) for the > > > display of the netbook with 1024x600 resolution; My questions is: can I > > > somehow configure a 2nd external display with 1024x768 resolution (for > > > connecting a video beamer for presentations) and bring both screens > > > together in a Xinerama mode, like I can do with my bigger laptop using > > > the NVIDIA driver? Any ideas? Thanks in advance > > > > This should all be done with xrandr(1). Just make sure that your > > Virtual line in your xorg.conf allows for enough space in the > > framebuffer. > > > > robert. > > Robert, > > I wanted to play around with this on my other 8-CURRENT laptop, but it > says: > > $ xrandr > Xlib: extension "RANDR" missing on display ":0.0". > RandR extension missing > > but it should be there: > > $ pkg_info | fgrep randr > libXrandr-1.3.0 X Resize and Rotate extension library > randrproto-1.3.0 Randr extension headers > xrandr-1.3.0 Primitive command line interface to the RandR extension > > $ fgrep -i randr /var/log/Xorg.0.log > (II) NVIDIA(0): will be available via XRandR and XF86VidMode): > (II) NVIDIA(1): will be available via XRandR and XF86VidMode): > (==) RandR enabled > (==) RandR enabled > (II) Initializing built-in extension RANDR > > What is wrong? Thx Not sure really, I don't know anything about the Nvidia binary driver. You might try rebuilding xorg-server, but really I have no idea. robert. > matthias > -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-mobile/attachments/20090624/554a7d13/attachment.pgp From parv at pair.com Thu Jun 25 10:33:57 2009 From: parv at pair.com (Parv) Date: Thu Jun 25 10:34:04 2009 Subject: eSATA and/or Firewire 800|400 card, cardbus or expresscard 54mm In-Reply-To: <20090624121036.GA3661@holstein.holy.cow> References: <20090624121036.GA3661@holstein.holy.cow> Message-ID: <20090625103525.GA1445@holstein.holy.cow> in message <20090624121036.GA3661@holstein.holy.cow>, wrote parv@pair.com thusly... > ... > On soon to be acquired SATA hard disk[1], I will try first > 7-STABLE (and later 8.x). To continue to be able to reliably[2] > use one of the SATA hard drives, I am looking for suggestions for > a eSATA, or Firewire 800 or 400 card either be cardbus or > ExpressCard type. ... Here are some of the likely candidates ... SIIG SC-SAEE22-S1 eSATA II 2-Port ExpressCard http://www.amazon.com/exec/obidos/tg/detail/-/B000LCZ2SW/ Addonics Cardbus Esata CONTROLLER2 Ports http://www.amazon.com/exec/obidos/tg/detail/-/B000AAZQQS/ Vantec UGT-ST350CB 2-Port eSATA II-150 PCMCIA CardBus http://www.amazon.com/exec/obidos/tg/detail/-/B000HJ75C0/ Startech Card Bus IEEE-1394 Firewire Notebook Card http://www.amazon.com/exec/obidos/tg/detail/-/B0000512GH/ ... Please let me know if you had/have good or bad experience with them. - Parv -- From marcus at freebsd.org Fri Jun 26 19:44:20 2009 From: marcus at freebsd.org (Joe Marcus Clarke) Date: Fri Jun 26 19:44:54 2009 Subject: dbus and system events - howto In-Reply-To: <1245773234.11855.22.camel@localhost> References: <1245773234.11855.22.camel@localhost> Message-ID: <4A451FE9.60002@freebsd.org> Vladimir Grebenschikov wrote: > Hi > > I am wandering is there "right" way to pass "system" events, like > brightness buttons, volume buttons reported with devd to gnome desktop > to: > 1. do appropriate changes (change volume, brightness, etc) > 2. show nice informational popup (with volume bar and so on) > ? > > Before I had simple script, called from devd, it configures system with > xbacklight, mixer and sysctl's, and shows something with onscreend > daemon. > > After Xorg update oscreend starts to freeze by some reason. So now I am > thinking about more "sane" way to link system events to gnome desktop. > > Also xbacklight now does not works with radeonhd again. > > So far I've dig for following dbus calls to manage brihgtness: > /usr/local/bin/dbus-send --system --type=method_call --print-reply=1 \ > --dest=org.freedesktop.PowerManagement \ > --session /org/freedesktop/PowerManagement/Backlight \ > org.freedesktop.PowerManagement.Backlight.GetBrightness > > /usr/local/bin/dbus-send --system --type=method_call --print-reply=1 \ > --dest=org.freedesktop.PowerManagement \ > --session /org/freedesktop/PowerManagement/Backlight \ > org.freedesktop.PowerManagement.Backlight.SetBrightness uint32:$1 > > But, looks like they are not shows popup. > And I've not found simple solution about volume yet. I haven't done much with power management in a long time as I don't have a laptop with good working PM. However, the volume support is easy. Just go to your Keyboard Shortcuts capplet, and add a new hotkey for the volume up and volume down actions. I actually used the Dell buttons on my laptop for this, and it works very well in GNOME. Joe > > Hints will be appreciated. > > PS: > Side question, can dbus work without DISPLAY and XAUTHORITY initialized ? > (system bus ?, but above calls requires them) > > PPS: > 8-CURRENT, Gnome, IBM T60. > -- Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome From vova at fbsd.ru Fri Jun 26 21:38:01 2009 From: vova at fbsd.ru (Vladimir Grebenschikov) Date: Fri Jun 26 21:38:08 2009 Subject: dbus and system events - howto In-Reply-To: <4A451FE9.60002@freebsd.org> References: <1245773234.11855.22.camel@localhost> <4A451FE9.60002@freebsd.org> Message-ID: <1246052273.2303.6.camel@localhost> On Fri, 2009-06-26 at 15:22 -0400, Joe Marcus Clarke wrote: > > But, looks like they are not shows popup. > > And I've not found simple solution about volume yet. > > I haven't done much with power management in a long time as I don't have > a laptop with good working PM. However, the volume support is easy. > Just go to your Keyboard Shortcuts capplet, and add a new hotkey for the > volume up and volume down actions. I actually used the Dell buttons on > my laptop for this, and it works very well in GNOME. This will work only in case when volume keys generate keyboard events. In my case they generate devd events, as well as brightness keys. That's why I am seeking a way to send appropriate events to dbus. > Joe -- Vladimir B. Grebenschikov vova@fbsd.ru From marcus at freebsd.org Fri Jun 26 22:00:50 2009 From: marcus at freebsd.org (Joe Marcus Clarke) Date: Fri Jun 26 22:00:56 2009 Subject: dbus and system events - howto In-Reply-To: <1246052273.2303.6.camel@localhost> References: <1245773234.11855.22.camel@localhost> <4A451FE9.60002@freebsd.org> <1246052273.2303.6.camel@localhost> Message-ID: <4A45450D.1040204@freebsd.org> Vladimir Grebenschikov wrote: > On Fri, 2009-06-26 at 15:22 -0400, Joe Marcus Clarke wrote: > >>> But, looks like they are not shows popup. >>> And I've not found simple solution about volume yet. >> I haven't done much with power management in a long time as I don't have >> a laptop with good working PM. However, the volume support is easy. >> Just go to your Keyboard Shortcuts capplet, and add a new hotkey for the >> volume up and volume down actions. I actually used the Dell buttons on >> my laptop for this, and it works very well in GNOME. > > This will work only in case when volume keys generate keyboard events. > In my case they generate devd events, as well as brightness keys. > > That's why I am seeking a way to send appropriate events to dbus. One thing you might do is use dbus-monitor to watch the session and system buses. Then tie the volume actions to a usable key combination, and see what evens are generated. I don't think any dbus events will be generated for such events, but I could be wrong. Joe > >> Joe > -- Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome From aragon at phat.za.net Sun Jun 28 23:21:17 2009 From: aragon at phat.za.net (Aragon Gouveia) Date: Sun Jun 28 23:21:23 2009 Subject: dbus and system events - howto In-Reply-To: <1246052273.2303.6.camel@localhost> References: <1245773234.11855.22.camel@localhost> <4A451FE9.60002@freebsd.org> <1246052273.2303.6.camel@localhost> Message-ID: <4A47F6CA.2050304@phat.za.net> Hi, Vladimir Grebenschikov wrote: > This will work only in case when volume keys generate keyboard events. > In my case they generate devd events, as well as brightness keys. > > That's why I am seeking a way to send appropriate events to dbus. For adjusting screen brightness without X you might consider acpi_video(4). If it works on your system you can short circuit X completely and just let devd adjust the brightness via sysctl. The only downside is it does not have a fade effect like xbacklight. Regards, Aragon From vova at fbsd.ru Mon Jun 29 11:13:49 2009 From: vova at fbsd.ru (Vladimir Grebenschikov) Date: Mon Jun 29 11:13:57 2009 Subject: dbus and system events - howto In-Reply-To: <4A47F6CA.2050304@phat.za.net> References: <1245773234.11855.22.camel@localhost> <4A451FE9.60002@freebsd.org> <1246052273.2303.6.camel@localhost> <4A47F6CA.2050304@phat.za.net> Message-ID: <1246273984.1745.30.camel@localhost> On Mon, 2009-06-29 at 01:03 +0200, Aragon Gouveia wrote: > For adjusting screen brightness without X you might consider > acpi_video(4). If it works on your system you can short circuit X > completely and just let devd adjust the brightness via sysctl. Yes, That's as I've done before, and sysctl method stop work for me when radeonhd gets backlight support. > The only > downside is it does not have a fade effect like xbacklight. > > > Regards, > Aragon > _______________________________________________ > freebsd-mobile@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-mobile > To unsubscribe, send any mail to "freebsd-mobile-unsubscribe@freebsd.org" -- Vladimir B. Grebenschikov vova@fbsd.ru From vova at fbsd.ru Mon Jun 29 11:15:25 2009 From: vova at fbsd.ru (Vladimir Grebenschikov) Date: Mon Jun 29 11:15:39 2009 Subject: dbus and system events - howto In-Reply-To: <4A45450D.1040204@freebsd.org> References: <1245773234.11855.22.camel@localhost> <4A451FE9.60002@freebsd.org> <1246052273.2303.6.camel@localhost> <4A45450D.1040204@freebsd.org> Message-ID: <1246273810.1745.28.camel@localhost> On Fri, 2009-06-26 at 18:00 -0400, Joe Marcus Clarke wrote: > One thing you might do is use dbus-monitor to watch the session and > system buses. Then tie the volume actions to a usable key combination, > and see what evens are generated. I don't think any dbus events will be > generated for such events, but I could be wrong. On AC power disconnect brightness changed and popup with brightness bar percent shown. Just want to get same effect with notebook buttons. Looks like popup shown by gnome-power-manager. Monitor shows not events related to brightness - :( $ dbus-monitor --system signal sender=org.freedesktop.DBus -> dest=:1.50 serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameAcquired string ":1.50" signal sender=:1.1 -> dest=(null destination) serial=561 path=/org/freedesktop/Hal/devices/acpi_acad_0; interface=org.freedesktop.Hal.Device; member=PropertyModified int32 1 array [ struct { string "ac_adapter.present" boolean false boolean false } ] signal sender=org.freedesktop.DBus -> dest=(null destination) serial=7 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged string ":1.51" string "" string ":1.51" signal sender=org.freedesktop.DBus -> dest=(null destination) serial=8 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged string ":1.51" string ":1.51" string "" signal sender=:1.1 -> dest=(null destination) serial=564 path=/org/freedesktop/Hal/devices/battery_0; interface=org.freedesktop.Hal.Device; member=PropertyModified int32 1 array [ struct { string "battery.voltage.current" boolean false boolean false } ] signal sender=:1.1 -> dest=(null destination) serial=565 path=/org/freedesktop/Hal/devices/battery_0; interface=org.freedesktop.Hal.Device; member=PropertyModified int32 1 array [ struct { string "battery.reporting.current" boolean false boolean false } ] signal sender=:1.1 -> dest=(null destination) serial=566 path=/org/freedesktop/Hal/devices/battery_0; interface=org.freedesktop.Hal.Device; member=PropertyModified int32 1 array [ struct { string "battery.charge_level.current" boolean false boolean false } ] signal sender=:1.1 -> dest=(null destination) serial=567 path=/org/freedesktop/Hal/devices/battery_0; interface=org.freedesktop.Hal.Device; member=PropertyModified int32 1 array [ struct { string "battery.rechargeable.is_discharging" boolean false boolean false } ] signal sender=:1.1 -> dest=(null destination) serial=568 path=/org/freedesktop/Hal/devices/battery_0; interface=org.freedesktop.Hal.Device; member=PropertyModified int32 1 array [ struct { string "battery.remaining_time" boolean false boolean true } ] signal sender=org.freedesktop.DBus -> dest=(null destination) serial=9 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged string ":1.52" string "" string ":1.52" signal sender=org.freedesktop.DBus -> dest=(null destination) serial=10 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged string ":1.52" string ":1.52" string "" signal sender=org.freedesktop.DBus -> dest=(null destination) serial=11 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged string ":1.53" string "" string ":1.53" signal sender=org.freedesktop.DBus -> dest=(null destination) serial=12 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged string ":1.53" string ":1.53" string "" signal sender=org.freedesktop.DBus -> dest=(null destination) serial=13 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged string ":1.54" string "" string ":1.54" signal sender=org.freedesktop.DBus -> dest=(null destination) serial=14 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged string ":1.54" string ":1.54" string "" signal sender=org.freedesktop.DBus -> dest=(null destination) serial=15 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged string ":1.55" string "" string ":1.55" signal sender=org.freedesktop.DBus -> dest=(null destination) serial=16 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged string ":1.55" string ":1.55" string "" ^C^C > Joe -- Vladimir B. Grebenschikov vova@fbsd.ru