From owner-freebsd-mobile@FreeBSD.ORG Sun Sep 12 08:12:10 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2D5A16A4CE for ; Sun, 12 Sep 2004 08:12:10 +0000 (GMT) Received: from tts.orel.ru (tts.orel.ru [213.59.64.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id A05B843D41 for ; Sun, 12 Sep 2004 08:12:09 +0000 (GMT) (envelope-from bel@orel.ru) Received: from orel.ru (lg-r0.dialup.orel.ru [62.33.11.41]) (authenticated bits=0) by tts.orel.ru (8.12.10/8.12.10/bel) with ESMTP id i8C8BueT021822 for ; Sun, 12 Sep 2004 12:12:05 +0400 Message-ID: <41440270.7000402@orel.ru> Date: Sun, 12 Sep 2004 12:01:52 +0400 From: Andrew Belashov User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040811 X-Accept-Language: ru, en-us, en MIME-Version: 1.0 To: freebsd-mobile@freebsd.org Content-Type: multipart/mixed; boundary="------------090302030300070303050507" X-Zombi-Check: on netra2.orel.ru Subject: [PATCH] cardbus and pccard on old laptop X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Sep 2004 08:12:10 -0000 This is a multi-part message in MIME format. --------------090302030300070303050507 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit This patch resolves two separate problem: o Incorrect programing memory map registers in exca driver. o Memory allocation problem in cbb and pcib. Patch tested on my old Fujitsu FMV-BIBLIO NU13 (Pentium I @133MHz). -- With best regards, Andrew Belashov. --------------090302030300070303050507 Content-Type: text/plain; name="cbb.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="cbb.patch" --- dev/exca/exca.c.orig Mon Aug 16 05:57:06 2004 +++ dev/exca/exca.c Thu Sep 9 15:26:12 2004 @@ -180,9 +180,12 @@ { struct mem_map_index_st *map; struct pccard_mem_handle *mem; + uint32_t offset; map = &mem_map_index[win]; mem = &sc->mem[win]; + offset = ((mem->cardaddr >> EXCA_CARDMEM_ADDRX_SHIFT) - + (mem->addr >> EXCA_SYSMEM_ADDRX_SHIFT)) & 0x3fff; exca_putb(sc, map->sysmem_start_lsb, (mem->addr >> EXCA_SYSMEM_ADDRX_SHIFT) & 0xff); exca_putb(sc, map->sysmem_start_msb, @@ -202,9 +205,9 @@ (mem->addr >> EXCA_MEMREG_WIN_SHIFT) & 0xff); exca_putb(sc, map->cardmem_lsb, - (mem->cardaddr >> EXCA_CARDMEM_ADDRX_SHIFT) & 0xff); + offset & 0xff); exca_putb(sc, map->cardmem_msb, - ((mem->cardaddr >> (EXCA_CARDMEM_ADDRX_SHIFT + 8)) & + ((offset >> 8) & EXCA_CARDMEM_ADDRX_MSB_ADDR_MASK) | ((mem->kind == PCCARD_A_MEM_ATTR) ? EXCA_CARDMEM_ADDRX_MSB_REGACTIVE_ATTR : 0)); --- dev/pccbb/pccbb_pci.c.orig Mon Aug 16 10:33:58 2004 +++ dev/pccbb/pccbb_pci.c Sun Sep 12 10:50:03 2004 @@ -286,6 +286,41 @@ printf("\n"); } +extern u_long cbb_start_mem; + +static int +cbb_pci_get_memory(device_t brdev, int *rid) +{ + struct cbb_softc *sc; + u_int32_t sockbase; + + sc = (struct cbb_softc *) device_get_softc(brdev); + sockbase = pci_read_config(brdev, *rid, 4); + if (sockbase >= 0x100000 && sockbase < 0xfffffff0) { + device_printf(brdev, "Could not map register memory 0x%x\n", + sockbase); + return (ENOMEM); + } + pci_write_config(brdev, *rid, 0xffffffff, 4); + sockbase = pci_read_config(brdev, *rid, 4); + sockbase = (sockbase & 0xfffffff0) & -(sockbase & 0xfffffff0); +#define CBB_SYS_RES_MEMORY_END 0xFFFFFFFF + sc->base_res = bus_generic_alloc_resource(device_get_parent(brdev), + brdev, SYS_RES_MEMORY, rid, + cbb_start_mem, CBB_SYS_RES_MEMORY_END, + sockbase, RF_ACTIVE | rman_make_alignment_flags(sockbase)); + if (sc->base_res == NULL) { + device_printf(brdev, "Could not grab register memory\n"); + return (ENOMEM); + } + sockbase = rman_get_start(sc->base_res); + pci_write_config(brdev, *rid, sockbase, 4); +#if 1 + device_printf(brdev, "Fixup pcib bug: PCI Memory allocated: 0x%08x\n", sockbase); +#endif + return (0); +} + static int cbb_pci_attach(device_t brdev) { @@ -312,6 +347,18 @@ rid = CBBR_SOCKBASE; sc->base_res = bus_alloc_resource_any(brdev, SYS_RES_MEMORY, &rid, RF_ACTIVE); + + /* + * XXX Here temp(?) workaround for systems with resource allocation + * problem. Fixup resource allocation bug/feature in pcib. + */ + if (sc->base_res && rman_get_start(sc->base_res) < 0x100000) { + bus_release_resource(brdev, SYS_RES_MEMORY, rid, + sc->base_res); + sc->base_res = NULL; + cbb_pci_get_memory(brdev, &rid); + } + if (!sc->base_res) { device_printf(brdev, "Could not map register memory\n"); mtx_destroy(&sc->mtx); --------------090302030300070303050507-- From owner-freebsd-mobile@FreeBSD.ORG Sun Sep 12 20:16:51 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A74F216A4CE for ; Sun, 12 Sep 2004 20:16:51 +0000 (GMT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F3BD43D41 for ; Sun, 12 Sep 2004 20:16:51 +0000 (GMT) (envelope-from c.widger@comcast.net) Received: from [192.168.90.36] (c-24-5-158-1.client.comcast.net[24.5.158.1]) by comcast.net (rwcrmhc11) with ESMTP id <20040912201651013004sngfe> (Authid: c.widger); Sun, 12 Sep 2004 20:16:51 +0000 Message-ID: <41444D28.2050008@comcast.net> Date: Sun, 12 Sep 2004 13:20:40 +0000 From: cwidger User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.2) Gecko/20040826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-mobile@freebsd.org X-Enigmail-Version: 0.85.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: ACPI works! X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Sep 2004 20:16:51 -0000 I just wanted to let everyone know ACPI works now with my Compaq Presario 2100. I'm running a CVSUP'd version of 5.3-BETA3. With 5.2 when I turned ACPI on my wireless card wasn't associating, but now it does! From owner-freebsd-mobile@FreeBSD.ORG Mon Sep 13 05:33:29 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7726016A4CE for ; Mon, 13 Sep 2004 05:33:29 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28E7443D62 for ; Mon, 13 Sep 2004 05:33:29 +0000 (GMT) (envelope-from trenktaz@gmail.com) Received: by mproxy.gmail.com with SMTP id 76so343870rnk for ; Sun, 12 Sep 2004 22:33:27 -0700 (PDT) Received: by 10.38.24.17 with SMTP id 17mr1046501rnx; Sun, 12 Sep 2004 22:33:27 -0700 (PDT) Received: by 10.38.71.9 with HTTP; Sun, 12 Sep 2004 22:33:27 -0700 (PDT) Message-ID: Date: Mon, 13 Sep 2004 08:33:27 +0300 From: Mantas Smelevicius aka trenktaz To: freebsd-mobile@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Acer TravelMate 290 X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mantas Smelevicius aka trenktaz List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Sep 2004 05:33:29 -0000 Hi everyone, Anyone got FreeBSD installed in to Acer TravelMate 291LCi? I tried to install various versions of fbsd, but unfortunnely - no succes. Installation hang on scanning IRQ's -- Mantas Smelevicius aka trenktaz http://mantas.lt ICQ UIN 31072511 IRC trenktaz on irc.ktu.lt (#FreeBSD) From owner-freebsd-mobile@FreeBSD.ORG Mon Sep 13 07:20:37 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD99716A4CE; Mon, 13 Sep 2004 07:20:37 +0000 (GMT) Received: from cydem.org (S0106000103ce4c9c.ed.shawcable.net [68.149.254.167]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47D7943D31; Mon, 13 Sep 2004 07:20:37 +0000 (GMT) (envelope-from soralx@cydem.org) Received: from S01060020ed3972ba.ed.shawcable.net (S01060020ed3972ba.ed.shawcable.net [68.149.254.42]) by cydem.org (Postfix/FreeBSD) with ESMTP id 425A2381BA; Mon, 13 Sep 2004 01:20:36 -0600 (MDT) From: To: freebsd-hardware@freebsd.org Date: Mon, 13 Sep 2004 01:20:35 -0600 User-Agent: KMail/1.5.4 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200409130120.35057.soralx@cydem.org> cc: freebsd-hackers@freebsd.org cc: freebsd-small@freebsd.org cc: freebsd-mobile@freebsd.org Subject: 586Core X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Sep 2004 07:20:38 -0000 Good localtime() I'm starting some small project, and I need to decide what hardware will fit its needs. I'm looking for a small single-board computer that should have minimum: 2 serial ports (RS232 & [RS232 | USB(preferable)]), 8-bit databus, FLASH disk, RTC, 486 CPU performance, low power consumption; should be able to run FreeBSD. PCB size does not matter much. One of the applications I plan to run on it is 'gnokii'. I've found this: 'http://www.compulab.co.il/586core.htm', and I'd appreciate to get some opinions on this product. Is anyone using it? How well does it work with FreeBSD (or *BSD)? How well FBSD works with its USB controller (ScanLogic SL811HST)? Maybe someone can suggest a better and possibly less expensive alternative? I'd like to get as many opinions as possible, therefore crossposting. Sorry. Timestamp: 0x41453D16 [SorAlx] http://cydem.org.ua/ ridin' VN1500-B2 From owner-freebsd-mobile@FreeBSD.ORG Mon Sep 13 08:42:49 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92BA516A4CE for ; Mon, 13 Sep 2004 08:42:49 +0000 (GMT) Received: from mail.tpgi.com.au (mail6.tpgi.com.au [203.12.160.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96D3943D48 for ; Mon, 13 Sep 2004 08:42:47 +0000 (GMT) (envelope-from adslvmlg@tpg.com.au) Received: from tigan.tpg.com.au (tigan.tpgi.com.au [203.12.160.51]) by mail.tpgi.com.au (8.12.10/8.12.10) with ESMTP id i8D8giMW025932 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Mon, 13 Sep 2004 18:42:44 +1000 Received: from tigan.tpg.com.au (localhost.localdomain [127.0.0.1]) by tigan.tpg.com.au (8.12.8/8.12.8) with ESMTP id i8D8giaN004379 for ; Mon, 13 Sep 2004 18:42:44 +1000 Received: (from apache@localhost) by tigan.tpg.com.au (8.12.8/8.12.8/Submit) id i8D8gh99004377 for freebsd-mobile@freebsd.org; Mon, 13 Sep 2004 18:42:43 +1000 Received: from 220.244.162.42 ( [220.244.162.42]) as user adslvmlg by postoffice.tpg.com.au with HTTP; Mon, 13 Sep 2004 18:42:43 +1000 Message-ID: <1095064963.41455d831ff01@postoffice.tpg.com.au> Date: Mon, 13 Sep 2004 18:42:43 +1000 From: adslvmlg@tpg.com.au To: freebsd-mobile@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.1 X-ISP: TPG Internet Australia http://www.tpg.com.au/ X-TPG-Antivirus: Passed Subject: 5.2.1 can't load xl0 driver X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Sep 2004 08:42:49 -0000 Dear list, My problem with 5.2.1-Release: I use 4.10 for my server, and workstation, and recently I am planning to give 5.2.1 a try, in order to getting familiar with the next release 5.3. After I installed 5.2.1 on my IBM Thinkpad A21P, the system didn't recoganize my 3Com network card during installation. After I reboot the system, the xl0 3Com NIC showed up, and I ifconfig it, and my network is blocked, I can't ping any computer within my network. And then I reboot the system again, the xl0 disappeared again. And the system keep doing this to me. Just wondering is this a bug of 5.2.1 or it's the problem with my laptop? And experienced this problem? Cheers, LEI From owner-freebsd-mobile@FreeBSD.ORG Mon Sep 13 14:28:14 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A39CE16A4CE; Mon, 13 Sep 2004 14:28:14 +0000 (GMT) Received: from ms.titl.ru (ms.titl.ru [217.73.113.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25DC643D41; Mon, 13 Sep 2004 14:28:14 +0000 (GMT) (envelope-from tarkhil@webmail.sub.ru) Received: from localhost (localhost.localdomain [127.0.0.1]) by ms.titl.ru (Postfix) with ESMTP id 6D9F26DCCD8; Mon, 13 Sep 2004 18:28:10 +0400 (MSD) Received: from ms.titl.ru ([127.0.0.1]) by localhost (ms.titl.ru [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12497-04; Mon, 13 Sep 2004 18:28:10 +0400 (MSD) Received: from 99.titl.ru (unknown [192.168.100.253]) by ms.titl.ru (Postfix) with SMTP id 3B6D46DCCCF; Mon, 13 Sep 2004 18:28:10 +0400 (MSD) Date: Mon, 13 Sep 2004 18:28:11 +0400 From: Alex Povolotsky To: freebsd-mobile@freebsd.org, freebsd-hardware@freebsd.org Message-ID: <20040913182811.33080fad@99.titl.ru> X-Mailer: Sylpheed-Claws 0.9.12a (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at localhost Subject: Compaq and dockstation X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Sep 2004 14:28:14 -0000 Hello! I was offered to buy used Compaq Armada with dockstation containint IDE controller and 3 PCI slots. Sounds great, but does anyone have any experience with such devices? Will it work with FreeBSD? -- Alex. From owner-freebsd-mobile@FreeBSD.ORG Mon Sep 13 14:33:32 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49EE716A4CE for ; Mon, 13 Sep 2004 14:33:32 +0000 (GMT) Received: from postal1.es.net (postal1.es.net [198.128.3.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AA8443D45 for ; Mon, 13 Sep 2004 14:33:32 +0000 (GMT) (envelope-from oberman@es.net) Received: from ptavv.es.net ([198.128.4.29]) by postal1.es.net (Postal Node 1) with ESMTP (SSL) id IBA74465; Mon, 13 Sep 2004 07:33:31 -0700 Received: from ptavv (localhost [127.0.0.1]) by ptavv.es.net (Tachyon Server) with ESMTP id B58835D04; Mon, 13 Sep 2004 07:33:30 -0700 (PDT) To: adslvmlg@tpg.com.au In-reply-to: Your message of "Mon, 13 Sep 2004 18:42:43 +1000." <1095064963.41455d831ff01@postoffice.tpg.com.au> Date: Mon, 13 Sep 2004 07:33:30 -0700 From: "Kevin Oberman" Message-Id: <20040913143330.B58835D04@ptavv.es.net> cc: freebsd-mobile@freebsd.org Subject: Re: 5.2.1 can't load xl0 driver X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Sep 2004 14:33:32 -0000 > Date: Mon, 13 Sep 2004 18:42:43 +1000 > From: adslvmlg@tpg.com.au > Sender: owner-freebsd-mobile@freebsd.org > > Dear list, > My problem with 5.2.1-Release: > I use 4.10 for my server, and workstation, and recently I am planning to give > 5.2.1 a try, in order to getting familiar with the next release 5.3. > > After I installed 5.2.1 on my IBM Thinkpad A21P, the system didn't > recoganize my 3Com network card during installation. After I reboot > the system, the xl0 3Com NIC showed up, and I ifconfig it, and my > network is blocked, I can't ping any computer within my network. And > then I reboot the system again, the xl0 disappeared again. And the > system keep doing this to me. > > Just wondering is this a bug of 5.2.1 or it's the problem with my laptop? And > experienced this problem? A bug is a possibility, but I have not seen any other reports like this. It sounds like it might be a resource issue. Is this card a mini-PCI or a PCMCIA card? Are you using the GENERIC configuration (which is the kernel on the distribution)? Can you send the contents of dmesg? (This will probably require a COM port connection between the ThinkPad and another system.) With the information provided, it's really hard to even guess what might be happening. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 From owner-freebsd-mobile@FreeBSD.ORG Mon Sep 13 15:28:50 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80DC016A4CE for ; Mon, 13 Sep 2004 15:28:50 +0000 (GMT) Received: from zardoz.rd.imagescape.com (zardoz.rd.imagescape.com [66.100.151.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03AF843D4C for ; Mon, 13 Sep 2004 15:28:48 +0000 (GMT) (envelope-from puna@imagescape.com) Received: from [192.168.0.59] (nikko.rd.imagescape.com [192.168.0.59]) (authenticated bits=0)i8DFShFi015694; Mon, 13 Sep 2004 10:28:43 -0500 (CDT) (envelope-from puna@imagescape.com) Message-ID: <4145BD74.4070809@imagescape.com> Date: Mon, 13 Sep 2004 10:32:04 -0500 From: Puna Tannehill User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: cwidger References: <41444D28.2050008@comcast.net> In-Reply-To: <41444D28.2050008@comcast.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on zardoz.rd.imagescape.com cc: freebsd-mobile@freebsd.org Subject: Re: ACPI works! X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Sep 2004 15:28:50 -0000 I was also pleasantly surprised to how turning on ACPI resolved a lot of issues with my Compaq Presario 1692. Wireless is especially snappy. The only problems I'm having is with sound and touchpad. I'm able to load the snd_solo.ko module after reboot, but the kernel panics when I try and add snd_solo_load="YES" to /boot/loader.conf when booting. And although the synaptics touch pad was correctly identified, moused panics and locks everything if I don't to some hints massaging to make it identify as a generic ps/2 mouse. I had to turn on ACPI by hand as my bios is blacklisted, but I've had absolutely no troubles so far. The cpu and power management is noticably working, as I can sometimes eek out almost an hour more than I used to. I tried looking for a bios upgrade, thinking that would resolve the issue but I can't seem to find any for a Pheonix Bios 4.0 Rev 6. Puna cwidger wrote: > I just wanted to let everyone know ACPI works now with my Compaq > Presario 2100. I'm running a CVSUP'd version of 5.3-BETA3. With 5.2 when > I turned ACPI on my wireless card wasn't associating, but now it does! > _______________________________________________ > 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" From owner-freebsd-mobile@FreeBSD.ORG Mon Sep 13 15:38:40 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F201116A4D8 for ; Mon, 13 Sep 2004 15:38:39 +0000 (GMT) Received: from zardoz.rd.imagescape.com (zardoz.rd.imagescape.com [66.100.151.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CBE443D48 for ; Mon, 13 Sep 2004 15:38:39 +0000 (GMT) (envelope-from puna@imagescape.com) Received: from [192.168.0.59] (nikko.rd.imagescape.com [192.168.0.59]) (authenticated bits=0)i8DFcOlP015960; Mon, 13 Sep 2004 10:38:32 -0500 (CDT) (envelope-from puna@imagescape.com) Message-ID: <4145BFBA.3040702@imagescape.com> Date: Mon, 13 Sep 2004 10:41:46 -0500 From: Puna Tannehill User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Peter Losher References: <200409061017.46833.Peter_Losher@isc.org> <20040907163300.B84725@unsane.co.uk> <200409092229.19647.plosher@plosh.net> In-Reply-To: <200409092229.19647.plosher@plosh.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on zardoz.rd.imagescape.com cc: Vince Hoffman cc: freebsd-mobile@freebsd.org Subject: Re: psm broken in 5.3-BETA3 (Insprion 5100) X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Sep 2004 15:38:40 -0000 Peter Losher wrote: > On Tuesday 07 September 2004 08:37 am, Vince Hoffman wrote: > > >>>Here are the relevant device.hints I am using: >>> >>>-=- >>>hint.psm.0.at="atkbdc" >>>hint.psm.0.irq="12" >>>hint.psm.0.flags="0x200" >>>-=- >> >>your flags say to disable the mouse model probe. you could try >>removing that. However if i dont have that flag my system Locks hard >>when i run moused. (synaptic touchpad on a tosh portege A100) > > I have tried with and without the flags, to no avail, a psm device isn't > detected at boot time. This worked up to 5.3-BETA1, I suspect the new > Synaptic driver has something to do with it... please post "dmesg | grep ^psm" and "dmesg | grep 'irq 12'". Puna From owner-freebsd-mobile@FreeBSD.ORG Mon Sep 13 16:04:03 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFAC916A4CE for ; Mon, 13 Sep 2004 16:04:03 +0000 (GMT) Received: from zardoz.rd.imagescape.com (zardoz.rd.imagescape.com [66.100.151.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A16143D2D for ; Mon, 13 Sep 2004 16:04:03 +0000 (GMT) (envelope-from puna@imagescape.com) Received: from [192.168.0.59] (nikko.rd.imagescape.com [192.168.0.59]) (authenticated bits=0)i8DG41Vd016634 for ; Mon, 13 Sep 2004 11:04:01 -0500 (CDT) (envelope-from puna@imagescape.com) Message-ID: <4145C5BB.1060507@imagescape.com> Date: Mon, 13 Sep 2004 11:07:23 -0500 From: Puna Tannehill User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-mobile@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on zardoz.rd.imagescape.com Subject: 3dnow, mmx, k6-2 optimizing? X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Sep 2004 16:04:03 -0000 I've been looking for possible flags, optimizations, really anything that would help me setup my laptop to use mmx and 3dnow. I've updated /etc/make.conf to -march to the drum of a k6-2, but I'm not even sure if mmx and 3dnow are being taken into consideration for compiling and such, especially for Xorg. I did some googling and found people who used CFLAGS like -mmmx and -m3dnow, but when I run with those options, they fail and said to be invalid. they don't appear in 'man gcc' which should have been the first place i looked. I'm not finding anything in terms of compiling or configuring Xorg to use 3dnow or mmx, or even how to check to see if they are automatically detected and used. Any thoughts? Puna From owner-freebsd-mobile@FreeBSD.ORG Mon Sep 13 17:21:31 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20BFC16A4CE for ; Mon, 13 Sep 2004 17:21:31 +0000 (GMT) Received: from main.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4870743D41 for ; Mon, 13 Sep 2004 17:21:30 +0000 (GMT) (envelope-from freebsd-mobile@m.gmane.org) Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1C6Yw5-0004P4-00 for ; Sun, 12 Sep 2004 20:18:49 +0200 Received: from makrothumia.wingnet.net ([206.30.215.5]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 12 Sep 2004 20:18:49 +0200 Received: from jesse by makrothumia.wingnet.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 12 Sep 2004 20:18:49 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-mobile@freebsd.org From: Jesse Guardiani Date: Sun, 12 Sep 2004 14:18:39 -0400 Organization: WingNET Lines: 55 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: makrothumia.wingnet.net User-Agent: KNode/0.7.7 X-Mail-Copies-To: never Sender: news Subject: Re: artifacts on my IBM A30p display... X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: jesse@wingnet.net List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Sep 2004 17:21:31 -0000 Jesse Guardiani wrote: > Jesse Guardiani wrote: > >> Hello, >> >> A few days ago I started noticing that my LCD display >> was showing strange characters in text mode. Jiggling >> the display makes the characters change. Now it's >> happening in graphics mode too. >> >> Has this happened to anyone with a Thinkpad before? >> I assume it's a bad connection (and hopefully not a >> failing video chipset) because I can make the characters >> change by moving the screen. Does anyone know how to >> fix this? > > I tried reseating the connector on the motherboard, but > it didn't help. The artifacts are even showing up on my > CRT external monitor. > > The fan still comes on under load though, some I'm not > likely to suspect an overheating issue... > > Has anyone ever seen a bad LCD ribbon cable do this to > an LCD and CRT? Update: This machine has been usable since this happened in Win32 (dual boot) as long as I don't do graphics work or play DVDs or games or anything. Today, I booted back into FreeBSD to sync some files with my Gentoo machine (which I have been using as my primary desktop since this happened to my FreeBSD laptop) and on a whim I pushed VERY firmly on the space of plastic between the power button and my display. Miraculously, the screen garble ceased! About 5 minutes later it came back, so I repeated the proceedure and it's fine again. Gee, if my video chip was toast, I don't think pushing on the plastic would help. It looks like I've got a loose connector somewhere. Anyone have any ideas on what to check? I already tried reseating the LCD connector... and the garbled output appears on external CRTs too... -- Jesse Guardiani, Systems Administrator WingNET Internet Services, P.O. Box 2605 // Cleveland, TN 37320-2605 423-559-LINK (v) 423-559-5145 (f) http://www.wingnet.net From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 06:41:33 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7ADC516A4CE for ; Tue, 14 Sep 2004 06:41:33 +0000 (GMT) Received: from luftpost.plosh.net (luftpost.plosh.net [204.152.186.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62DCF43D4C for ; Tue, 14 Sep 2004 06:41:33 +0000 (GMT) (envelope-from plosher-keyword-freebsd.a36e57@plosh.net) Received: by luftpost.plosh.net (Postfix, from userid 1001) id C4F983260B; Mon, 13 Sep 2004 23:41:15 -0700 (PDT) Received: from dhcp-5.sql1.plosh.net (c-24-4-233-31.client.comcast.net [24.4.233.31]) by luftpost.plosh.net (tmda-ofmipd) with ESMTP; Mon, 13 Sep 2004 23:41:07 -0700 (PDT) Organization: Plosh Networking To: Puna Tannehill Date: Mon, 13 Sep 2004 23:41:14 -0700 User-Agent: KMail/1.7 References: <200409061017.46833.Peter_Losher@isc.org> <200409092229.19647.plosher@plosh.net> <4145BFBA.3040702@imagescape.com> In-Reply-To: <4145BFBA.3040702@imagescape.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1423088.P9MNJaEq0h"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200409132341.26279.plosher@plosh.net> X-Delivery-Agent: TMDA/1.0.3 (Seattle Slew) From: Peter Losher cc: Vince Hoffman cc: freebsd-mobile@freebsd.org Subject: Re: psm broken in 5.3-BETA3 (Insprion 5100) X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 06:41:33 -0000 --nextPart1423088.P9MNJaEq0h Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 13 September 2004 08:41 am, Puna Tannehill wrote: > please post "dmesg | grep ^psm" and "dmesg | grep 'irq 12'". I would, but there is no output: =2D=3D- dhcp-5% dmesg | grep ^psm dhcp-5% dmesg | grep 'irq 12' =2D=3D- Best Wishes - Peter =2D-=20 [ http://www.plosh.net/ ] - "Earth Halted: Please reboot to continue" --nextPart1423088.P9MNJaEq0h Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQBBRpKWuffIhmkXw7kRAlVoAJ0RJEGdwE2tw9VWXs8NGCdDOnOryACffVb4 lpxA2D5PfhmM4JRcmySPaGY= =YVgD -----END PGP SIGNATURE----- --nextPart1423088.P9MNJaEq0h-- From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 09:17:05 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD47516A4CE for ; Tue, 14 Sep 2004 09:17:05 +0000 (GMT) Received: from rip.psg.com (splat.psg.com [147.28.0.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8187043D41 for ; Tue, 14 Sep 2004 09:17:05 +0000 (GMT) (envelope-from randy@psg.com) Received: from localhost ([127.0.0.1] helo=roam.psg.com) by rip.psg.com with esmtp (Exim 4.41 (FreeBSD)) id 1C79Qu-000MSd-VN for freebsd-mobile@freebsd.org; Tue, 14 Sep 2004 09:17:05 +0000 Received: from localhost ([127.0.0.1] helo=roam.psg.com.psg.com) by roam.psg.com with esmtp (Exim 4.42 (FreeBSD)) id 1C79Qr-0001Tz-J9 for freebsd-mobile@freebsd.org; Mon, 13 Sep 2004 23:17:01 -1000 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16710.46860.769767.857543@roam.psg.com> Date: Mon, 13 Sep 2004 23:17:00 -1000 To: FreeBSD Laptoppers Subject: switching to usb kbd and mouse X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 09:17:05 -0000 so i boot my thinkpad t40p with normal keyboard and touchpad mouse. i decide to go to usb mouse and keyboard. it seems to work to move the mouse by just killing moused and restarting it as moused -p /dev/ums0 -t auto but how to i move the keyboard to usb? randy From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 09:25:17 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B048716A4CE for ; Tue, 14 Sep 2004 09:25:17 +0000 (GMT) Received: from mx.does.not-exist.de (mx.does.not-exist.de [193.155.207.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF19043D31 for ; Tue, 14 Sep 2004 09:25:16 +0000 (GMT) (envelope-from lists@niamodnikufesin.de) Received: from rw.does.not-exist.de ([10.42.23.2]) by mx.does.not-exist.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.42 (FreeBSD)) id 1C79Ym-0009VX-Na; Tue, 14 Sep 2004 11:25:13 +0200 Received: from hank by rw.does.not-exist.de with local (Exim 4.42 (FreeBSD)) id 1C79Yk-000DUO-Rr; Tue, 14 Sep 2004 11:25:10 +0200 Date: Tue, 14 Sep 2004 11:25:10 +0200 From: Hank Hampel To: FreeBSD Laptoppers Message-ID: <20040914092510.GC4012@warning.this.domain.does.not-exist.de> Mail-Followup-To: FreeBSD Laptoppers References: <16710.46860.769767.857543@roam.psg.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="iFRdW5/EC4oqxDHL" Content-Disposition: inline In-Reply-To: <16710.46860.769767.857543@roam.psg.com> User-Agent: Mutt/1.4.2.1i X-fcc-folder: freebsd-mobile-list Subject: Re: switching to usb kbd and mouse X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 09:25:17 -0000 --iFRdW5/EC4oqxDHL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi Randy! On (040913), Randy Bush wrote: > but how to i move the keyboard to usb? This is pretty easy too, just use the following command: /usr/sbin/kbdcontrol -k /dev/kbd1=20 To do this automagically you can configure the following in /etc/usbd.conf (in this example for my Cherry 4100-DE keyboard): device "Cherry 4100 USB Keyboard" devname "ukbd0" vendor 0x046a product 0x0001 attach "/usr/sbin/kbdcontrol -k /dev/kbd1 -l german.iso < /dev/ttyv0 > /= dev/null" detach "/usr/sbin/kbdcontrol -k /dev/kbd0 -l german.iso < /dev/ttyv0 > /= dev/null" For USB mice there should already be a configuration line in usbd.conf. You just have to make sure that the usbd is started at boot time, by inserting usbd_enable=3D"YES" to your rc.conf. Best regards, Hank --iFRdW5/EC4oqxDHL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFBRrj2XSKk5/a79toRAkBfAKDZ1RDuyuL+NkyZvOV0NVh46uLnBwCg4ID2 lyqmD2lS0JzsMilkUwoD+bY= =RCfw -----END PGP SIGNATURE----- --iFRdW5/EC4oqxDHL-- From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 09:32:20 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FD3D16A4CF for ; Tue, 14 Sep 2004 09:32:20 +0000 (GMT) Received: from vbook.fbsd.ru (asplinux.ru [195.133.213.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0139943D5A for ; Tue, 14 Sep 2004 09:32:20 +0000 (GMT) (envelope-from vova@vbook.fbsd.ru) Received: from vova by vbook.fbsd.ru with local (Exim 4.42 (FreeBSD)) id 1C79fc-000EX2-Qr; Tue, 14 Sep 2004 13:32:17 +0400 From: Vladimir Grebenschikov To: Randy Bush In-Reply-To: <16710.46860.769767.857543@roam.psg.com> References: <16710.46860.769767.857543@roam.psg.com> Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable Organization: SWsoft Date: Tue, 14 Sep 2004 13:32:15 +0400 Message-Id: <1095154335.986.36.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 1.5.94.1FreeBSD GNOME Team Port Sender: Vladimir Grebenschikov cc: freebsd-mobile Subject: Re: switching to usb kbd and mouse X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: vova@fbsd.ru List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 09:32:20 -0000 =F7 =D0=CE, 13/09/2004 =D7 23:17 -1000, Randy Bush =D0=C9=DB=C5=D4: > so i boot my thinkpad t40p with normal keyboard and touchpad mouse. > i decide to go to usb mouse and keyboard. it seems to work to move > the mouse by just killing moused and restarting it as >=20 > moused -p /dev/ums0 -t auto >=20 > but how to i move the keyboard to usb? You need something like this: /etc/usbd.conf: ... # Keyboard device "Keyboard" devname "ukbd[0-9]+" attach "/usr/sbin/kbdcontrol -k /dev/kbd1 < /dev/ttyv0" detach "/usr/sbin/kbdcontrol -k /dev/kbd0 < /dev/ttyv0" ... > randy --=20 Vladimir B. Grebenchikov vova@fbsd.ru From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 09:36:56 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3897E16A4CE for ; Tue, 14 Sep 2004 09:36:56 +0000 (GMT) Received: from mx.does.not-exist.de (mx.does.not-exist.de [193.155.207.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3CBA43D5C for ; Tue, 14 Sep 2004 09:36:55 +0000 (GMT) (envelope-from lists@niamodnikufesin.de) Received: from rw.does.not-exist.de ([10.42.23.2]) by mx.does.not-exist.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.42 (FreeBSD)) id 1C79k6-000AEm-P4 for freebsd-mobile@freebsd.org; Tue, 14 Sep 2004 11:36:55 +0200 Received: from hank by rw.does.not-exist.de with local (Exim 4.42 (FreeBSD)) id 1C79k2-000DyY-Pd for freebsd-mobile@freebsd.org; Tue, 14 Sep 2004 11:36:50 +0200 Date: Tue, 14 Sep 2004 11:36:50 +0200 From: Hank Hampel To: FreeBSD Laptoppers Message-ID: <20040914093650.GD4012@warning.this.domain.does.not-exist.de> Mail-Followup-To: FreeBSD Laptoppers References: <16710.46860.769767.857543@roam.psg.com> <20040914092510.GC4012@warning.this.domain.does.not-exist.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="hoZxPH4CaxYzWscb" Content-Disposition: inline In-Reply-To: <20040914092510.GC4012@warning.this.domain.does.not-exist.de> User-Agent: Mutt/1.4.2.1i X-fcc-folder: freebsd-mobile-list Subject: Re: switching to usb kbd and mouse X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 09:36:56 -0000 --hoZxPH4CaxYzWscb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi again! On (040914), Hank Hampel wrote: > > but how to i move the keyboard to usb? > This is pretty easy too, just use the following command: > /usr/sbin/kbdcontrol -k /dev/kbd1=20 My bad, copy&paste error, this should read something like /usr/sbin/kbdcontrol -k /dev/kbd1 < /dev/console (or /dev/ttyv0) Sincerely yours, Hank --hoZxPH4CaxYzWscb Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFBRruyXSKk5/a79toRAq8UAJ0SGkuKHIzagY8gBENJIbp9jC1pzQCdHv1k ePUSrfBeTMAutQ8Ldm6v368= =AZyW -----END PGP SIGNATURE----- --hoZxPH4CaxYzWscb-- From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 09:43:31 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65A1816A4CE for ; Tue, 14 Sep 2004 09:43:31 +0000 (GMT) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C4A943D31 for ; Tue, 14 Sep 2004 09:43:31 +0000 (GMT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 2782F6520E; Tue, 14 Sep 2004 10:43:30 +0100 (BST) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 96329-02-14; Tue, 14 Sep 2004 10:43:29 +0100 (BST) Received: from empiric.dek.spc.org (adsl-67-121-95-74.dsl.snfc21.pacbell.net [67.121.95.74]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id BBC6C651FC; Tue, 14 Sep 2004 10:43:28 +0100 (BST) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id 43E2B63B3; Tue, 14 Sep 2004 02:43:26 -0700 (PDT) Date: Tue, 14 Sep 2004 02:43:26 -0700 From: Bruce M Simpson To: adslvmlg@tpg.com.au Message-ID: <20040914094326.GC809@empiric.icir.org> Mail-Followup-To: adslvmlg@tpg.com.au, freebsd-mobile@freebsd.org References: <1095064963.41455d831ff01@postoffice.tpg.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1095064963.41455d831ff01@postoffice.tpg.com.au> cc: freebsd-mobile@freebsd.org Subject: Re: 5.2.1 can't load xl0 driver X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 09:43:31 -0000 On Mon, Sep 13, 2004 at 06:42:43PM +1000, adslvmlg@tpg.com.au wrote: > After I installed 5.2.1 on my IBM Thinkpad A21P, the system didn't recoganize my > 3Com network card during installation. After I reboot the system, the xl0 3Com > NIC showed up, and I ifconfig it, and my network is blocked, I can't ping any > computer within my network. And then I reboot the system again, the xl0 > disappeared again. And the system keep doing this to me. This is a well known issue with the 3Com NIC chips, where they won't come out of a PCI D3 power state properly and lose their PCI configuration. It can happen across reboots. It often affected me when using an IBM ThinkPad T22. See xl(4) for more details. BMS From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 09:45:18 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8754F16A4CE for ; Tue, 14 Sep 2004 09:45:18 +0000 (GMT) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4066543D2F for ; Tue, 14 Sep 2004 09:45:18 +0000 (GMT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 8212C65219; Tue, 14 Sep 2004 10:45:17 +0100 (BST) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 96329-02-19; Tue, 14 Sep 2004 10:45:17 +0100 (BST) Received: from empiric.dek.spc.org (adsl-67-121-95-74.dsl.snfc21.pacbell.net [67.121.95.74]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id E55FD6520E; Tue, 14 Sep 2004 10:45:16 +0100 (BST) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id A2B1D63B3; Tue, 14 Sep 2004 02:45:14 -0700 (PDT) Date: Tue, 14 Sep 2004 02:45:14 -0700 From: Bruce M Simpson To: Alex Povolotsky Message-ID: <20040914094514.GD809@empiric.icir.org> Mail-Followup-To: Alex Povolotsky , freebsd-mobile@freebsd.org References: <20040913182811.33080fad@99.titl.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040913182811.33080fad@99.titl.ru> cc: freebsd-mobile@freebsd.org Subject: Re: Compaq and dockstation X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 09:45:18 -0000 (list trimmed to -mobile) On Mon, Sep 13, 2004 at 06:28:11PM +0400, Alex Povolotsky wrote: > I was offered to buy used Compaq Armada with dockstation containint IDE controller and 3 PCI slots. Sounds great, but does anyone have any experience with such devices? Will it work with FreeBSD? Generally this kind of peripheral uses a hardware attachment which is more or less invisible to the OS. Devices such as Magma PCI enclosures are different and are essentially Cardbus-to-PCI bridges. BMS From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 10:04:18 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31BE316A4CE for ; Tue, 14 Sep 2004 10:04:18 +0000 (GMT) Received: from tower.berklix.org (bsd.bsn.com [194.221.32.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C1C043D49 for ; Tue, 14 Sep 2004 10:04:17 +0000 (GMT) (envelope-from jhs@flat.berklix.net) Received: from js.berklix.net (pD9E4D994.dip.t-dialin.net [217.228.217.148]) (authenticated bits=0) by tower.berklix.org (8.12.9p2/8.12.9) with ESMTP id i8EA49hB049036; Tue, 14 Sep 2004 12:04:15 +0200 (CEST) (envelope-from jhs@flat.berklix.net) Received: from laps.jhs.private (laps.jhs.private [192.168.91.56]) by js.berklix.net (8.12.11/8.12.11) with ESMTP id i8EA47R9003457; Tue, 14 Sep 2004 12:04:07 +0200 (CEST) (envelope-from jhs@flat.berklix.net) Received: from laps.jhs.private (localhost [127.0.0.1]) by laps.jhs.private (8.13.1/8.13.1) with ESMTP id i8EA45LE001092; Tue, 14 Sep 2004 12:04:05 +0200 (CEST) (envelope-from jhs@laps.jhs.private) Message-Id: <200409141004.i8EA45LE001092@laps.jhs.private> To: Randy Bush In-Reply-To: Message from Randy Bush <16710.46860.769767.857543@roam.psg.com> Date: Tue, 14 Sep 2004 12:04:05 +0200 From: "Julian H. Stacey" cc: FreeBSD Laptoppers Subject: Re: switching to usb kbd and mouse X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 10:04:18 -0000 Randy Bush wrote: > so i boot my thinkpad t40p with normal keyboard and touchpad mouse. > i decide to go to usb mouse and keyboard. it seems to work to move > the mouse by just killing moused and restarting it as > > moused -p /dev/ums0 -t auto > > but how to i move the keyboard to usb? > > randy Here's part of my (working) /etc/usbd.conf device "jhs Buddy (TM) PS/2 Keyboard-PS/2 Mouse - Cypress Semiconductor" vendor 0x04b4 product 0x8328 release 0x0001 attach "kbdcontrol -k /dev/kbd1 -l us.unix < /dev/console;/usr/X11R6/bin/xmodmap -display laps:0 /home/jhs/public_html/dots/.xmodmap/toshiba.s5100-603.init" detach "kbdcontrol -k /dev/kbd0 -l uk.iso < /dev/console;/usr/X11R6/bin/xmodmap -display laps:0 /home/jhs/public_html/dots/.xmodmap/english" # Adaptor also has a mouse socket, not used as I use a USB mouse. # External keyboard is American layout. # Internal keyboard is English with black keycaps, can't be relabelled. # usbd starts before xdm, so xmodmap fails after reboot, # but after boot, if adapter is unplugged & replugged it should be OK. # dmesg during attach reports: device names: ukbd0,ums1 # devname "ums[0-9]+" - Julian Stacey. Unix,C,Net & Sys. Eng. Consultant, Munich. http://berklix.com Mail in Ascii, Html dumped as Spam. Ihr Rauch = mein allergischer Kopfschmerz. From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 10:58:41 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 831D116A4CE for ; Tue, 14 Sep 2004 10:58:41 +0000 (GMT) Received: from tower.berklix.org (bsd.bsn.com [194.221.32.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id C24DE43D58 for ; Tue, 14 Sep 2004 10:58:40 +0000 (GMT) (envelope-from jhs@flat.berklix.net) Received: from js.berklix.net (pD9E4D994.dip.t-dialin.net [217.228.217.148]) (authenticated bits=0) by tower.berklix.org (8.12.9p2/8.12.9) with ESMTP id i8EAwbhB049211 for ; Tue, 14 Sep 2004 12:58:39 +0200 (CEST) (envelope-from jhs@flat.berklix.net) Received: from laps.jhs.private (laps.jhs.private [192.168.91.56]) by js.berklix.net (8.12.11/8.12.11) with ESMTP id i8EAwc20003548 for ; Tue, 14 Sep 2004 12:58:39 +0200 (CEST) (envelope-from jhs@flat.berklix.net) Received: from laps.jhs.private (localhost [127.0.0.1]) by laps.jhs.private (8.13.1/8.13.1) with ESMTP id i8EAwbaP001392 for ; Tue, 14 Sep 2004 12:58:38 +0200 (CEST) (envelope-from jhs@laps.jhs.private) Received: (from jhs@localhost) by laps.jhs.private (8.13.1/8.13.1/Submit) id i8EAwbSm001391; Tue, 14 Sep 2004 12:58:37 +0200 (CEST) (envelope-from jhs) Date: Tue, 14 Sep 2004 12:58:37 +0200 (CEST) Message-Id: <200409141058.i8EAwbSm001391@laps.jhs.private> To: freebsd-mobile@freebsd.org From: "Julian Stacey" Organization: http://berklix.com/~jhs/ Fcc: sent-mail User-agent: EXMH http://beedub.com/exmh/ on FreeBSD http://freebsd.org Subject: How to get usbd to umount fle systems without crashing ? X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 10:58:41 -0000 Can usbd automatically umount file systems ? How ? I can automatically mount usb ram sticks from usbd (config below) but I crash the system when I unplug, even if I use mount -r on attach. --------------- usbd.conf: device "Memory stick Celldisk Pro. IOCELL" vendor 0x08ec product 0x0834 release 0x0100 attach "sleep 2;mount -r /usb;sleep 2;mount /stick.bsd;mount /stick.dos" # detach "umount -f /stick.bsd; umount -f /stick.dos" # detach crashes on 5.2-CURRENT # umount crashes machine (with and without -f), even if the mount from attach # was a "mount -r", so for now must umount manually. --------------- fstab: /dev/da0 /usb msdos ro,noauto 0 0 # da0 above to enable a probe to initiate automatic creation of /dev/da0s1. /dev/da0s1 /sandisk msdos rw,noauto 0 0 /dev/da0s1 /stick.dos msdos rw,noauto 0 0 /dev/da0s2 /stick.bsd ufs rw,noauto 0 0 - Julian Stacey. Unix,C,Net & Sys. Eng. Consultant, Munich. http://berklix.com Mail Ascii; Html dumped as Spam. Ihr Rauch = mein allergischer Kopfschmerz. From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 11:22:43 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8E5216A4CE for ; Tue, 14 Sep 2004 11:22:43 +0000 (GMT) Received: from postman.ksi.ru (postman.ksi.ru [195.68.167.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB2A243D31 for ; Tue, 14 Sep 2004 11:22:42 +0000 (GMT) (envelope-from resident@b-o.ru) Received: by postman.ksi.ru (CommuniGate Pro PIPE 4.1.8) with PIPE id 1636869; Tue, 14 Sep 2004 15:23:07 +0400 Received: from [195.68.167.123] (HELO [172.16.20.54]) by postman.ksi.ru (CommuniGate Pro SMTP 4.1.8) with ESMTP id 1636868 for freebsd-mobile@freebsd.org; Tue, 14 Sep 2004 15:23:00 +0400 From: Riabtsev Andrew To: freebsd-mobile@freebsd.org Date: Tue, 14 Sep 2004 15:22:13 +0400 User-Agent: KMail/1.7 References: <16710.46860.769767.857543@roam.psg.com> <1095154335.986.36.camel@localhost> In-Reply-To: <1095154335.986.36.camel@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200409141522.14053.resident@b-o.ru> X-SpamTest-Version: SMTP-Filter Version 2.0.0 [0125], KAS/Release X-Spamtest-Info: Pass through X-Proceed_240578_by_spamtest: 1 Subject: Re: switching to usb kbd and mouse X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 11:22:43 -0000 On 14 September 2004 13:32, Vladimir Grebenschikov wrote: > =F7 =D0=CE, 13/09/2004 =D7 23:17 -1000, Randy Bush =D0=C9=DB=C5=D4: > > so i boot my thinkpad t40p with normal keyboard and touchpad mouse. > > i decide to go to usb mouse and keyboard. it seems to work to move > > the mouse by just killing moused and restarting it as > > > > moused -p /dev/ums0 -t auto > > > > but how to i move the keyboard to usb? > > You need something like this: > > /etc/usbd.conf: > ... > # Keyboard > device "Keyboard" > devname "ukbd[0-9]+" > attach "/usr/sbin/kbdcontrol -k /dev/kbd1 < /dev/ttyv0" > detach "/usr/sbin/kbdcontrol -k /dev/kbd0 < /dev/ttyv0" btw this solution not working for me: usbd runned in debug verbose mode sho= ws=20 me that on detach event usbd did not receive devname. So i had to add strin= gs=20 vendor and product in "Keyboard" section. Is it possible to fix it somehow = so=20 i can plug any usb keyboards? Or vendor and product is the same for any=20 keyboard? From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 12:16:47 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93D7716A4CE for ; Tue, 14 Sep 2004 12:16:47 +0000 (GMT) Received: from mx.does.not-exist.de (mx.does.not-exist.de [193.155.207.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9515343D46 for ; Tue, 14 Sep 2004 12:16:46 +0000 (GMT) (envelope-from lists@niamodnikufesin.de) Received: from rw.does.not-exist.de ([10.42.23.2]) by mx.does.not-exist.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.42 (FreeBSD)) id 1C7CEn-000Aie-D2 for freebsd-mobile@freebsd.org; Tue, 14 Sep 2004 14:16:45 +0200 Received: from hank by rw.does.not-exist.de with local (Exim 4.42 (FreeBSD)) id 1C7CEl-00010N-2y for freebsd-mobile@freebsd.org; Tue, 14 Sep 2004 14:16:43 +0200 Date: Tue, 14 Sep 2004 14:16:43 +0200 From: Hank Hampel To: freebsd-mobile@freebsd.org Message-ID: <20040914121643.GG4012@warning.this.domain.does.not-exist.de> Mail-Followup-To: freebsd-mobile@freebsd.org References: <200409141058.i8EAwbSm001391@laps.jhs.private> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0z5c7mBtSy1wdr4F" Content-Disposition: inline In-Reply-To: <200409141058.i8EAwbSm001391@laps.jhs.private> User-Agent: Mutt/1.4.2.1i X-fcc-folder: freebsd-mobile-list Subject: Re: How to get usbd to umount fle systems without crashing ? X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 12:16:47 -0000 --0z5c7mBtSy1wdr4F Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi Julian! On (040914), Julian Stacey wrote: > Can usbd automatically umount file systems ? How ? I think your best option is to use amd (auto mount daemon) for this. > I can automatically mount usb ram sticks from usbd (config below) > but I crash the system when I unplug, even if I use mount -r on attach. This seems to be a logical result because after you detached the usb stick there is no device to umount! Best regards, Hank --0z5c7mBtSy1wdr4F Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFBRuEqXSKk5/a79toRArCUAKDC6t5OpgXu4Tzja+pnstGTtQKYCgCePXSx vNJwyy4g/pew/812DXQFJ8U= =YiQ4 -----END PGP SIGNATURE----- --0z5c7mBtSy1wdr4F-- From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 14:42:16 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAFDA16A4CE for ; Tue, 14 Sep 2004 14:42:16 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75D9C43D1D for ; Tue, 14 Sep 2004 14:42:16 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i8EEh0G9003011; Tue, 14 Sep 2004 07:43:00 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i8EEh04H003010; Tue, 14 Sep 2004 07:43:00 -0700 Date: Tue, 14 Sep 2004 07:43:00 -0700 From: Brooks Davis To: Julian Stacey Message-ID: <20040914144300.GA18715@odin.ac.hmc.edu> References: <200409141058.i8EAwbSm001391@laps.jhs.private> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="82I3+IH0IqGh5yIs" Content-Disposition: inline In-Reply-To: <200409141058.i8EAwbSm001391@laps.jhs.private> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: freebsd-mobile@freebsd.org Subject: Re: How to get usbd to umount fle systems without crashing ? X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 14:42:16 -0000 --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 14, 2004 at 12:58:37PM +0200, Julian Stacey wrote: > Can usbd automatically umount file systems ? How ? > I can automatically mount usb ram sticks from usbd (config below) > but I crash the system when I unplug, even if I use mount -r on attach. In short, "don't do that". There is no mechanism at this point to safely cleanup after removing media when buffers exist. We hope to have one some day, but that problem is highly non-trivial. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --82I3+IH0IqGh5yIs Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBRwNzXY6L6fI4GtQRAt9QAKDhSbILE3bzaxEEJuLM7pnl2gtPcQCgx0Tz kn/T46AqLP+U71H8M5EchYc= =9oen -----END PGP SIGNATURE----- --82I3+IH0IqGh5yIs-- From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 14:58:04 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5EC316A4CE; Tue, 14 Sep 2004 14:58:04 +0000 (GMT) Received: from zardoz.rd.imagescape.com (zardoz.rd.imagescape.com [66.100.151.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7684343D48; Tue, 14 Sep 2004 14:58:04 +0000 (GMT) (envelope-from puna@imagescape.com) Received: from [192.168.0.59] (nikko.rd.imagescape.com [192.168.0.59]) (authenticated bits=0)i8EEw2U5024037; Tue, 14 Sep 2004 09:58:02 -0500 (CDT) (envelope-from puna@imagescape.com) Message-ID: <414707C5.3010803@imagescape.com> Date: Tue, 14 Sep 2004 10:01:25 -0500 From: Puna Tannehill User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org, freebsd-mobile@freebsd.org, freebsd-questions@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on zardoz.rd.imagescape.com Subject: kern.ipc.maxpipekva exceeded, error X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 14:58:05 -0000 On a freshly rebuild v5.3-BETA4... A failed compile of sysutils/fastest_cvsup led me to run 'make clean' before trying again. It took over 5 minutes to run make clean, and at the very end I got the following: # make clean kern.ipc.maxpipekva exceeded; see tuning(7) Pipe call failed: Too many open files in system Pipe call failed: Too many open files in system ===> Cleaning for libtool-1.5.8 ===> Cleaning for perl-5.8.5 ===> Cleaning for fastest_cvsup-0.2.8 There is nothing specifically in tuning about this particular knob, but from poking around I get the feeling that it's about memory management of the kernel IPC subsystem. Running 'sysctl kern.ipc.maxpipekva' shows: kern.ipc.maxpipekva=1257472 Hunting around on in the archives, I came up with people getting this error while doing very intensive compiles. Seems strange to me that I might get such an error on a 15min uptime, cold-booted machine and just doing a 'make clean'. And thoughts? Puna From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 15:40:23 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0135716A4CF for ; Tue, 14 Sep 2004 15:40:23 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D5C843D1D for ; Tue, 14 Sep 2004 15:40:15 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.13.1/8.13.1) with ESMTP id i8EFcJuE044518; Tue, 14 Sep 2004 09:38:20 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 14 Sep 2004 09:39:02 -0600 (MDT) Message-Id: <20040914.093902.122063483.imp@bsdimp.com> To: resident@b-o.ru From: "M. Warner Losh" In-Reply-To: <200409141522.14053.resident@b-o.ru> References: <16710.46860.769767.857543@roam.psg.com> <1095154335.986.36.camel@localhost> <200409141522.14053.resident@b-o.ru> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=koi8-r Content-Transfer-Encoding: quoted-printable cc: freebsd-mobile@freebsd.org Subject: Re: switching to usb kbd and mouse X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 15:40:23 -0000 In message: <200409141522.14053.resident@b-o.ru> Riabtsev Andrew writes: : On 14 September 2004 13:32, Vladimir Grebenschikov wrote: : > =F7 =D0=CE, 13/09/2004 =D7 23:17 -1000, Randy Bush =D0=C9=DB=C5=D4:= : > > so i boot my thinkpad t40p with normal keyboard and touchpad mous= e. : > > i decide to go to usb mouse and keyboard. it seems to work to mo= ve : > > the mouse by just killing moused and restarting it as : > > : > > moused -p /dev/ums0 -t auto : > > : > > but how to i move the keyboard to usb? : > : > You need something like this: : > : > /etc/usbd.conf: : > ... : > # Keyboard : > device "Keyboard" : > devname "ukbd[0-9]+" : > attach "/usr/sbin/kbdcontrol -k /dev/kbd1 < /dev/ttyv0" : > detach "/usr/sbin/kbdcontrol -k /dev/kbd0 < /dev/ttyv0" : btw this solution not working for me: usbd runned in debug verbose mo= de shows = : me that on detach event usbd did not receive devname. So i had to add= strings = : vendor and product in "Keyboard" section. Is it possible to fix it so= mehow so = : i can plug any usb keyboards? Or vendor and product is the same for a= ny = : keyboard? I've been using devd to get around such deficiencies. However, on detach, it seems that I don't need to run kbdcontrol at all. Warner From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 15:40:32 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40F9D16A4EC for ; Tue, 14 Sep 2004 15:40:29 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62E3143D58 for ; Tue, 14 Sep 2004 15:40:26 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.13.1/8.13.1) with ESMTP id i8EFbKEk044516; Tue, 14 Sep 2004 09:37:20 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 14 Sep 2004 09:38:02 -0600 (MDT) Message-Id: <20040914.093802.107963883.imp@bsdimp.com> To: bms@spc.org From: "M. Warner Losh" In-Reply-To: <20040914094326.GC809@empiric.icir.org> References: <1095064963.41455d831ff01@postoffice.tpg.com.au> <20040914094326.GC809@empiric.icir.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: adslvmlg@tpg.com.au cc: freebsd-mobile@freebsd.org Subject: Re: 5.2.1 can't load xl0 driver X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 15:40:33 -0000 In message: <20040914094326.GC809@empiric.icir.org> Bruce M Simpson writes: : On Mon, Sep 13, 2004 at 06:42:43PM +1000, adslvmlg@tpg.com.au wrote: : > After I installed 5.2.1 on my IBM Thinkpad A21P, the system didn't recoganize my : > 3Com network card during installation. After I reboot the system, the xl0 3Com : > NIC showed up, and I ifconfig it, and my network is blocked, I can't ping any : > computer within my network. And then I reboot the system again, the xl0 : > disappeared again. And the system keep doing this to me. : : This is a well known issue with the 3Com NIC chips, where they won't : come out of a PCI D3 power state properly and lose their PCI configuration. : It can happen across reboots. It often affected me when using an IBM : ThinkPad T22. See xl(4) for more details. But the current pci code saves and restores the standard pci configuration registers because D3 -> D0 state transitions are defined to reset the device, including things like the BARs in the pci standard. Is that not sufficient? Of course, this code went in AFTER 5.2 was branched. Warner From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 15:51:17 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6736F16A4CE for ; Tue, 14 Sep 2004 15:51:17 +0000 (GMT) Received: from corellia.vindaloo.com (corellia.vindaloo.com [209.87.64.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05EAE43D3F for ; Tue, 14 Sep 2004 15:51:17 +0000 (GMT) (envelope-from chris@vindaloo.com) Received: from dantooine.vindaloo.com (dantooine.vindaloo.com [192.168.133.3]) by corellia.vindaloo.com (Postfix) with ESMTP id 28D7B1280A for ; Tue, 14 Sep 2004 11:51:16 -0400 (EDT) Received: by dantooine.vindaloo.com (Postfix, from userid 1001) id CE1A425396; Tue, 14 Sep 2004 11:51:15 -0400 (EDT) Date: Tue, 14 Sep 2004 11:51:15 -0400 From: Christopher Sean Hilton To: freebsd-mobile@freebsd.org Message-ID: <20040914155115.GB13849@dantooine.vindaloo.com> References: <200409141058.i8EAwbSm001391@laps.jhs.private> <20040914121643.GG4012@warning.this.domain.does.not-exist.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040914121643.GG4012@warning.this.domain.does.not-exist.de> User-Agent: Mutt/1.4.2i Subject: Re: How to get usbd to umount fle systems without crashing ? X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 15:51:17 -0000 On Tue, Sep 14, 2004 at 02:16:43PM +0200, Hank Hampel wrote: > Hi Julian! > > On (040914), Julian Stacey wrote: > > Can usbd automatically umount file systems ? How ? > > I think your best option is to use amd (auto mount daemon) for this. > > > I can automatically mount usb ram sticks from usbd (config below) > > but I crash the system when I unplug, even if I use mount -r on attach. > > This seems to be a logical result because after you detached the usb > stick there is no device to umount! > I'm recomposing this for the list since I sent the original just to Hank and my mailer was misconfigured. You want to use the automounter for this. The reason it's dying is because FreeBSD is trying to write information (dirty buffers) back to the filesystem after the device has disappeared. The correct sequence for this would be umount the filesystem, then unplug the device. The automounter (amd) will mount the filesystem "on demand" and unmount after an inactivity timeout has expired. Here's the configuration that I'm using on my laptop. To start the automounter I use these settings in /etc/rc.conf ===== /etc/rc.conf ... portmap_enable="YES" # Run the portmapper service (YES/NO). nfs_client_enable="YES" # This host is an NFS client (or NO). amd_enable="YES" # Run amd service with $amd_flags (or NO). amd_flags="-c 30 -l syslog /amd /etc/amd.map" ... I'm not sure if the portmapper is relevent. The nfs client helps because the amd acts as an nfs server. It presents a directory: /amd and when you try to use an object within that directory it mounts the appropriate volumn according to it's configuration and generates a symlink. My automounter configuration is as follows: ===== /etc/amd.map # $FreeBSD: src/etc/amd.map,v 1.8 1999/09/13 17:09:07 peter Exp $ # /defaults type:=host;fs:=${autodir}/${rhost}/host;rhost:=${key} * opts:=rw,grpid,resvport,vers=2,proto=tcp,nosuid,nodev,unmount ## Mount the cdrom when someone visits /amd/cdrom cdrom type:=cdfs;fs:=${autodir}/${key};dev:=/dev/acd0c;addopts:=ro ## My keychain drive has msdos on slice 1 and FreeBSD on slice 2 partition a ## msdos0, usb0 are for the first mounted drive. msdos1, and usb1 are the ## second mounted drive. msdos0 type:=program;fs:=${autodir}/${key};\ mount:="/sbin/mount mount ${fs}";\ unmount:="/sbin/umount umount ${fs}" usb0 type:=program;fs:=${autodir}/${key};\ mount:="/sbin/mount mount ${fs}";\ unmount:="/sbin/umount umount ${fs}" msdos1 type:=program;fs:=${autodir}/${key};\ mount:="/sbin/mount mount ${fs}";\ unmount:="/sbin/umount umount ${fs}" usb1 type:=program;fs:=${autodir}/${key};\ mount:="/sbin/mount mount ${fs}";\ unmount:="/sbin/umount umount ${fs}" ## The smart media for my camera comes in via a pcmcia card. photos type:=program;fs:=${autodir}/${key};\ mount:="/sbin/mount mount ${fs}";\ unmount:="/sbin/umount umount ${fs}" ... Finally I added mount points for the devices in /etc/fstab as follows. This cleans up the configuration in /etc/amd.map significantly: ===== /etc/fstab # See the fstab(5) manual page for important information on automatic mounts # of network filesystems before modifying this file. # # Device Mountpoint FStype Options Dump Pass# ... ## A little help for the automounter /dev/da0s1 /.amd_mnt/msdos0 msdos rw,noauto 0 0 /dev/da0s2a /.amd_mnt/usb0 ufs rw,noatime,noauto 0 0 /dev/da1s1 /.amd_mnt/msdos1 msdos rw,noauto 0 0 /dev/da1s2a /.amd_mnt/usb1 ufs rw,noatime,noauto 0 0 /dev/ad8s1 /.amd_mnt/photos msdos ro,noauto 0 0 It works pretty simply. If I try to get a file from /amd/usb0 the amd will attempt to mount /dev/da0s2a and then generates a symlink from /.amd_mnt/usb0 to /amd/usb0. Finally it tries to satisfy the request for the file. If thirty seconds passes and I haven't used /amd/usb0 it gets unmounted automatically. So, if I want to use my keychain drive basically I plug it in and then do $ ls -l /amd/usb0 Hope that helps! -- chris Chris Hilton chilton-at-vindaloo-dot-com ------------------------------------------------------------------------ "All I was doing was trying to get home from work!" -- Rosa Parks From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 15:52:41 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B63D16A4CE for ; Tue, 14 Sep 2004 15:52:41 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF04C43D41 for ; Tue, 14 Sep 2004 15:52:40 +0000 (GMT) (envelope-from enemy.cow@gmail.com) Received: by mproxy.gmail.com with SMTP id 74so396853rnl for ; Tue, 14 Sep 2004 08:52:37 -0700 (PDT) Received: by 10.38.207.8 with SMTP id e8mr2117161rng; Tue, 14 Sep 2004 08:52:36 -0700 (PDT) Received: by 10.38.13.40 with HTTP; Tue, 14 Sep 2004 08:52:36 -0700 (PDT) Message-ID: <9cf39d6040914085256593790@mail.gmail.com> Date: Tue, 14 Sep 2004 10:52:36 -0500 From: Ben Nell To: freebsd-mobile@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Hardware reccomendations X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ben Nell List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 15:52:41 -0000 Hi All: I am running FreeBSD 5.2 on a Dell Inspiron 8600, and I am interested in swapping out the mini-pci wireless NIC. It's a Centrino machine, and I believe that the 802.11b card that is currently present is a Broadcom. Regardless, it doesn't appear to be supported. I've used the NDIS wrapper driver found in current release, but I'm not happy with it's performance and would prefer to just replace the card with a well-supported 802.11g card. What I'm looking for is a reccomendation of chipset/brand/model from anyone. I'm fairly new to wireless networking and would appreciate any insight or personal opinions anyone would care to share. Thanks, BN From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 16:07:06 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AB2216A4CE for ; Tue, 14 Sep 2004 16:07:06 +0000 (GMT) Received: from otter3.centtech.com (moat3.centtech.com [207.200.51.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6B3D43D41 for ; Tue, 14 Sep 2004 16:07:05 +0000 (GMT) (envelope-from anderson@centtech.com) Received: from [10.177.171.220] (neutrino.centtech.com [10.177.171.220]) by otter3.centtech.com (8.12.3/8.12.3) with ESMTP id i8EG74Cw019527; Tue, 14 Sep 2004 11:07:04 -0500 (CDT) (envelope-from anderson@centtech.com) Message-ID: <41471721.8050705@centtech.com> Date: Tue, 14 Sep 2004 11:06:57 -0500 From: Eric Anderson User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040912 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ben Nell References: <9cf39d6040914085256593790@mail.gmail.com> In-Reply-To: <9cf39d6040914085256593790@mail.gmail.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-mobile@freebsd.org Subject: Re: Hardware reccomendations X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 16:07:06 -0000 Ben Nell wrote: > Hi All: > > I am running FreeBSD 5.2 on a Dell Inspiron 8600, and I am interested > in swapping out the mini-pci wireless NIC. It's a Centrino machine, > and I believe that the 802.11b card that is currently present is a > Broadcom. Regardless, it doesn't appear to be supported. I've used > the NDIS wrapper driver found in current release, but I'm not happy > with it's performance and would prefer to just replace the card with a > well-supported 802.11g card. > > What I'm looking for is a reccomendation of chipset/brand/model from > anyone. I'm fairly new to wireless networking and would appreciate > any insight or personal opinions anyone would care to share. I bought a 'Netegriti' card (EM-500AG I think), and it works flawlessly. Eric -- ------------------------------------------------------------------ Eric Anderson Sr. Systems Administrator Centaur Technology Talk sense to a fool and he calls you foolish. ------------------------------------------------------------------ From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 16:20:49 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ABA216A4CE for ; Tue, 14 Sep 2004 16:20:49 +0000 (GMT) Received: from corellia.vindaloo.com (corellia.vindaloo.com [209.87.64.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA3E343D62 for ; Tue, 14 Sep 2004 16:20:48 +0000 (GMT) (envelope-from chris@vindaloo.com) Received: from dantooine.vindaloo.com (dantooine.vindaloo.com [192.168.133.3]) by corellia.vindaloo.com (Postfix) with ESMTP id 1C8C51280A; Tue, 14 Sep 2004 12:20:48 -0400 (EDT) Received: by dantooine.vindaloo.com (Postfix, from userid 1001) id CAD7125396; Tue, 14 Sep 2004 12:20:47 -0400 (EDT) Date: Tue, 14 Sep 2004 12:20:47 -0400 From: Christopher Sean Hilton To: Eric Anderson Message-ID: <20040914162047.GC13849@dantooine.vindaloo.com> References: <9cf39d6040914085256593790@mail.gmail.com> <41471721.8050705@centtech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41471721.8050705@centtech.com> User-Agent: Mutt/1.4.2i cc: Ben Nell cc: freebsd-mobile@freebsd.org Subject: Re: Hardware reccomendations X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 16:20:49 -0000 On Tue, Sep 14, 2004 at 11:06:57AM -0500, Eric Anderson wrote: > Ben Nell wrote: > >Hi All: > > > >I am running FreeBSD 5.2 on a Dell Inspiron 8600, and I am interested > >in swapping out the mini-pci wireless NIC. It's a Centrino machine, > >and I believe that the 802.11b card that is currently present is a > >Broadcom. Regardless, it doesn't appear to be supported. I've used > >the NDIS wrapper driver found in current release, but I'm not happy > >with it's performance and would prefer to just replace the card with a > >well-supported 802.11g card. > > > >What I'm looking for is a reccomendation of chipset/brand/model from > >anyone. I'm fairly new to wireless networking and would appreciate > >any insight or personal opinions anyone would care to share. > > I bought a 'Netegriti' card (EM-500AG I think), and it works flawlessly. > Is this supported by NDIS/Project Evil or a native driver? I for one would prefer a native driver. -- Chris Hilton chilton-at-vindaloo-dot-com ------------------------------------------------------------------------ "All I was doing was trying to get home from work!" -- Rosa Parks From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 16:24:00 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C27D416A4CE for ; Tue, 14 Sep 2004 16:24:00 +0000 (GMT) Received: from otter3.centtech.com (moat3.centtech.com [207.200.51.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 669C843D3F for ; Tue, 14 Sep 2004 16:24:00 +0000 (GMT) (envelope-from anderson@centtech.com) Received: from [10.177.171.220] (neutrino.centtech.com [10.177.171.220]) by otter3.centtech.com (8.12.3/8.12.3) with ESMTP id i8EGNwCw023219; Tue, 14 Sep 2004 11:23:58 -0500 (CDT) (envelope-from anderson@centtech.com) Message-ID: <41471B17.9050706@centtech.com> Date: Tue, 14 Sep 2004 11:23:51 -0500 From: Eric Anderson User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040912 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Christopher Sean Hilton References: <9cf39d6040914085256593790@mail.gmail.com> <41471721.8050705@centtech.com> <20040914162047.GC13849@dantooine.vindaloo.com> In-Reply-To: <20040914162047.GC13849@dantooine.vindaloo.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: Ben Nell cc: freebsd-mobile@freebsd.org Subject: Re: Hardware reccomendations X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 16:24:00 -0000 Christopher Sean Hilton wrote: > On Tue, Sep 14, 2004 at 11:06:57AM -0500, Eric Anderson wrote: > >>Ben Nell wrote: >> >>>Hi All: >>> >>>I am running FreeBSD 5.2 on a Dell Inspiron 8600, and I am interested >>>in swapping out the mini-pci wireless NIC. It's a Centrino machine, >>>and I believe that the 802.11b card that is currently present is a >>>Broadcom. Regardless, it doesn't appear to be supported. I've used >>>the NDIS wrapper driver found in current release, but I'm not happy >>>with it's performance and would prefer to just replace the card with a >>>well-supported 802.11g card. >>> >>>What I'm looking for is a reccomendation of chipset/brand/model from >>>anyone. I'm fairly new to wireless networking and would appreciate >>>any insight or personal opinions anyone would care to share. >> >>I bought a 'Netegriti' card (EM-500AG I think), and it works flawlessly. >> > > > Is this supported by NDIS/Project Evil or a native driver? I for one > would prefer a native driver. Native ath/ath_hal driver. Eric -- ------------------------------------------------------------------ Eric Anderson Sr. Systems Administrator Centaur Technology Talk sense to a fool and he calls you foolish. ------------------------------------------------------------------ From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 16:55:41 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE63016A4CF for ; Tue, 14 Sep 2004 16:55:41 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEF3F43D2D for ; Tue, 14 Sep 2004 16:55:41 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i8EGuPTu021214; Tue, 14 Sep 2004 09:56:25 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i8EGuPiY021213; Tue, 14 Sep 2004 09:56:25 -0700 Date: Tue, 14 Sep 2004 09:56:25 -0700 From: Brooks Davis To: "M. Warner Losh" Message-ID: <20040914165625.GA18338@odin.ac.hmc.edu> References: <16710.46860.769767.857543@roam.psg.com> <1095154335.986.36.camel@localhost> <200409141522.14053.resident@b-o.ru> <20040914.093902.122063483.imp@bsdimp.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="CE+1k2dSO48ffgeK" Content-Disposition: inline In-Reply-To: <20040914.093902.122063483.imp@bsdimp.com> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: resident@b-o.ru cc: freebsd-mobile@freebsd.org Subject: Re: switching to usb kbd and mouse X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 16:55:42 -0000 --CE+1k2dSO48ffgeK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 14, 2004 at 09:39:02AM -0600, M. Warner Losh wrote: > In message: <200409141522.14053.resident@b-o.ru> > Riabtsev Andrew writes: > : On 14 September 2004 13:32, Vladimir Grebenschikov wrote: > : > ? ??, 13/09/2004 ? 23:17 -1000, Randy Bush ?????: > : > > so i boot my thinkpad t40p with normal keyboard and touchpad mouse. > : > > i decide to go to usb mouse and keyboard. it seems to work to move > : > > the mouse by just killing moused and restarting it as > : > > > : > > moused -p /dev/ums0 -t auto > : > > > : > > but how to i move the keyboard to usb? > : > > : > You need something like this: > : > > : > /etc/usbd.conf: > : > ... > : > # Keyboard > : > device "Keyboard" > : > devname "ukbd[0-9]+" > : > attach "/usr/sbin/kbdcontrol -k /dev/kbd1 < /dev/ttyv0" > : > detach "/usr/sbin/kbdcontrol -k /dev/kbd0 < /dev/ttyv0" > : btw this solution not working for me: usbd runned in debug verbose mode= shows=20 > : me that on detach event usbd did not receive devname. So i had to add s= trings=20 > : vendor and product in "Keyboard" section. Is it possible to fix it some= how so=20 > : i can plug any usb keyboards? Or vendor and product is the same for any= =20 > : keyboard? >=20 > I've been using devd to get around such deficiencies. However, on > detach, it seems that I don't need to run kbdcontrol at all. Warner already know this but code to deal with this is in the default devd.conf in HEAD and RELENG_5. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --CE+1k2dSO48ffgeK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBRyK4XY6L6fI4GtQRAhyAAKCLjqF8t9Ep9aeHosnCA1n9CwUsmACbBnq9 +jNFMtwWPkfsGQmcc5t7Hjg= =9ZQJ -----END PGP SIGNATURE----- --CE+1k2dSO48ffgeK-- From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 16:56:34 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03AA016A4CE for ; Tue, 14 Sep 2004 16:56:34 +0000 (GMT) Received: from nargothrond.kdm.org (nargothrond.kdm.org [70.56.43.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5666B43D49 for ; Tue, 14 Sep 2004 16:56:33 +0000 (GMT) (envelope-from ken@nargothrond.kdm.org) Received: from nargothrond.kdm.org (localhost [127.0.0.1]) by nargothrond.kdm.org (8.12.11/8.12.11) with ESMTP id i8EGuVTg027560; Tue, 14 Sep 2004 10:56:31 -0600 (MDT) (envelope-from ken@nargothrond.kdm.org) Received: (from ken@localhost) by nargothrond.kdm.org (8.12.11/8.12.5/Submit) id i8EGuVV0027559; Tue, 14 Sep 2004 10:56:31 -0600 (MDT) (envelope-from ken) Date: Tue, 14 Sep 2004 10:56:31 -0600 From: "Kenneth D. Merry" To: Eric Anderson Message-ID: <20040914165631.GA27504@nargothrond.kdm.org> References: <9cf39d6040914085256593790@mail.gmail.com> <41471721.8050705@centtech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41471721.8050705@centtech.com> User-Agent: Mutt/1.4.2i X-Virus-Scanned: clamd / ClamAV version 0.75.1, clamav-milter version 0.75c on nargothrond.kdm.org X-Virus-Status: Clean cc: Ben Nell cc: freebsd-mobile@freebsd.org Subject: Re: Hardware reccomendations X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 16:56:34 -0000 On Tue, Sep 14, 2004 at 11:06:57 -0500, Eric Anderson wrote: > Ben Nell wrote: > >Hi All: > > > >I am running FreeBSD 5.2 on a Dell Inspiron 8600, and I am interested > >in swapping out the mini-pci wireless NIC. It's a Centrino machine, > >and I believe that the 802.11b card that is currently present is a > >Broadcom. Regardless, it doesn't appear to be supported. I've used > >the NDIS wrapper driver found in current release, but I'm not happy > >with it's performance and would prefer to just replace the card with a > >well-supported 802.11g card. > > > >What I'm looking for is a reccomendation of chipset/brand/model from > >anyone. I'm fairly new to wireless networking and would appreciate > >any insight or personal opinions anyone would care to share. > > I bought a 'Netegriti' card (EM-500AG I think), and it works flawlessly. I've got one of those as well, and it seems to work well. I've got an Inspiron 8500. It fit in the minipci slot, but was shorter than the original Broadcom b/g minipci card. I think the antenna connectors on it were also swapped, when compared to the Broadcom card. There was just enough slack in the antenna wires to connect it up. It works fine in A, B, and G modes with the ath driver. I think the only thing missing is working Turbo (802.11a) mode support in the ath driver, unless that has been fixed in the past few months. Ken -- Kenneth Merry ken@kdm.org From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 19:03:48 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BB0416A4CE for ; Tue, 14 Sep 2004 19:03:48 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CA5743D31 for ; Tue, 14 Sep 2004 19:03:46 +0000 (GMT) (envelope-from enemy.cow@gmail.com) Received: by mproxy.gmail.com with SMTP id 76so544618rnk for ; Tue, 14 Sep 2004 12:03:45 -0700 (PDT) Received: by 10.38.2.74 with SMTP id 74mr1211497rnb; Tue, 14 Sep 2004 12:03:40 -0700 (PDT) Received: by 10.38.13.40 with HTTP; Tue, 14 Sep 2004 12:03:40 -0700 (PDT) Message-ID: <9cf39d604091412032d7f1bb6@mail.gmail.com> Date: Tue, 14 Sep 2004 14:03:40 -0500 From: Ben Nell To: "Kenneth D. Merry" In-Reply-To: <20040914165631.GA27504@nargothrond.kdm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <9cf39d6040914085256593790@mail.gmail.com> <41471721.8050705@centtech.com> <20040914165631.GA27504@nargothrond.kdm.org> cc: Eric Anderson cc: freebsd-mobile@freebsd.org Subject: Re: Hardware reccomendations X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ben Nell List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 19:03:48 -0000 On Tue, 14 Sep 2004 10:56:31 -0600, Kenneth D. Merry wrote: > On Tue, Sep 14, 2004 at 11:06:57 -0500, Eric Anderson wrote: > > Ben Nell wrote: > > >Hi All: > > > > > >I am running FreeBSD 5.2 on a Dell Inspiron 8600, and I am interested > > >in swapping out the mini-pci wireless NIC. It's a Centrino machine, > > >and I believe that the 802.11b card that is currently present is a > > >Broadcom. Regardless, it doesn't appear to be supported. I've used > > >the NDIS wrapper driver found in current release, but I'm not happy > > >with it's performance and would prefer to just replace the card with a > > >well-supported 802.11g card. > > > > > >What I'm looking for is a reccomendation of chipset/brand/model from > > >anyone. I'm fairly new to wireless networking and would appreciate > > >any insight or personal opinions anyone would care to share. > > > > I bought a 'Netegriti' card (EM-500AG I think), and it works flawlessly. > > I've got one of those as well, and it seems to work well. > > I've got an Inspiron 8500. It fit in the minipci slot, but was shorter > than the original Broadcom b/g minipci card. I think the antenna connectors > on it were also swapped, when compared to the Broadcom card. There was just > enough slack in the antenna wires to connect it up. > > It works fine in A, B, and G modes with the ath driver. I think the only > thing missing is working Turbo (802.11a) mode support in the ath driver, > unless that has been fixed in the past few months. > > Ken > -- > Kenneth Merry > ken@kdm.org > Thanks for the advice! I think the only problem is going to be finding a reputable source to purchase the card from. Wireless has been my only issue with this laptop. With a replaced wireless card and using Daniel O'Connor's guide to configuring the 8600 (http://www.gsoft.com.au/~doconnor/I8600/) this is simply any unbeatable setup. From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 19:35:45 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D852016A4CE for ; Tue, 14 Sep 2004 19:35:45 +0000 (GMT) Received: from nargothrond.kdm.org (nargothrond.kdm.org [70.56.43.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54E1843D48 for ; Tue, 14 Sep 2004 19:35:45 +0000 (GMT) (envelope-from ken@nargothrond.kdm.org) Received: from nargothrond.kdm.org (localhost [127.0.0.1]) by nargothrond.kdm.org (8.12.11/8.12.11) with ESMTP id i8EJZhbU029021; Tue, 14 Sep 2004 13:35:43 -0600 (MDT) (envelope-from ken@nargothrond.kdm.org) Received: (from ken@localhost) by nargothrond.kdm.org (8.12.11/8.12.5/Submit) id i8EJZg2u029020; Tue, 14 Sep 2004 13:35:42 -0600 (MDT) (envelope-from ken) Date: Tue, 14 Sep 2004 13:35:42 -0600 From: "Kenneth D. Merry" To: Ben Nell Message-ID: <20040914193542.GA28935@nargothrond.kdm.org> References: <9cf39d6040914085256593790@mail.gmail.com> <41471721.8050705@centtech.com> <20040914165631.GA27504@nargothrond.kdm.org> <9cf39d604091412032d7f1bb6@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9cf39d604091412032d7f1bb6@mail.gmail.com> User-Agent: Mutt/1.4.2i X-Virus-Scanned: clamd / ClamAV version 0.75.1, clamav-milter version 0.75c on nargothrond.kdm.org X-Virus-Status: Clean cc: Eric Anderson cc: freebsd-mobile@freebsd.org Subject: Re: Hardware reccomendations X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 19:35:46 -0000 On Tue, Sep 14, 2004 at 14:03:40 -0500, Ben Nell wrote: > On Tue, 14 Sep 2004 10:56:31 -0600, Kenneth D. Merry wrote: > > On Tue, Sep 14, 2004 at 11:06:57 -0500, Eric Anderson wrote: > > > Ben Nell wrote: > > > >Hi All: > > > > > > > >I am running FreeBSD 5.2 on a Dell Inspiron 8600, and I am interested > > > >in swapping out the mini-pci wireless NIC. It's a Centrino machine, > > > >and I believe that the 802.11b card that is currently present is a > > > >Broadcom. Regardless, it doesn't appear to be supported. I've used > > > >the NDIS wrapper driver found in current release, but I'm not happy > > > >with it's performance and would prefer to just replace the card with a > > > >well-supported 802.11g card. > > > > > > > >What I'm looking for is a reccomendation of chipset/brand/model from > > > >anyone. I'm fairly new to wireless networking and would appreciate > > > >any insight or personal opinions anyone would care to share. > > > > > > I bought a 'Netegriti' card (EM-500AG I think), and it works flawlessly. > > > > I've got one of those as well, and it seems to work well. > > > > I've got an Inspiron 8500. It fit in the minipci slot, but was shorter > > than the original Broadcom b/g minipci card. I think the antenna connectors > > on it were also swapped, when compared to the Broadcom card. There was just > > enough slack in the antenna wires to connect it up. > > > > It works fine in A, B, and G modes with the ath driver. I think the only > > thing missing is working Turbo (802.11a) mode support in the ath driver, > > unless that has been fixed in the past few months. > > > > Ken > > -- > > Kenneth Merry > > ken@kdm.org > > > > Thanks for the advice! I think the only problem is going to be > finding a reputable source to purchase the card from. I got mine from Discount Technology. Make sure you get the card that does a, b and g. They have another, cheaper card that only does a and b. http://www.discountechnology.com/ They're selling them for $100. Keep in mind that this card doesn't do the super-G stuff (i.e. double speed G), but will do 108Mbps in 802.11a, since it has an Atheros chipset. (Although, as I noted above, the ath driver wasn't working in Turbo mode as of a few months ago.) > Wireless has been my only issue with this laptop. With a replaced > wireless card and using Daniel O'Connor's guide to configuring the > 8600 (http://www.gsoft.com.au/~doconnor/I8600/) this is simply any > unbeatable setup. My 8500 has been fine, but the 8600 definitely looks nice. (The Pentium M probably generates less heat than the Pentium 4M.) Ken -- Kenneth Merry ken@kdm.org From owner-freebsd-mobile@FreeBSD.ORG Tue Sep 14 20:27:40 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46ADF16A4CE for ; Tue, 14 Sep 2004 20:27:40 +0000 (GMT) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C6A343D39 for ; Tue, 14 Sep 2004 20:27:40 +0000 (GMT) (envelope-from sam@errno.com) Received: from [66.127.85.91] ([66.127.85.91]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id i8EKRbWi032700 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Tue, 14 Sep 2004 13:27:37 -0700 (PDT) (envelope-from sam@errno.com) From: Sam Leffler Organization: Errno Consulting To: freebsd-mobile@freebsd.org Date: Tue, 14 Sep 2004 13:31:52 -0700 User-Agent: KMail/1.7 References: <9cf39d6040914085256593790@mail.gmail.com> <9cf39d604091412032d7f1bb6@mail.gmail.com> <20040914193542.GA28935@nargothrond.kdm.org> In-Reply-To: <20040914193542.GA28935@nargothrond.kdm.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200409141331.53543.sam@errno.com> cc: "Kenneth D. Merry" cc: Eric Anderson cc: Ben Nell Subject: Re: Hardware reccomendations X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2004 20:27:40 -0000 On Tuesday 14 September 2004 12:35 pm, Kenneth D. Merry wrote: > I got mine from Discount Technology. Make sure you get the card that does > a, b and g. They have another, cheaper card that only does a and b. > > http://www.discountechnology.com/ > > They're selling them for $100. Keep in mind that this card doesn't do the > super-G stuff (i.e. double speed G), but will do 108Mbps in 802.11a, since > it has an Atheros chipset. (Although, as I noted above, the ath driver > wasn't working in Turbo mode as of a few months ago.) Street prices on dual-band Atheros cards have dropped through the floor. Look for something more in the $40-60 range. Sam From owner-freebsd-mobile@FreeBSD.ORG Wed Sep 15 07:01:16 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B31216A4CE for ; Wed, 15 Sep 2004 07:01:16 +0000 (GMT) Received: from vbook.fbsd.ru (asplinux.ru [195.133.213.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70C1543D54 for ; Wed, 15 Sep 2004 07:01:15 +0000 (GMT) (envelope-from vova@vbook.fbsd.ru) Received: from vova by vbook.fbsd.ru with local (Exim 4.42 (FreeBSD)) id 1C7INu-0000Mp-B3; Tue, 14 Sep 2004 22:50:34 +0400 From: Vladimir Grebenschikov To: Riabtsev Andrew In-Reply-To: <200409141522.14053.resident@b-o.ru> References: <16710.46860.769767.857543@roam.psg.com> <200409141522.14053.resident@b-o.ru> Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable Organization: SWsoft Date: Tue, 14 Sep 2004 22:50:33 +0400 Message-Id: <1095187833.1034.4.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.0.0FreeBSD GNOME Team Port Sender: Vladimir Grebenschikov cc: freebsd-mobile Subject: Re: switching to usb kbd and mouse X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: vova@fbsd.ru List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Sep 2004 07:01:16 -0000 =F7 =D7=D4, 14/09/2004 =D7 15:22 +0400, Riabtsev Andrew =D0=C9=DB=C5=D4: > On 14 September 2004 13:32, Vladimir Grebenschikov wrote: > > =F7 =D0=CE, 13/09/2004 =D7 23:17 -1000, Randy Bush =D0=C9=DB=C5=D4: > > > so i boot my thinkpad t40p with normal keyboard and touchpad mouse. > > > i decide to go to usb mouse and keyboard. it seems to work to move > > > the mouse by just killing moused and restarting it as > > > > > > moused -p /dev/ums0 -t auto > > > > > > but how to i move the keyboard to usb? > > > > You need something like this: > > > > /etc/usbd.conf: > > ... > > # Keyboard > > device "Keyboard" > > devname "ukbd[0-9]+" > > attach "/usr/sbin/kbdcontrol -k /dev/kbd1 < /dev/ttyv0" > > detach "/usr/sbin/kbdcontrol -k /dev/kbd0 < /dev/ttyv0" > btw this solution not working for me: usbd runned in debug verbose mode s= hows=20 > me that on detach event usbd did not receive devname. So i had to add str= ings=20 > vendor and product in "Keyboard" section. Is it possible to fix it someho= w so=20 > i can plug any usb keyboards? Or vendor and product is the same for any=20 > keyboard? What FreeBSD version are you use ? There was such bug some time ago (about no detach event for USB keyboard, see my PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=3D46488) In past I have workaround it with detecting detach event on USB hub, but anyway bug fixed in both RELENG_5 and CURRENT (not sure about RELENG_4) --=20 Vladimir B. Grebenchikov vova@fbsd.ru From owner-freebsd-mobile@FreeBSD.ORG Wed Sep 15 07:04:45 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6301716A4EE for ; Wed, 15 Sep 2004 07:04:44 +0000 (GMT) Received: from postman.ksi.ru (postman.ksi.ru [195.68.167.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAEE043D45 for ; Wed, 15 Sep 2004 07:04:43 +0000 (GMT) (envelope-from resident@b-o.ru) Received: by postman.ksi.ru (CommuniGate Pro PIPE 4.1.8) with PIPE id 1638813; Wed, 15 Sep 2004 11:05:07 +0400 Received: from [195.68.167.123] (HELO [172.16.20.54]) by postman.ksi.ru (CommuniGate Pro SMTP 4.1.8) with ESMTP id 1638808 for freebsd-mobile@freebsd.org; Wed, 15 Sep 2004 11:05:03 +0400 From: Riabtsev Andrew To: freebsd-mobile@freebsd.org Date: Wed, 15 Sep 2004 11:04:56 +0400 User-Agent: KMail/1.7 References: <16710.46860.769767.857543@roam.psg.com> <200409141522.14053.resident@b-o.ru> <1095187833.1034.4.camel@localhost> In-Reply-To: <1095187833.1034.4.camel@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200409151104.57150.resident@b-o.ru> X-SpamTest-Version: SMTP-Filter Version 2.0.0 [0125], KAS/Release X-Spamtest-Info: Pass through X-Proceed_240578_by_spamtest: 1 Subject: Re: switching to usb kbd and mouse X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Sep 2004 07:04:46 -0000 On 14 September 2004 22:50, Vladimir Grebenschikov wrote: > =F7 =D7=D4, 14/09/2004 =D7 15:22 +0400, Riabtsev Andrew =D0=C9=DB=C5=D4: > > On 14 September 2004 13:32, Vladimir Grebenschikov wrote: > > > =F7 =D0=CE, 13/09/2004 =D7 23:17 -1000, Randy Bush =D0=C9=DB=C5=D4: > > > > so i boot my thinkpad t40p with normal keyboard and touchpad mouse. > > > > i decide to go to usb mouse and keyboard. it seems to work to move > > > > the mouse by just killing moused and restarting it as > > > > > > > > moused -p /dev/ums0 -t auto > > > > > > > > but how to i move the keyboard to usb? > > > > > > You need something like this: > > > > > > /etc/usbd.conf: > > > ... > > > # Keyboard > > > device "Keyboard" > > > devname "ukbd[0-9]+" > > > attach "/usr/sbin/kbdcontrol -k /dev/kbd1 < /dev/ttyv0" > > > detach "/usr/sbin/kbdcontrol -k /dev/kbd0 < /dev/ttyv0" > > > > btw this solution not working for me: usbd runned in debug verbose mode > > shows me that on detach event usbd did not receive devname. So i had to > > add strings vendor and product in "Keyboard" section. Is it possible to > > fix it somehow so i can plug any usb keyboards? Or vendor and product is > > the same for any keyboard? > > What FreeBSD version are you use ? There was such bug some time ago > (about no detach event for USB keyboard, see my PR: > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D46488) > > In past I have workaround it with detecting detach event on USB hub, but > anyway bug fixed in both RELENG_5 and CURRENT (not sure about RELENG_4) I'm using FreeBSD5.3BETA3 and here is 'usbd -dv' output: usbd: device-attach event at 1095230771.569802000, product 0x3002, Alcor=20 Micro: vndr=3D0x0566 prdct=3D0x3002 rlse=3D0x0100 clss=3D0x0000 subclss=3D0x0000= prtcl=3D0x0000 device names: ukbd0 usbd: Found action 'Keybord' for product 0x3002, Alcor Micro at ukbd0 usbd: Executing '/usr/sbin/kbdcontrol -k /dev/${DEVNAME} < /dev/console' kbd1 ukbd0, type:generic (0) usbd: device-detach event at 1095230790.016759000, product 0x3002, Alcor=20 Micro: vndr=3D0x0566 prdct=3D0x3002 rlse=3D0x0100 clss=3D0x0000 subclss=3D0x0000= prtcl=3D0x0000 usbd: Found action 'USB device' for product 0x3002, Alcor Micro =2E... From owner-freebsd-mobile@FreeBSD.ORG Wed Sep 15 19:33:44 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2FD616A4CE for ; Wed, 15 Sep 2004 19:33:44 +0000 (GMT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id CFA9443D58 for ; Wed, 15 Sep 2004 19:33:43 +0000 (GMT) (envelope-from incmc@gmx.de) Received: (qmail 15577 invoked by uid 65534); 15 Sep 2004 19:33:42 -0000 Received: from p5089F532.dip.t-dialin.net (EHLO ms.homeip.net) (80.137.245.50) by mail.gmx.net (mp005) with SMTP; 15 Sep 2004 21:33:42 +0200 X-Authenticated: #15946415 Received: from [10.0.0.101] (helo=[10.0.0.101]) by ms.homeip.net with asmtp (TLSv1:AES256-SHA:256) id 1C7fFY-000Ojp-N8 for freebsd-mobile@freebsd.org; Wed, 15 Sep 2004 21:15:28 +0200 Message-ID: <414894AC.3060608@gmx.de> Date: Wed, 15 Sep 2004 21:14:52 +0200 From: Jochen Gensch User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040826) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-mobile@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re:[speedstep] testers wanted X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Sep 2004 19:33:44 -0000 > I just finished a speedstep driver for p3m and p4m but it's a little bit > ugly, and worst it would work only with ich chipsets. Even worst, I > don't have the hardware so I can't test it. I don't if I have the correct hardware, but I gave it a try since I have IBM Thinkpad A30p here with a lot of ICH things inside. But I need some more input on what data you need... Some things... System 5.3-BETA4 SU NB /:dmesg | grep ICH uhci0: port 0x1800-0x181f irq 9 at device 29.0 on pci0 usb0: on uhci0 uhci1: port 0x1820-0x183f irq 11 at device 29.1 on pci0 usb1: on uhci1 uhci2: port 0x1840-0x185f irq 9 at device 29.2 on pci0 usb2: on uhci2 fxp0: port 0x8000-0x803f mem 0xc0200000-0xc0200fff irq 10 at device 8.0 on pci2 atapci0: port 0x1860-0x186f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 31.1 on pci0 pcm0: port 0x18c0-0x18ff,0x1c00-0x1cff irq 5 at device 31.5 on pci0 ichist0: on motherboard SU NB /:sysctl -a | grep ich dev.ichist.0.%desc: Intel ICH3m LPC bridge dev.ichist.0.%driver: ichist dev.ichist.0.%parent: nexus0 dev.ichist.0.speedstep: 0 SU NB /:sysctl -a | grep acpi acpidev 73 3K 3K 73 32 acpisem 21 2K 2K 21 64 acpitask 0 0K 1K 290 16,32 acpica 3218 166K 166K 29902 16,32,64,128,256,512,1024,2048 acpibatt 1 1K 1K 1 16 debug.acpi.acpi_ca_version: 0x20040527 debug.acpi.semaphore_debug: 0 hw.acpi.supported_sleep_state: S3 S4 S5 hw.acpi.power_button_state: S5 hw.acpi.sleep_button_state: S3 hw.acpi.lid_switch_state: NONE hw.acpi.standby_state: S1 hw.acpi.suspend_state: S3 hw.acpi.sleep_delay: 1 hw.acpi.s4bios: 0 hw.acpi.verbose: 0 hw.acpi.reset_video: 1 hw.acpi.cpu.cx_supported: C1/0 C2/84 C3/120 hw.acpi.cpu.cx_lowest: C3 hw.acpi.cpu.cx_usage: 0.00% 100.00% 0.00% hw.acpi.thermal.min_runtime: 0 hw.acpi.thermal.polling_rate: 10 hw.acpi.thermal.tz0.temperature: 3272 hw.acpi.thermal.tz0.active: -1 hw.acpi.thermal.tz0.thermal_flags: 0 hw.acpi.thermal.tz0._PSV: 3647 hw.acpi.thermal.tz0._HOT: -1 hw.acpi.thermal.tz0._CRT: 3702 hw.acpi.thermal.tz0._ACx: -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 hw.acpi.battery.life: 100 hw.acpi.battery.time: -1 hw.acpi.battery.state: 0 hw.acpi.battery.units: 1 hw.acpi.battery.info_expire: 5 hw.acpi.acline: 1 machdep.acpi_timer_freq: 3579545 machdep.acpi_root: 1012816 dev.acpi.0.%desc: IBM TP-1E dev.acpi.0.%driver: acpi dev.acpi.0.%parent: nexus0 dev.acpi_ec.0.%desc: Embedded Controller: GPE 0x1c, ECDT dev.acpi_ec.0.%driver: acpi_ec dev.acpi_ec.0.%location: handle=\_SB_.PCI0.LPC_.EC__ dev.acpi_ec.0.%pnpinfo: _HID=PNP0C09 _UID=0 dev.acpi_ec.0.%parent: acpi0 dev.acpi_sysresource.0.%desc: System Resource dev.acpi_sysresource.0.%driver: acpi_sysresource dev.acpi_sysresource.0.%location: handle=\_SB_.MEM_ dev.acpi_sysresource.0.%pnpinfo: _HID=PNP0C01 _UID=0 dev.acpi_sysresource.0.%parent: acpi0 dev.acpi_sysresource.1.%desc: System Resource dev.acpi_sysresource.1.%driver: acpi_sysresource dev.acpi_sysresource.1.%location: handle=\_SB_.PCI0.LPC_.SIO_ dev.acpi_sysresource.1.%pnpinfo: _HID=PNP0C02 _UID=0 dev.acpi_sysresource.1.%parent: acpi0 dev.acpi_timer.0.%desc: 24-bit timer at 3.579545MHz dev.acpi_timer.0.%driver: acpi_timer dev.acpi_timer.0.%location: unknown dev.acpi_timer.0.%pnpinfo: unknown dev.acpi_timer.0.%parent: acpi0 dev.cpu.0.%parent: acpi0 dev.acpi_tz.0.%desc: Thermal Zone dev.acpi_tz.0.%driver: acpi_tz dev.acpi_tz.0.%location: handle=\_TZ_.THM0 dev.acpi_tz.0.%pnpinfo: _HID=none _UID=0 dev.acpi_tz.0.%parent: acpi0 dev.acpi_lid.0.%desc: Control Method Lid Switch dev.acpi_lid.0.%driver: acpi_lid dev.acpi_lid.0.%location: handle=\_SB_.LID_ dev.acpi_lid.0.%pnpinfo: _HID=PNP0C0D _UID=0 dev.acpi_lid.0.%parent: acpi0 dev.acpi_lid.0.wake: 1 dev.acpi_button.0.%desc: Sleep Button dev.acpi_button.0.%driver: acpi_button dev.acpi_button.0.%location: handle=\_SB_.SLPB dev.acpi_button.0.%pnpinfo: _HID=PNP0C0E _UID=0 dev.acpi_button.0.%parent: acpi0 dev.acpi_button.0.wake: 1 dev.pcib.0.%parent: acpi0 dev.atpic.0.%parent: acpi0 dev.attimer.0.%parent: acpi0 dev.attimer.1.%parent: acpi0 dev.atdma.0.%parent: acpi0 dev.npxisa.0.%parent: acpi0 dev.atkbdc.0.%parent: acpi0 dev.psmcpnp.0.%parent: acpi0 dev.fdc.0.%parent: acpi0 dev.sio.0.%parent: acpi0 dev.sio.1.%parent: acpi0 dev.ppc.0.%parent: acpi0 dev.acpi_cmbat.0.%desc: Control Method Battery dev.acpi_cmbat.0.%driver: acpi_cmbat dev.acpi_cmbat.0.%location: handle=\_SB_.PCI0.LPC_.EC__.BAT0 dev.acpi_cmbat.0.%pnpinfo: _HID=PNP0C0A _UID=0 dev.acpi_cmbat.0.%parent: acpi0 dev.acpi_acad.0.%desc: AC Adapter dev.acpi_acad.0.%driver: acpi_acad dev.acpi_acad.0.%location: handle=\_SB_.PCI0.LPC_.EC__.AC__ dev.acpi_acad.0.%pnpinfo: _HID=ACPI0003 _UID=0 dev.acpi_acad.0.%parent: acpi0 Cheers, Jochen From owner-freebsd-mobile@FreeBSD.ORG Thu Sep 16 15:39:07 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88C9916A4CE for ; Thu, 16 Sep 2004 15:39:07 +0000 (GMT) Received: from sponge.dyndns.org (host-180-58-111-24.midco.net [24.111.58.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE18D43D58 for ; Thu, 16 Sep 2004 15:39:06 +0000 (GMT) (envelope-from kjelderg@sponge.dyndns.org) Received: from dhcp223-81.aero.und.nodak.edu (root@dhcp223-81.aero.und.nodak.edu [134.129.223.81]) (authenticated bits=0) by sponge.dyndns.org (8.12.9p1/8.12.9) with ESMTP id i8GFcwYD098004 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Thu, 16 Sep 2004 10:39:00 -0500 (CDT) (envelope-from kjelderg@sponge.dyndns.org) From: kjelderg@sponge.dyndns.org To: freebsd-mobile@freebsd.org Date: Thu, 16 Sep 2004 10:39:02 -0500 User-Agent: KMail/1.7 References: <20040916120103.3554416A4D1@hub.freebsd.org> In-Reply-To: <20040916120103.3554416A4D1@hub.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200409161039.02581.kjelderg@sponge.dyndns.org> Subject: Re:[speedstep] testers wanted (Jochen Gensch) X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Sep 2004 15:39:07 -0000 > > I just finished a speedstep driver for p3m and p4m but it's a little bit > > ugly, and worst it would work only with ich chipsets. Even worst, I > > don't have the hardware so I can't test it. > > I don't if I have the correct hardware, but I gave it a try since I have > IBM Thinkpad A30p here with a lot of ICH things inside. But I need some > more input on what data you need... > > Some things... > > System 5.3-BETA4 > > SU NB /:dmesg | grep ICH > uhci0: port > 0x1800-0x181f irq 9 at device 29.0 on pci0 > usb0: on uhci0 > uhci1: port > 0x1820-0x183f irq 11 at device 29.1 on pci0 > usb1: on uhci1 > uhci2: port > 0x1840-0x185f irq 9 at device 29.2 on pci0 > usb2: on uhci2 > fxp0: port 0x8000-0x803f mem > 0xc0200000-0xc0200fff irq 10 at device 8.0 on pci2 > atapci0: port > 0x1860-0x186f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 31.1 on pci0 > pcm0: port 0x18c0-0x18ff,0x1c00-0x1cff irq 5 at > device 31.5 on pci0 > ichist0: on motherboard > > > SU NB /:sysctl -a | grep ich > dev.ichist.0.%desc: Intel ICH3m LPC bridge > dev.ichist.0.%driver: ichist > dev.ichist.0.%parent: nexus0 > dev.ichist.0.speedstep: 0 > > > SU NB /:sysctl -a | grep acpi > acpidev 73 3K 3K 73 32 > acpisem 21 2K 2K 21 64 > acpitask 0 0K 1K 290 16,32 > acpica 3218 166K 166K 29902 16,32,64,128,256,512,1024,2048 > acpibatt 1 1K 1K 1 16 > debug.acpi.acpi_ca_version: 0x20040527 > debug.acpi.semaphore_debug: 0 > hw.acpi.supported_sleep_state: S3 S4 S5 > hw.acpi.power_button_state: S5 > hw.acpi.sleep_button_state: S3 > hw.acpi.lid_switch_state: NONE > hw.acpi.standby_state: S1 > hw.acpi.suspend_state: S3 > hw.acpi.sleep_delay: 1 > hw.acpi.s4bios: 0 > hw.acpi.verbose: 0 > hw.acpi.reset_video: 1 > hw.acpi.cpu.cx_supported: C1/0 C2/84 C3/120 > hw.acpi.cpu.cx_lowest: C3 > hw.acpi.cpu.cx_usage: 0.00% 100.00% 0.00% > hw.acpi.thermal.min_runtime: 0 > hw.acpi.thermal.polling_rate: 10 > hw.acpi.thermal.tz0.temperature: 3272 > hw.acpi.thermal.tz0.active: -1 > hw.acpi.thermal.tz0.thermal_flags: 0 > hw.acpi.thermal.tz0._PSV: 3647 > hw.acpi.thermal.tz0._HOT: -1 > hw.acpi.thermal.tz0._CRT: 3702 > hw.acpi.thermal.tz0._ACx: -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 > hw.acpi.battery.life: 100 > hw.acpi.battery.time: -1 > hw.acpi.battery.state: 0 > hw.acpi.battery.units: 1 > hw.acpi.battery.info_expire: 5 > hw.acpi.acline: 1 > machdep.acpi_timer_freq: 3579545 > machdep.acpi_root: 1012816 > dev.acpi.0.%desc: IBM TP-1E > dev.acpi.0.%driver: acpi > dev.acpi.0.%parent: nexus0 > dev.acpi_ec.0.%desc: Embedded Controller: GPE 0x1c, ECDT > dev.acpi_ec.0.%driver: acpi_ec > dev.acpi_ec.0.%location: handle=\_SB_.PCI0.LPC_.EC__ > dev.acpi_ec.0.%pnpinfo: _HID=PNP0C09 _UID=0 > dev.acpi_ec.0.%parent: acpi0 > dev.acpi_sysresource.0.%desc: System Resource > dev.acpi_sysresource.0.%driver: acpi_sysresource > dev.acpi_sysresource.0.%location: handle=\_SB_.MEM_ > dev.acpi_sysresource.0.%pnpinfo: _HID=PNP0C01 _UID=0 > dev.acpi_sysresource.0.%parent: acpi0 > dev.acpi_sysresource.1.%desc: System Resource > dev.acpi_sysresource.1.%driver: acpi_sysresource > dev.acpi_sysresource.1.%location: handle=\_SB_.PCI0.LPC_.SIO_ > dev.acpi_sysresource.1.%pnpinfo: _HID=PNP0C02 _UID=0 > dev.acpi_sysresource.1.%parent: acpi0 > dev.acpi_timer.0.%desc: 24-bit timer at 3.579545MHz > dev.acpi_timer.0.%driver: acpi_timer > dev.acpi_timer.0.%location: unknown > dev.acpi_timer.0.%pnpinfo: unknown > dev.acpi_timer.0.%parent: acpi0 > dev.cpu.0.%parent: acpi0 > dev.acpi_tz.0.%desc: Thermal Zone > dev.acpi_tz.0.%driver: acpi_tz > dev.acpi_tz.0.%location: handle=\_TZ_.THM0 > dev.acpi_tz.0.%pnpinfo: _HID=none _UID=0 > dev.acpi_tz.0.%parent: acpi0 > dev.acpi_lid.0.%desc: Control Method Lid Switch > dev.acpi_lid.0.%driver: acpi_lid > dev.acpi_lid.0.%location: handle=\_SB_.LID_ > dev.acpi_lid.0.%pnpinfo: _HID=PNP0C0D _UID=0 > dev.acpi_lid.0.%parent: acpi0 > dev.acpi_lid.0.wake: 1 > dev.acpi_button.0.%desc: Sleep Button > dev.acpi_button.0.%driver: acpi_button > dev.acpi_button.0.%location: handle=\_SB_.SLPB > dev.acpi_button.0.%pnpinfo: _HID=PNP0C0E _UID=0 > dev.acpi_button.0.%parent: acpi0 > dev.acpi_button.0.wake: 1 > dev.pcib.0.%parent: acpi0 > dev.atpic.0.%parent: acpi0 > dev.attimer.0.%parent: acpi0 > dev.attimer.1.%parent: acpi0 > dev.atdma.0.%parent: acpi0 > dev.npxisa.0.%parent: acpi0 > dev.atkbdc.0.%parent: acpi0 > dev.psmcpnp.0.%parent: acpi0 > dev.fdc.0.%parent: acpi0 > dev.sio.0.%parent: acpi0 > dev.sio.1.%parent: acpi0 > dev.ppc.0.%parent: acpi0 > dev.acpi_cmbat.0.%desc: Control Method Battery > dev.acpi_cmbat.0.%driver: acpi_cmbat > dev.acpi_cmbat.0.%location: handle=\_SB_.PCI0.LPC_.EC__.BAT0 > dev.acpi_cmbat.0.%pnpinfo: _HID=PNP0C0A _UID=0 > dev.acpi_cmbat.0.%parent: acpi0 > dev.acpi_acad.0.%desc: AC Adapter > dev.acpi_acad.0.%driver: acpi_acad > dev.acpi_acad.0.%location: handle=\_SB_.PCI0.LPC_.EC__.AC__ > dev.acpi_acad.0.%pnpinfo: _HID=ACPI0003 _UID=0 > dev.acpi_acad.0.%parent: acpi0 > > Cheers, Jochen I'd also be happy to test if you send exactly what you want tested. Thinkpad R40 with p4m here. From owner-freebsd-mobile@FreeBSD.ORG Thu Sep 16 16:27:40 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6106E16A4CE for ; Thu, 16 Sep 2004 16:27:40 +0000 (GMT) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 240E643D5D for ; Thu, 16 Sep 2004 16:27:40 +0000 (GMT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 4EFD2651EE; Thu, 16 Sep 2004 17:27:39 +0100 (BST) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 40780-03-16; Thu, 16 Sep 2004 17:27:38 +0100 (BST) Received: from empiric.dek.spc.org (adsl-64-171-184-46.dsl.snfc21.pacbell.net [64.171.184.46]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 69115651EB; Thu, 16 Sep 2004 17:27:38 +0100 (BST) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id 1AB6361C6; Thu, 16 Sep 2004 09:27:36 -0700 (PDT) Date: Thu, 16 Sep 2004 09:27:36 -0700 From: Bruce M Simpson To: Bruno Ducrot Message-ID: <20040916162736.GL1047@empiric.icir.org> Mail-Followup-To: Bruno Ducrot , freebsd-mobile@freebsd.org References: <20040902164219.GB29560@poupinou.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040902164219.GB29560@poupinou.org> cc: freebsd-mobile@freebsd.org Subject: Re: [speedstep] testers wanted X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Sep 2004 16:27:40 -0000 On Thu, Sep 02, 2004 at 06:42:19PM +0200, Bruno Ducrot wrote: > I just finished a speedstep driver for p3m and p4m but it's a little bit > ugly, and worst it would work only with ich chipsets. Even worst, I > don't have the hardware so I can't test it. I'm confused here; it looks as though these functions are on the LPC bridge. Does this driver co-exist with the ISA bus nexus driver OK? I haven't tested this yet. It could potentially clash with other drivers which need to acquire resources on the same PCI function such as the Intel TCPA stuff (from NetBSD), and of course the isab driver. BMS From owner-freebsd-mobile@FreeBSD.ORG Fri Sep 17 01:38:47 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3842C16A4CF for ; Fri, 17 Sep 2004 01:38:47 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9AA543D49 for ; Fri, 17 Sep 2004 01:38:46 +0000 (GMT) (envelope-from internetvirus@gmail.com) Received: by mproxy.gmail.com with SMTP id 74so158228rnk for ; Thu, 16 Sep 2004 18:38:41 -0700 (PDT) Received: by 10.38.81.41 with SMTP id e41mr316189rnb; Thu, 16 Sep 2004 18:38:41 -0700 (PDT) Received: by 10.38.102.75 with HTTP; Thu, 16 Sep 2004 18:38:41 -0700 (PDT) Message-ID: Date: Thu, 16 Sep 2004 19:38:41 -0600 From: Adam Beachell To: freebsd-mobile@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Trouble installing 4.10 on laptop - "cannot find kernel" X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Adam Beachell List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Sep 2004 01:38:47 -0000 I am attempting to install 4.10 on my Acer laptop. After booting from the install CD I get a message stating "cannot find kernel". I get this error whether I use the miniinstall or the full 2 disc CD install. Browsing the CDs I can see that the kernel does exist on the disk. Does anyone have a suggestion where I should start to solve this? Thanks! From owner-freebsd-mobile@FreeBSD.ORG Fri Sep 17 02:18:41 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74F7D16A4CE for ; Fri, 17 Sep 2004 02:18:41 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2805943D48 for ; Fri, 17 Sep 2004 02:18:41 +0000 (GMT) (envelope-from internetvirus@gmail.com) Received: by mproxy.gmail.com with SMTP id 74so162440rnk for ; Thu, 16 Sep 2004 19:18:36 -0700 (PDT) Received: by 10.38.11.73 with SMTP id 73mr947218rnk; Thu, 16 Sep 2004 19:18:36 -0700 (PDT) Received: by 10.38.102.75 with HTTP; Thu, 16 Sep 2004 19:18:36 -0700 (PDT) Message-ID: Date: Thu, 16 Sep 2004 20:18:36 -0600 From: Adam Beachell To: freebsd-mobile@freebsd.org In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: Subject: Fwd: Trouble installing 4.10 on laptop - "cannot find kernel" X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Adam Beachell List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Sep 2004 02:18:41 -0000 Sorry, it may help to have sent my system information as well. Here it is: Hard drive 30Gig (paritioned into 18.1G and 9.75G) IC25N030ATMR04-0, location 0 Cd rom MATSHITA UJDA750 DVD/CDRW, location 0 IDE ATA/ATAPI1100-110F Intel 82801DBM Ultra ATA storage controller - 24CA, PCI bus0, device 31, function 1 Primary IDE 14 01F0-01F7 Ultra DMA Mode 5 03F6 Secondary IDE 15 0170-0177 Ultra DMA Mode 2 0376 Network card - - Realtek RTL8139/810x Family Fast Ethernet NIC Modem 10 E300-E3FF Agere Systems AC'97 Modem, PCI bus 0, device 31, function 6 E400-E47F Processor - - Intel Celeron 1300MHz ---------- Forwarded message ---------- From: Adam Beachell Date: Thu, 16 Sep 2004 19:38:41 -0600 Subject: Trouble installing 4.10 on laptop - "cannot find kernel" To: freebsd-mobile@freebsd.org I am attempting to install 4.10 on my Acer laptop. After booting from the install CD I get a message stating "cannot find kernel". I get this error whether I use the miniinstall or the full 2 disc CD install. Browsing the CDs I can see that the kernel does exist on the disk. Does anyone have a suggestion where I should start to solve this? Thanks! From owner-freebsd-mobile@FreeBSD.ORG Fri Sep 17 02:23:26 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A675716A4CE for ; Fri, 17 Sep 2004 02:23:26 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58FF843D41 for ; Fri, 17 Sep 2004 02:23:26 +0000 (GMT) (envelope-from internetvirus@gmail.com) Received: by mproxy.gmail.com with SMTP id 74so162950rnk for ; Thu, 16 Sep 2004 19:23:25 -0700 (PDT) Received: by 10.38.125.33 with SMTP id x33mr1809709rnc; Thu, 16 Sep 2004 19:23:25 -0700 (PDT) Received: by 10.38.102.75 with HTTP; Thu, 16 Sep 2004 19:23:25 -0700 (PDT) Message-ID: Date: Thu, 16 Sep 2004 20:23:25 -0600 From: Adam Beachell To: freebsd-mobile@freebsd.org In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: Subject: Fwd: Trouble installing 4.10 on laptop - "cannot find kernel" X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Adam Beachell List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Sep 2004 02:23:26 -0000 Sorry, it may help to have sent my system information as well. Here it is: Hard drive 30Gig (paritioned into 18.1G and 9.75G) IC25N030ATMR04-0, location 0 Cd rom MATSHITA UJDA750 DVD/CDRW, location 0 IDE ATA/ATAPI I/O ports 1100-110F, Intel 82801DBM Ultra ATA storage controller - 24CA, PCI bus0, device 31, function 1 Primary IDE IRQ 14, I/O port(s) 01F0-01F7, 03F6, Ultra DMA Mode 5 Secondary IDE IRQ 15, I/O port(s) 0170-0177, 0376, Ultra DMA Mode 2 Network card Realtek RTL8139/810x Family Fast Ethernet NIC Modem IRQ 10, I/O port(s) E300-E3FF, E400-E47F, Agere Systems AC'97 Modem, PCI bus 0, device 31, function 6 Processor Intel Celeron 1300MHz ---------- Forwarded message ---------- From: Adam Beachell Date: Thu, 16 Sep 2004 19:38:41 -0600 Subject: Trouble installing 4.10 on laptop - "cannot find kernel" To: freebsd-mobile@freebsd.org I am attempting to install 4.10 on my Acer laptop. After booting from the install CD I get a message stating "cannot find kernel". I get this error whether I use the miniinstall or the full 2 disc CD install. Browsing the CDs I can see that the kernel does exist on the disk. Does anyone have a suggestion where I should start to solve this? Thanks! From owner-freebsd-mobile@FreeBSD.ORG Fri Sep 17 15:26:52 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2711B16A4CF; Fri, 17 Sep 2004 15:26:52 +0000 (GMT) Received: from zardoz.rd.imagescape.com (zardoz.rd.imagescape.com [66.100.151.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A20F43D49; Fri, 17 Sep 2004 15:26:50 +0000 (GMT) (envelope-from puna@imagescape.com) Received: from [192.168.0.59] (nikko.rd.imagescape.com [192.168.0.59]) (authenticated bits=0)i8HFQifh025271; Fri, 17 Sep 2004 10:26:44 -0500 (CDT) (envelope-from puna@imagescape.com) Message-ID: <414B0303.5080307@imagescape.com> Date: Fri, 17 Sep 2004 10:30:11 -0500 From: Puna Tannehill User-Agent: Mozilla Thunderbird 0.8 (Windows/20040913) X-Accept-Language: en-us, en MIME-Version: 1.0 To: James Green References: <4145C5BB.1060507@imagescape.com> <1095360933.631.19.camel@aenea> <414A0A75.6010309@imagescape.com> In-Reply-To: <414A0A75.6010309@imagescape.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on zardoz.rd.imagescape.com cc: questions@freebsd.org cc: x11@freebsd.org cc: mobile@freebsd.org Subject: Re: 3dnow, mmx, k6-2 optimizing? X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Sep 2004 15:26:52 -0000 Interesting. I just tried the settings you suggested, and it seems that -mcpu is depreciated for -mtune. ALWAYS check the documentation first. :-) Here's the details: http://gcc.gnu.org/onlinedocs/gcc-3.4.2/gcc/i386-and-x86_002d64-Options.html#i386-and-x86_002d64-Options Puna Puna Tannehill wrote: > James Green wrote: > >> Hi Puna, >> >> I had a k6-2 a few years back (before discovering BSD :) and did a lot >> of Linux From Scratch work on it. I found that passing -march=i586 >> -mcpu=i686 produced by far the best results for pretty much any C/C++ >> code. Of course the code produced will not run on anything but a k6-2, >> which as I understand it is a 686 core with 586 interface/timings, and >> likewise if memory serves specifying only -march=i586 or -march=i686 >> (implying -mcpu=i586 or -mcpu=i686 respectively) won't run on the k6-2 >> either. Definitely a trade off between speed and (total lack of) >> portablility. Again that was gcc-2.9x days... > > > Interesting. Was there an option for -march=k6-2 at that time? Were > the results based on a comparison of that setting and the ones you > mention above? > > Do you happen to know if there is a particular benchmarking program that > might be useful to testing different compiles in FreeBSD? > > I've also seen recommendations using '586/mmx' and 'k7', but it seems > interesting that someone would create a 'k6-2' flag if there were not > significant and benefitial optimizations that would be applied. Of > course, whether anyone coded for that particular processor is probably > extemely rare, so I can see how the -march -mcpu combination you > suggested would probably be a better choice. > > Here are the relavent bits from dmesg (Compaq Presario 1692): > > CPU: AMD-K6(tm) 3D processor (432.98-MHz 586-class CPU) > Origin = "AuthenticAMD" Id = 0x58c Stepping = 12 > Features=0x8021bf > AMD Features=0x80000800 > K6-family MTRR support enabled (2 registers) > >> As far as ports such as Xorg/Xfree86, I am not entirely clear on CFLAGS >> inheritance, but AFAIK Xorg/Xfree don't gain much/anything from >> optimisation over than your usual -O2 and friends. I understand that >> this is down to whether they have been written to make use of these cpu >> functions/optimisations. >> On the other hand though, it is the specific applications that run under >> X, such as mplayer that tend to be written to make use of mmx, sse, >> 3dnow etc. because for graphics it makes a _big_ difference. Generally >> you find toggles in the Makefile to enable/force certain optimisation. >> Definitely worth looking at. > > > According to the latest GCC, you can use -m3dnow -mmmx and it is of > some benefit when comiling XF86 (and hopefully Xorg). I can't find the > page offhand, but it was in the GCC Documentation, and I posted it in > other responses of this same thread. I haven't been > able to test it yet, as I'm still compiling Xorg as we speak. > > Puna > >> >> >> On Mon, 2004-09-13 at 17:07, Puna Tannehill wrote: >> >>> I've been looking for possible flags, optimizations, really anything >>> that would help me setup my laptop to use mmx and 3dnow. I've >>> updated /etc/make.conf to -march to the drum of a k6-2, but I'm not >>> even sure if mmx and 3dnow are being taken into consideration for >>> compiling and such, especially for Xorg. >>> >>> I did some googling and found people who used CFLAGS like -mmmx and >>> -m3dnow, but when I run with those options, they fail and said to be >>> invalid. they don't appear in 'man gcc' which should have been the >>> first place i looked. I'm not finding anything in terms of compiling >>> or configuring Xorg to use 3dnow or mmx, or even how to check to see >>> if they are automatically detected and used. >>> >>> Any thoughts? >>> >>> Puna >>> _______________________________________________ >>> 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" >> >> >> > > From owner-freebsd-mobile@FreeBSD.ORG Fri Sep 17 15:50:46 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A92FF16A4CE for ; Fri, 17 Sep 2004 15:50:46 +0000 (GMT) Received: from xenial.mcc.ac.uk (xenial.mcc.ac.uk [130.88.203.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00AE143D39 for ; Fri, 17 Sep 2004 15:50:46 +0000 (GMT) (envelope-from jcm@FreeBSD-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by xenial.mcc.ac.uk with esmtp (Exim 4.12) id 1C8L0W-000JzV-00 for freebsd-mobile@freebsd.org; Fri, 17 Sep 2004 16:50:44 +0100 Received: from dogma.freebsd-uk.eu.org (localhost [127.0.0.1]) i8HFohYu078088 for ; Fri, 17 Sep 2004 16:50:43 +0100 (BST) (envelope-from jcm@dogma.freebsd-uk.eu.org) Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.12.10/8.12.6/Submit) id i8HFohgB078087 for freebsd-mobile@freebsd.org; Fri, 17 Sep 2004 16:50:43 +0100 (BST) Date: Fri, 17 Sep 2004 16:50:43 +0100 From: Jonathon McKitrick To: freebsd-mobile@freebsd.org Message-ID: <20040917155043.GB77303@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Subject: Any Money management apps for Palm/FreeBSD? X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Sep 2004 15:50:46 -0000 Thanks to the help I got from this list, I have been able to appease my wife with JPilot rather than expecting her to hotsync on her parents' computer. Now she wants to know if there are any Money-like applications on FreeBSD that would allow her to organize expenses/revenues and print reports from data on her Palm. I did a quick search in ports, but didn't run across anything. Does anyone have any suggestions? jm -- From owner-freebsd-mobile@FreeBSD.ORG Fri Sep 17 16:16:26 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1633A16A4CE for ; Fri, 17 Sep 2004 16:16:26 +0000 (GMT) Received: from out002.verizon.net (out002pub.verizon.net [206.46.170.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8014D43D53 for ; Fri, 17 Sep 2004 16:16:25 +0000 (GMT) (envelope-from Alex.Kovalenko@verizon.net) Received: from [10.0.3.231] ([141.153.207.21]) by out002.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040917161624.ZHWV6722.out002.verizon.net@[10.0.3.231]> for ; Fri, 17 Sep 2004 11:16:24 -0500 From: "Alexandre \"Sunny\" Kovalenko" To: freebsd-mobile@freebsd.org In-Reply-To: <20040917155043.GB77303@dogma.freebsd-uk.eu.org> References: <20040917155043.GB77303@dogma.freebsd-uk.eu.org> Content-Type: text/plain Message-Id: <1095437762.679.8.camel@RabbitsDen> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Fri, 17 Sep 2004 12:16:08 -0400 Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out002.verizon.net from [141.153.207.21] at Fri, 17 Sep 2004 11:16:24 -0500 Subject: Re: Any Money management apps for Palm/FreeBSD? X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Sep 2004 16:16:26 -0000 On Fri, 2004-09-17 at 11:50, Jonathon McKitrick wrote: > Thanks to the help I got from this list, I have been able to appease my wife > with JPilot rather than expecting her to hotsync on her parents' computer. > > Now she wants to know if there are any Money-like applications on FreeBSD > that would allow her to organize expenses/revenues and print reports from > data on her Palm. > > I did a quick search in ports, but didn't run across anything. Does anyone > have any suggestions? > > jm Gnucash (ports/finance/gnucash)? I have never used Money, so I could not provide comparisons, but I find it highly usable for home financial needs. --- Alexandre "Sunny" Kovalenko. From owner-freebsd-mobile@FreeBSD.ORG Fri Sep 17 17:18:17 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8555716A4CE for ; Fri, 17 Sep 2004 17:18:17 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2708C43D2F for ; Fri, 17 Sep 2004 17:18:17 +0000 (GMT) (envelope-from domcaf@gmail.com) Received: by mproxy.gmail.com with SMTP id 74so26879rnk for ; Fri, 17 Sep 2004 10:18:16 -0700 (PDT) Received: by 10.38.67.9 with SMTP id p9mr24907rna; Fri, 17 Sep 2004 10:18:15 -0700 (PDT) Received: by 10.38.181.21 with HTTP; Fri, 17 Sep 2004 10:18:15 -0700 (PDT) Message-ID: <71dda9b704091710183ec71d32@mail.gmail.com> Date: Fri, 17 Sep 2004 13:18:15 -0400 From: Dominic Caffey To: freebsd-mobile@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Wireless install of 5.3 Beta X...Where's the drivers flp image that 5.2.1 had?... X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dominic Caffey List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Sep 2004 17:18:17 -0000 To Whomever may be able to help, I'm trying to do an FTP based install via my SMC wireless nic onto a Toshiba Satellite 110CT. I can't get the install off the ground because the wireless nic is not recognized and I don't see where I can load additional drivers. The 5.2.1 ver comes with a drivers flp image per the following: ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/5.2.1-RELEASE/floppies/ but there is no drivers flp image for 5.3.X per: ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/5.3-BETA4/floppies/ . Can I use the 5.2.1 drivers.flp image with the 5.3.X beta? I'm a newbie at this and have tried to RTFM so please be gentle. I know the hardware's ok because I did a sucessfuly ftp based install via the wireless nic onto the same laptop with Debian-Woody-Linux BUT I'd rather be running FreeBSD. Any constructive guidance would be appreciated. Thanks in advance. Dom -- +------------------------------------------------------ | Dominic Caffey | Email: DomCaf@gmail.com +------------------------------------------------------ From owner-freebsd-mobile@FreeBSD.ORG Fri Sep 17 17:27:06 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E42F916A4CE for ; Fri, 17 Sep 2004 17:27:06 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id C311F43D1F for ; Fri, 17 Sep 2004 17:27:06 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i8HHSZbB013801; Fri, 17 Sep 2004 10:28:35 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i8HHSYAr013796; Fri, 17 Sep 2004 10:28:34 -0700 Date: Fri, 17 Sep 2004 10:28:34 -0700 From: Brooks Davis To: Dominic Caffey Message-ID: <20040917172834.GA13188@odin.ac.hmc.edu> References: <71dda9b704091710183ec71d32@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="huq684BweRXVnRxX" Content-Disposition: inline In-Reply-To: <71dda9b704091710183ec71d32@mail.gmail.com> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: freebsd-mobile@freebsd.org Subject: Re: Wireless install of 5.3 Beta X...Where's the drivers flp image that 5.2.1 had?... X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Sep 2004 17:27:07 -0000 --huq684BweRXVnRxX Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 17, 2004 at 01:18:15PM -0400, Dominic Caffey wrote: > To Whomever may be able to help, >=20 > I'm trying to do an FTP based install via my SMC wireless nic > onto a Toshiba Satellite 110CT. I can't get the install off the > ground because the wireless nic is not recognized and I don't see > where I can load additional drivers. The 5.2.1 ver comes with a > drivers flp image per the following:=20 > ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/5.2.1-RELEASE/floppies/ > but there is no drivers flp image for 5.3.X per:=20 > ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/5.3-BETA4/floppies/ .=20 > Can I use the 5.2.1 drivers.flp image with the 5.3.X beta? I'm a > newbie at this and have tried to RTFM so please be gentle. I know the > hardware's ok because I did a sucessfuly ftp based install via the > wireless nic onto the same laptop with Debian-Woody-Linux BUT I'd > rather be running FreeBSD. Any constructive guidance would be > appreciated. All the supported wireless nics should have drivers on the 5.3 floppy sets so if it doesn't work, you will probably have to find another nic. We replaced the old system where the kernel had to fit on one disk and we put a bunch of drivers on the other with a new setup with GENERIC split across however many disks to takes so everything should be there. It's possiable you have a nic that would be supported it's information were in the database, but that's a nice catch 22 if you need to use it to install. It's possiable you have a nic that would be supported it's information were in the database, but that's a nice catch 22 if you need to use it to install. :( Could you provide more information about the nic? -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --huq684BweRXVnRxX Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBSx7CXY6L6fI4GtQRAvxRAJ9LaiOslA/MtatErBGym3uYlw4EDACgwc+y DSUOThWOXHPY0U4uVq3KNlA= =2fGR -----END PGP SIGNATURE----- --huq684BweRXVnRxX-- From owner-freebsd-mobile@FreeBSD.ORG Fri Sep 17 23:03:21 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2750416A4CF for ; Fri, 17 Sep 2004 23:03:21 +0000 (GMT) Received: from o2.hostbaby.com (o2.hostbaby.com [208.187.29.121]) by mx1.FreeBSD.org (Postfix) with SMTP id D0B7543D1F for ; Fri, 17 Sep 2004 23:03:20 +0000 (GMT) (envelope-from ceo@l-i-e.com) Received: (qmail 50686 invoked by uid 1001); 17 Sep 2004 23:03:24 -0000 Received: from 66.243.145.38 (SquirrelMail authenticated user ceo@l-i-e.com); by www.l-i-e.com with HTTP; Fri, 17 Sep 2004 16:03:24 -0700 (PDT) Message-ID: <1217.66.243.145.38.1095462204.squirrel@www.l-i-e.com> In-Reply-To: <1361.66.243.145.38.1094337785.squirrel@www.l-i-e.com> References: <1361.66.243.145.38.1094337785.squirrel@www.l-i-e.com> Date: Fri, 17 Sep 2004 16:03:24 -0700 (PDT) From: "Richard Lynch" To: freebsd-questions@freebsd.org User-Agent: Hostbaby Webmail X-Mailer: Hostbaby Webmail MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal cc: freebsd-mobile@freebsd.org Subject: couldn't map memory X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: ceo@l-i-e.com List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Sep 2004 23:03:21 -0000 Richard Lynch wrote: > I have installed FreeBSD 5.2.1 on a Dell Insprion 700 m, dual boot with > the existing XP Home Edition (blech). > > Have begun posting my experience at > http://phpbootcamp.com/articles/inspiron700m.htm > > The built-in LAN NIC is a Broadcom 440x. > > It works well enough under Windows to send this message. :-^ An update, and re-title, since I've moved quite a bit forward. I'm also cc-ing -mobile, to which I'm not even subscribed at this time, cuz I can only keep up with so many lists... Hope that's not too rude. I disabled bfe in my GENERIC kernel and re-built that, so I could hack the BFE source and try it as a module without a 20-minute re-build and re-boot. So I do "make; make install:" in /usr/src/sys/modules/bfe and then "kldload /boot/kernel/if_bfe.ko" which seems to "work" -- at least well enough to print out my debugging statements, or when I'm particularly stupid, page fault and crash the machine. I added the device_id as a constant in the BFE header: --- /usr/src/sys/dev/bfe/if_bfereg.h --- #define BCOM_DEVICEID_BCM4401_B0 0x170c I added the device id to the array of known BFE devices: --- /usr/src/sys/dev/bfe/if_bfe.c --- static struct bfe_type bfe_devs[] = { { BCOM_VENDORID, BCOM_DEVICEID_BCM4401, "Broadcom BCM4401 Fast Ethernet" }, { BCOM_VENDORID, BCOM_DEVICEID_BCM4401_B0, "Broadcom BCM4401-B0 Fast Ethernet" }, { 0, 0, NULL } }; I added an id to the MII headers, even thought it's the same: --- /usr/src/sys/dev/mii/miidevs --- model BROADCOM BCM4401 0x0036 BCM4401 10/100baseTX PHY /* Michael Chan of Broadcom was kind enough to email me that 0x36 is right */ model BROADCOM BCM4401_B0 0x0036 BCM4401-B0 10/100baseTX PHY The bfe_attach function which is getting registered with the Device as a callback is being called, and eventually reaches the line where it attempts to do: sc->bfe_res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid, 0, ~0, 1, RF_ACTIVE); It is at this point that it is then printing out "Could not map memory" Now, I had already tried setting hints for maddr and msize to the values being used by Windows, in the hope that they would also be good numbers for FreeBSD. However, one thing I'm not sure of -- Do those "hints" affect a Module, or would they only apply to something built in to the kernel? Perhaps now that I've gotten the device "recognized" I should move back to using the kernel re-build with bfe enabled again. What other ways, short of hacking the source, can be used to provide good numbers for memory to bus_alloc_resource? And what magical incantations would allow me to find good numbers, as with 2 GIG of RAM, I suspect it could be a lonnnnnnng time before I stumbled on good numbers by just guessing. The is the output of "kldload /boot/kernel/if_bfe.ko" with the above alterations applied. Not quite sure why cbb0 and fwohci0 are getting in the picture... Perhaps the mere attempt to query their PCI vendor_id and device_id causes them to attempt to re-initialize?... Sep 17 00:31:09 kernel: cbb0: at device 4.0 on pci2 Sep 17 00:31:09 kernel: cbb0: pccbb.c Could not grab register memory Sep 17 00:31:09 kernel: device_probe_and_attach: cbb0 attach returned 12 Sep 17 00:31:09 kernel: cbb0: at device 4.1 on pci2 Sep 17 00:31:09 kernel: cbb0: pccbb.c Could not grab register memory Sep 17 00:31:09 kernel: device_probe_and_attach: cbb0 attach returned 12 Sep 17 00:31:09 kernel: fwohci0: vendor=104c, dev=802e Sep 17 00:31:09 kernel: fwohci0: <1394 Open Host Controller Interface> mem 0xe0200000-0xe0203fff,0xe0209000-0xe02097ff irq 10 at device 4.2 on pci2 Sep 17 00:31:09 kernel: fwohci0: Could not map memory Sep 17 00:31:09 kernel: device_probe_and_attach: fwohci0 attach returned 6 Sep 17 00:31:09 kernel: sc->bfe_miibus is NULL. Sep 17 00:31:09 kernel: bfe0: mem 0xe0206000-0xe0207fff irq 10 at device 5.0 on pci2 Sep 17 00:31:09 kernel: bfe0: couldn't map memory Sep 17 00:31:09 kernel: device_probe_and_attach: bfe0 attach returned 6 -- Like Music? http://l-i-e.com/artists.htm From owner-freebsd-mobile@FreeBSD.ORG Sat Sep 18 06:57:45 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9441416A4CE for ; Sat, 18 Sep 2004 06:57:45 +0000 (GMT) Received: from grande.el.net (NS2.EL.NET [68.165.89.67]) by mx1.FreeBSD.org (Postfix) with SMTP id D1DC643D54 for ; Sat, 18 Sep 2004 06:57:42 +0000 (GMT) (envelope-from kalin@el.net) Received: (qmail 5626 invoked from network); 18 Sep 2004 07:04:37 -0000 Received: from localhost (HELO el.net) (127.0.0.1) by grande.el.net with SMTP; 18 Sep 2004 07:04:37 -0000 Received: from 141.155.56.241 (SquirrelMail authenticated user kalin) by el.net with HTTP; Sat, 18 Sep 2004 03:04:37 -0400 (EDT) Message-ID: <49178.141.155.56.241.1095491077.squirrel@el.net> Date: Sat, 18 Sep 2004 03:04:37 -0400 (EDT) From: "kalin mintchev" To: freebsd-mobile@freebsd.org User-Agent: SquirrelMail/1.4.2 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal Subject: ath problems again X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Sep 2004 06:57:45 -0000 hi everybody... i had to use the ath card again. after associating it starts dropping packets like crazy. i haven't changed anything since i used it last 3 weeks ago with the same router... it cuts off every 7 - 10 packets. browser is just stalled... part of the ping is below. is there a new version somewhere? can anybody help? thanks PING 192.168.1.1 (192.168.1.1): 56 data bytes 64 bytes from 192.168.1.1: icmp_seq=0 ttl=150 time=4.406 ms 64 bytes from 192.168.1.1: icmp_seq=1 ttl=150 time=2.338 ms 64 bytes from 192.168.1.1: icmp_seq=2 ttl=150 time=2.008 ms 64 bytes from 192.168.1.1: icmp_seq=3 ttl=150 time=2.122 ms 64 bytes from 192.168.1.1: icmp_seq=4 ttl=150 time=2.055 ms 64 bytes from 192.168.1.1: icmp_seq=5 ttl=150 time=2.005 ms 64 bytes from 192.168.1.1: icmp_seq=6 ttl=150 time=1.984 ms 64 bytes from 192.168.1.1: icmp_seq=7 ttl=150 time=2.017 ms 64 bytes from 192.168.1.1: icmp_seq=8 ttl=150 time=2.101 ms 64 bytes from 192.168.1.1: icmp_seq=14 ttl=150 time=306.406 ms 64 bytes from 192.168.1.1: icmp_seq=15 ttl=150 time=2.465 ms 64 bytes from 192.168.1.1: icmp_seq=16 ttl=150 time=2.433 ms 64 bytes from 192.168.1.1: icmp_seq=17 ttl=150 time=2.443 ms 64 bytes from 192.168.1.1: icmp_seq=18 ttl=150 time=2.508 ms 64 bytes from 192.168.1.1: icmp_seq=19 ttl=150 time=2.466 ms 64 bytes from 192.168.1.1: icmp_seq=20 ttl=150 time=2.810 ms 64 bytes from 192.168.1.1: icmp_seq=21 ttl=150 time=4.344 ms 64 bytes from 192.168.1.1: icmp_seq=22 ttl=150 time=2.540 ms 64 bytes from 192.168.1.1: icmp_seq=23 ttl=150 time=2.596 ms 64 bytes from 192.168.1.1: icmp_seq=29 ttl=150 time=175.933 ms 64 bytes from 192.168.1.1: icmp_seq=30 ttl=150 time=1.980 ms 64 bytes from 192.168.1.1: icmp_seq=31 ttl=150 time=2.502 ms 64 bytes from 192.168.1.1: icmp_seq=32 ttl=150 time=2.035 ms 64 bytes from 192.168.1.1: icmp_seq=33 ttl=150 time=2.046 ms 64 bytes from 192.168.1.1: icmp_seq=34 ttl=150 time=2.539 ms 64 bytes from 192.168.1.1: icmp_seq=35 ttl=150 time=2.406 ms 64 bytes from 192.168.1.1: icmp_seq=41 ttl=150 time=35.484 ms 64 bytes from 192.168.1.1: icmp_seq=42 ttl=150 time=4.065 ms 64 bytes from 192.168.1.1: icmp_seq=43 ttl=150 time=3.708 ms 64 bytes from 192.168.1.1: icmp_seq=44 ttl=150 time=2.528 ms 64 bytes from 192.168.1.1: icmp_seq=45 ttl=150 time=2.615 ms 64 bytes from 192.168.1.1: icmp_seq=46 ttl=150 time=2.581 ms 64 bytes from 192.168.1.1: icmp_seq=47 ttl=150 time=2.622 ms 64 bytes from 192.168.1.1: icmp_seq=48 ttl=150 time=2.506 ms 64 bytes from 192.168.1.1: icmp_seq=49 ttl=150 time=2.789 ms 64 bytes from 192.168.1.1: icmp_seq=50 ttl=150 time=2.006 ms 64 bytes from 192.168.1.1: icmp_seq=51 ttl=150 time=7.904 ms 64 bytes from 192.168.1.1: icmp_seq=56 ttl=150 time=876.891 ms 64 bytes from 192.168.1.1: icmp_seq=57 ttl=150 time=4.109 ms 64 bytes from 192.168.1.1: icmp_seq=58 ttl=150 time=2.652 ms 64 bytes from 192.168.1.1: icmp_seq=59 ttl=150 time=2.595 ms 64 bytes from 192.168.1.1: icmp_seq=60 ttl=150 time=2.037 ms 64 bytes from 192.168.1.1: icmp_seq=61 ttl=150 time=2.007 ms 64 bytes from 192.168.1.1: icmp_seq=62 ttl=150 time=2.038 ms 64 bytes from 192.168.1.1: icmp_seq=63 ttl=150 time=2.598 ms 64 bytes from 192.168.1.1: icmp_seq=64 ttl=150 time=2.040 ms 64 bytes from 192.168.1.1: icmp_seq=65 ttl=150 time=2.601 ms 64 bytes from 192.168.1.1: icmp_seq=66 ttl=150 time=2.757 ms 64 bytes from 192.168.1.1: icmp_seq=71 ttl=150 time=795.986 ms 64 bytes from 192.168.1.1: icmp_seq=72 ttl=150 time=7.793 ms 64 bytes from 192.168.1.1: icmp_seq=73 ttl=150 time=2.465 ms 64 bytes from 192.168.1.1: icmp_seq=74 ttl=150 time=2.033 ms 64 bytes from 192.168.1.1: icmp_seq=75 ttl=150 time=2.087 ms 64 bytes from 192.168.1.1: icmp_seq=76 ttl=150 time=2.529 ms 64 bytes from 192.168.1.1: icmp_seq=77 ttl=150 time=2.039 ms 64 bytes from 192.168.1.1: icmp_seq=78 ttl=150 time=2.066 ms 64 bytes from 192.168.1.1: icmp_seq=84 ttl=150 time=596.179 ms 64 bytes from 192.168.1.1: icmp_seq=85 ttl=150 time=2.619 ms 64 bytes from 192.168.1.1: icmp_seq=86 ttl=150 time=2.031 ms -- From owner-freebsd-mobile@FreeBSD.ORG Sat Sep 18 08:43:38 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83F4F16A4CE for ; Sat, 18 Sep 2004 08:43:38 +0000 (GMT) Received: from mail5.tpgi.com.au (mail5.tpgi.com.au [203.12.160.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99C0D43D39 for ; Sat, 18 Sep 2004 08:43:37 +0000 (GMT) (envelope-from adam.chen@tpg.com.au) Received: from [10.0.0.2] (220-244-162-42-sa.tpgi.com.au [220.244.162.42]) (authenticated bits=0) by mail5.tpgi.com.au (8.12.10/8.12.10) with ESMTP id i8I8hReb016968 for ; Sat, 18 Sep 2004 18:43:33 +1000 From: LEI CHEN To: freebsd-mobile@freebsd.org Content-Type: text/plain Message-Id: <1095496925.375.3.camel@Zany.tabcuz.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sat, 18 Sep 2004 18:12:06 +0930 Content-Transfer-Encoding: 7bit X-TPG-Antivirus: Passed Subject: 4.10STABLE on IBM Thinkpad A21P sound driver X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: adam.chen@tpg.com.au List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Sep 2004 08:43:38 -0000 Dear list, This is my first time built a STABLE, I built it on my Thinkpad A21P. After I built the 4 stable, my 4.10Stable can't detect my sound driver, and I use /boot/loader.conf to load snd_csa driver, but it doesn't work. It works under 4.10-RELEASE by the way. Has anyone in the list experience the problem like this before? Please help. Cheers, LEI From owner-freebsd-mobile@FreeBSD.ORG Sat Sep 18 10:21:00 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A77716A4CF for ; Sat, 18 Sep 2004 10:21:00 +0000 (GMT) Received: from mail5.tpgi.com.au (mail5.tpgi.com.au [203.12.160.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 661B543D41 for ; Sat, 18 Sep 2004 10:20:59 +0000 (GMT) (envelope-from adam.chen@tpg.com.au) Received: from [10.0.0.2] (220-244-162-42-sa.tpgi.com.au [220.244.162.42]) (authenticated bits=0) by mail5.tpgi.com.au (8.12.10/8.12.10) with ESMTP id i8IAKthV032678 for ; Sat, 18 Sep 2004 20:20:57 +1000 From: LEI CHEN To: freebsd-mobile@freebsd.org In-Reply-To: <1095496925.375.3.camel@Zany.tabcuz.net> References: <1095496925.375.3.camel@Zany.tabcuz.net> Content-Type: text/plain Message-Id: <1095502772.49997.5.camel@Zany.tabcuz.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sat, 18 Sep 2004 19:49:33 +0930 Content-Transfer-Encoding: 7bit X-TPG-Antivirus: Passed Subject: Re: 4.10STABLE on IBM Thinkpad A21P sound driver X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: adam.chen@tpg.com.au List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Sep 2004 10:21:00 -0000 I've found a way to make the sound working again, by adding options PNPBIOS, but after adding this to kernels configuration file, dmesg have something like this: unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources Is this ok? Can it damage anything on the mainboard? Any help is appreciated. Cheers On Sat, 2004-09-18 at 18:12, LEI CHEN wrote: > Dear list, > This is my first time built a STABLE, I built it on my Thinkpad A21P. > After I built the 4 stable, my 4.10Stable can't detect my sound driver, > and I use /boot/loader.conf to load snd_csa driver, but it doesn't work. > > It works under 4.10-RELEASE by the way. > > Has anyone in the list experience the problem like this before? Please > help. > > Cheers, > LEI > > _______________________________________________ > 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" > > From owner-freebsd-mobile@FreeBSD.ORG Sat Sep 18 10:21:50 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4540D16A4D6 for ; Sat, 18 Sep 2004 10:21:50 +0000 (GMT) Received: from mail.tpgi.com.au (mail7.tpgi.com.au [203.12.160.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04D6243D1D for ; Sat, 18 Sep 2004 10:21:49 +0000 (GMT) (envelope-from adam.chen@tpg.com.au) Received: from [10.0.0.2] (220-244-162-42-sa.tpgi.com.au [220.244.162.42]) (authenticated bits=0) by mail.tpgi.com.au (8.12.10/8.12.10) with ESMTP id i8IALjqN019838 for ; Sat, 18 Sep 2004 20:21:46 +1000 From: LEI CHEN To: freebsd-mobile@freebsd.org In-Reply-To: <1095496925.375.3.camel@Zany.tabcuz.net> References: <1095496925.375.3.camel@Zany.tabcuz.net> Content-Type: text/plain Message-Id: <1095502772.49997.5.camel@Zany.tabcuz.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sat, 18 Sep 2004 19:50:23 +0930 Content-Transfer-Encoding: 7bit X-TPG-Antivirus: Passed Subject: Re: 4.10STABLE on IBM Thinkpad A21P sound driver X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: adam.chen@tpg.com.au List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Sep 2004 10:21:50 -0000 I've found a way to make the sound working again, by adding options PNPBIOS, but after adding this to kernels configuration file, dmesg have something like this: unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources Is this ok? Can it damage anything on the mainboard? Any help is appreciated. Cheers On Sat, 2004-09-18 at 18:12, LEI CHEN wrote: > Dear list, > This is my first time built a STABLE, I built it on my Thinkpad A21P. > After I built the 4 stable, my 4.10Stable can't detect my sound driver, > and I use /boot/loader.conf to load snd_csa driver, but it doesn't work. > > It works under 4.10-RELEASE by the way. > > Has anyone in the list experience the problem like this before? Please > help. > > Cheers, > LEI > > _______________________________________________ > 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" > > From owner-freebsd-mobile@FreeBSD.ORG Sat Sep 18 10:24:17 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91E1916A4CE for ; Sat, 18 Sep 2004 10:24:17 +0000 (GMT) Received: from mail.unixconsult.co.uk (mail.unixconsult.co.uk [81.2.69.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEDB743D31 for ; Sat, 18 Sep 2004 10:24:16 +0000 (GMT) (envelope-from freebsd@unix-consult.com) Received: from localhost (localhost.unixconsult.co.uk [127.0.0.1]) by mail.unixconsult.co.uk (Postfix) with ESMTP id 58D775083A; Sat, 18 Sep 2004 11:23:50 +0100 (BST) Received: from mail.unixconsult.co.uk ([127.0.0.1]) by localhost (mail.unixconsult.co.uk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 45842-03; Sat, 18 Sep 2004 11:23:48 +0100 (BST) Received: from nermal.unix-consult.com (wall.unixconsult.co.uk [81.2.69.82]) by mail.unixconsult.co.uk (Postfix) with ESMTP; Sat, 18 Sep 2004 11:23:48 +0100 (BST) Received: by nermal.unix-consult.com (Postfix, from userid 1002) id C2EDE25812; Sat, 18 Sep 2004 11:24:12 +0100 (BST) Date: Sat, 18 Sep 2004 11:24:12 +0100 From: Timo Geusch To: Bruno Ducrot Message-ID: <20040918102412.GA899@nermal.unix-consult.com> References: <20040902164219.GB29560@poupinou.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040902164219.GB29560@poupinou.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new at unixconsult.co.uk cc: freebsd-mobile@freebsd.org Subject: Re: [speedstep] testers wanted X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Sep 2004 10:24:17 -0000 On Thu, Sep 02, 2004 at 06:42:19PM +0200, Bruno Ducrot wrote: > Hi, > > I just finished a speedstep driver for p3m and p4m but it's a little bit > ugly, and worst it would work only with ich chipsets. Even worst, I > don't have the hardware so I can't test it. > > Some brave soul can found this in > http://www.poupinou.org/cpufreq/bsd/ > and it's named ichist.ugly.tar.gz Compiled on a Toshiba Satellite Pro 4600 running 5.3-BETAsomething, currently updating to the latest incarnation of -BETA4. It does load and recognise a device, plus I get the following output from sysctl -a | grep ich, which I assume is from your driver: dev.ichist.0.%desc: Intel ICH2m LPC bridge dev.ichist.0.%driver: ichist dev.ichist.0.%parent: nexus0 dev.ichist.0.speedstep: 1 Anything specific that you need to have tested? T. From owner-freebsd-mobile@FreeBSD.ORG Sat Sep 18 10:41:47 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC5D516A4CE for ; Sat, 18 Sep 2004 10:41:47 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 692F743D3F for ; Sat, 18 Sep 2004 10:41:47 +0000 (GMT) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from kg-work.kg4.no (68.80-202-174.nextgentel.com [80.202.174.68]) by mail.broadpark.no (Postfix) with SMTP id 931E45DDA for ; Sat, 18 Sep 2004 12:42:26 +0200 (MEST) Date: Sat, 18 Sep 2004 12:41:56 +0200 From: Torfinn Ingolfsen To: freebsd-mobile@freebsd.org Message-Id: <20040918124156.0f26df24.torfinn.ingolfsen@broadpark.no> In-Reply-To: <1095502772.49997.5.camel@Zany.tabcuz.net> References: <1095496925.375.3.camel@Zany.tabcuz.net> <1095502772.49997.5.camel@Zany.tabcuz.net> X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd5.2.1) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq;m"_0v;~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: 4.10STABLE on IBM Thinkpad A21P sound driver X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Sep 2004 10:41:48 -0000 On Sat, 18 Sep 2004 19:50:23 +0930 LEI CHEN wrote: > have something like this: > unknown: can't assign resources > unknown: can't assign resources > unknown: can't assign resources > unknown: can't assign resources > unknown: can't assign resources > unknown: can't assign resources > unknown: can't assign resources > unknown: can't assign resources > > Is this ok? Can it damage anything on the mainboard? This is ok, it doesn't damage anything. It just reports that it can't assign requested resources (irq, dma and so on) to those plug-n-play entries. -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-mobile@FreeBSD.ORG Sat Sep 18 11:08:15 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09C0616A4CE; Sat, 18 Sep 2004 11:08:15 +0000 (GMT) Received: from p15140542.pureserver.info (papendorf-se.de [217.160.222.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id B30AF43D1F; Sat, 18 Sep 2004 11:08:13 +0000 (GMT) (envelope-from freebsd@nagilum.org) Received: from localhost (localhost.localdomain [127.0.0.1]) by p15140542.pureserver.info (Postfix) with ESMTP id E116E2F411C; Sat, 18 Sep 2004 13:08:11 +0200 (CEST) Received: from p15140542.pureserver.info ([127.0.0.1]) by localhost (p15140542 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07255-03; Sat, 18 Sep 2004 13:08:10 +0200 (CEST) Received: from cakebox.homeunix.net (stgt-d9bb31e6.pool.mediaWays.net [217.187.49.230]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by p15140542.pureserver.info (Postfix) with ESMTP id C6F422F4119; Sat, 18 Sep 2004 13:08:09 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by cakebox.homeunix.net (Postfix) with ESMTP id 0B27E3029E1; Sat, 18 Sep 2004 13:07:17 +0200 (CEST) Received: from cakebox.homeunix.net ([127.0.0.1]) by localhost (cakebox.tis [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15354-06; Sat, 18 Sep 2004 13:06:57 +0200 (CEST) Received: from [10.1.1.4] (scorpio.tis [10.1.1.4]) by cakebox.homeunix.net (Postfix) with ESMTP id 96CCE302902; Sat, 18 Sep 2004 13:06:51 +0200 (CEST) Message-ID: <414C16F9.3000608@nagilum.org> Date: Sat, 18 Sep 2004 13:07:37 +0200 From: Nagilum User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Puna Tannehill References: <414707C5.3010803@imagescape.com> In-Reply-To: <414707C5.3010803@imagescape.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at cakebox.homeunix.net X-Virus-Scanned: by amavisd-new at papendorf-se.de cc: freebsd-stable@freebsd.org cc: freebsd-questions@freebsd.org cc: freebsd-mobile@freebsd.org Subject: Re: kern.ipc.maxpipekva exceeded, error X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Sep 2004 11:08:15 -0000 Hi Puna, This looks like there occured a looping recursion, there is definately something wrong with your ports. Maybe try to reinstall the dependencies forcefully after bringing your ports tree up-to-date (if that alone does not already help) Kind regards, Alex. Puna Tannehill wrote: > On a freshly rebuild v5.3-BETA4... > > A failed compile of sysutils/fastest_cvsup led me to run 'make clean' > before trying again. It took over 5 minutes to run make clean, and at > the very end I got the following: > > # make clean > kern.ipc.maxpipekva exceeded; see tuning(7) > Pipe call failed: Too many open files in system > Pipe call failed: Too many open files in system > ===> Cleaning for libtool-1.5.8 > ===> Cleaning for perl-5.8.5 > ===> Cleaning for fastest_cvsup-0.2.8 > > There is nothing specifically in tuning about this particular knob, > but from poking around I get the feeling that it's about memory > management of the kernel IPC subsystem. > > Running 'sysctl kern.ipc.maxpipekva' shows: > > kern.ipc.maxpipekva=1257472 > > Hunting around on in the archives, I came up with people getting this > error while doing very intensive compiles. Seems strange to me that I > might get such an error on a 15min uptime, cold-booted machine and > just doing a 'make clean'. And thoughts? > > Puna > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-mobile@FreeBSD.ORG Sat Sep 18 16:17:42 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF26016A4CE for ; Sat, 18 Sep 2004 16:17:42 +0000 (GMT) Received: from grande.el.net (NS2.EL.NET [68.165.89.67]) by mx1.FreeBSD.org (Postfix) with SMTP id 34FE843D45 for ; Sat, 18 Sep 2004 16:17:40 +0000 (GMT) (envelope-from kalin@el.net) Received: (qmail 24043 invoked from network); 18 Sep 2004 16:24:34 -0000 Received: from localhost (HELO el.net) (127.0.0.1) by grande.el.net with SMTP; 18 Sep 2004 16:24:34 -0000 Received: from 141.155.56.241 (SquirrelMail authenticated user kalin) by el.net with HTTP; Sat, 18 Sep 2004 12:24:34 -0400 (EDT) Message-ID: <49382.141.155.56.241.1095524674.squirrel@el.net> In-Reply-To: <49178.141.155.56.241.1095491077.squirrel@el.net> References: <49178.141.155.56.241.1095491077.squirrel@el.net> Date: Sat, 18 Sep 2004 12:24:34 -0400 (EDT) From: "kalin mintchev" To: freebsd-mobile@freebsd.org User-Agent: SquirrelMail/1.4.2 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal Subject: Re: ath problems again X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Sep 2004 16:17:42 -0000 i tried to compile the net80211+ath-20040818 driver. got this: ../../../dev/ath/if_ath.c: In function `ath_beacon_config': ../../../dev/ath/if_ath.c:1516: error: too many arguments to function ../../../dev/ath/if_ath.c: In function `ath_rx_proc': ../../../dev/ath/if_ath.c:2030: error: too few arguments to function ../../../dev/ath/if_ath.c: In function `ath_newstate': ../../../dev/ath/if_ath.c:2838: error: too many arguments to function ../../../dev/ath/if_ath.c:2840: error: too many arguments to function *** Error code 1 now what? thanks.. > hi everybody... > > i had to use the ath card again. > after associating it starts dropping packets like crazy. i haven't changed > anything since i used it last 3 weeks ago with the same router... > it cuts off every 7 - 10 packets. browser is just stalled... part of the > ping is below. > is there a new version somewhere? can anybody help? > > thanks > > PING 192.168.1.1 (192.168.1.1): 56 data bytes > 64 bytes from 192.168.1.1: icmp_seq=0 ttl=150 time=4.406 ms > 64 bytes from 192.168.1.1: icmp_seq=1 ttl=150 time=2.338 ms > 64 bytes from 192.168.1.1: icmp_seq=2 ttl=150 time=2.008 ms > 64 bytes from 192.168.1.1: icmp_seq=3 ttl=150 time=2.122 ms > 64 bytes from 192.168.1.1: icmp_seq=4 ttl=150 time=2.055 ms > 64 bytes from 192.168.1.1: icmp_seq=5 ttl=150 time=2.005 ms > 64 bytes from 192.168.1.1: icmp_seq=6 ttl=150 time=1.984 ms > 64 bytes from 192.168.1.1: icmp_seq=7 ttl=150 time=2.017 ms > 64 bytes from 192.168.1.1: icmp_seq=8 ttl=150 time=2.101 ms > 64 bytes from 192.168.1.1: icmp_seq=14 ttl=150 time=306.406 ms > 64 bytes from 192.168.1.1: icmp_seq=15 ttl=150 time=2.465 ms > 64 bytes from 192.168.1.1: icmp_seq=16 ttl=150 time=2.433 ms > 64 bytes from 192.168.1.1: icmp_seq=17 ttl=150 time=2.443 ms > 64 bytes from 192.168.1.1: icmp_seq=18 ttl=150 time=2.508 ms > 64 bytes from 192.168.1.1: icmp_seq=19 ttl=150 time=2.466 ms > 64 bytes from 192.168.1.1: icmp_seq=20 ttl=150 time=2.810 ms > 64 bytes from 192.168.1.1: icmp_seq=21 ttl=150 time=4.344 ms > 64 bytes from 192.168.1.1: icmp_seq=22 ttl=150 time=2.540 ms > 64 bytes from 192.168.1.1: icmp_seq=23 ttl=150 time=2.596 ms > 64 bytes from 192.168.1.1: icmp_seq=29 ttl=150 time=175.933 ms > 64 bytes from 192.168.1.1: icmp_seq=30 ttl=150 time=1.980 ms > 64 bytes from 192.168.1.1: icmp_seq=31 ttl=150 time=2.502 ms > 64 bytes from 192.168.1.1: icmp_seq=32 ttl=150 time=2.035 ms > 64 bytes from 192.168.1.1: icmp_seq=33 ttl=150 time=2.046 ms > 64 bytes from 192.168.1.1: icmp_seq=34 ttl=150 time=2.539 ms > 64 bytes from 192.168.1.1: icmp_seq=35 ttl=150 time=2.406 ms > 64 bytes from 192.168.1.1: icmp_seq=41 ttl=150 time=35.484 ms > 64 bytes from 192.168.1.1: icmp_seq=42 ttl=150 time=4.065 ms > 64 bytes from 192.168.1.1: icmp_seq=43 ttl=150 time=3.708 ms > 64 bytes from 192.168.1.1: icmp_seq=44 ttl=150 time=2.528 ms > 64 bytes from 192.168.1.1: icmp_seq=45 ttl=150 time=2.615 ms > 64 bytes from 192.168.1.1: icmp_seq=46 ttl=150 time=2.581 ms > 64 bytes from 192.168.1.1: icmp_seq=47 ttl=150 time=2.622 ms > 64 bytes from 192.168.1.1: icmp_seq=48 ttl=150 time=2.506 ms > 64 bytes from 192.168.1.1: icmp_seq=49 ttl=150 time=2.789 ms > 64 bytes from 192.168.1.1: icmp_seq=50 ttl=150 time=2.006 ms > 64 bytes from 192.168.1.1: icmp_seq=51 ttl=150 time=7.904 ms > 64 bytes from 192.168.1.1: icmp_seq=56 ttl=150 time=876.891 ms > 64 bytes from 192.168.1.1: icmp_seq=57 ttl=150 time=4.109 ms > 64 bytes from 192.168.1.1: icmp_seq=58 ttl=150 time=2.652 ms > 64 bytes from 192.168.1.1: icmp_seq=59 ttl=150 time=2.595 ms > 64 bytes from 192.168.1.1: icmp_seq=60 ttl=150 time=2.037 ms > 64 bytes from 192.168.1.1: icmp_seq=61 ttl=150 time=2.007 ms > 64 bytes from 192.168.1.1: icmp_seq=62 ttl=150 time=2.038 ms > 64 bytes from 192.168.1.1: icmp_seq=63 ttl=150 time=2.598 ms > 64 bytes from 192.168.1.1: icmp_seq=64 ttl=150 time=2.040 ms > 64 bytes from 192.168.1.1: icmp_seq=65 ttl=150 time=2.601 ms > 64 bytes from 192.168.1.1: icmp_seq=66 ttl=150 time=2.757 ms > 64 bytes from 192.168.1.1: icmp_seq=71 ttl=150 time=795.986 ms > 64 bytes from 192.168.1.1: icmp_seq=72 ttl=150 time=7.793 ms > 64 bytes from 192.168.1.1: icmp_seq=73 ttl=150 time=2.465 ms > 64 bytes from 192.168.1.1: icmp_seq=74 ttl=150 time=2.033 ms > 64 bytes from 192.168.1.1: icmp_seq=75 ttl=150 time=2.087 ms > 64 bytes from 192.168.1.1: icmp_seq=76 ttl=150 time=2.529 ms > 64 bytes from 192.168.1.1: icmp_seq=77 ttl=150 time=2.039 ms > 64 bytes from 192.168.1.1: icmp_seq=78 ttl=150 time=2.066 ms > 64 bytes from 192.168.1.1: icmp_seq=84 ttl=150 time=596.179 ms > 64 bytes from 192.168.1.1: icmp_seq=85 ttl=150 time=2.619 ms > 64 bytes from 192.168.1.1: icmp_seq=86 ttl=150 time=2.031 ms > > > -- > > _______________________________________________ > 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" > --