From owner-freebsd-mobile@FreeBSD.ORG Mon Jul 23 18:56:49 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E59416A417 for ; Mon, 23 Jul 2007 18:56:49 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id 3DB6D13C459 for ; Mon, 23 Jul 2007 18:56:49 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.7b8) with ESMTP id 198493631 for multiple; Mon, 23 Jul 2007 15:05:15 -0400 Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l6NIuVpE001661; Mon, 23 Jul 2007 14:56:31 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: freebsd-mobile@freebsd.org Date: Mon, 23 Jul 2007 14:56:27 -0400 User-Agent: KMail/1.9.6 References: <20070718181039.GA1845@rebelion.Sisis.de> <20070718201254.GA93437@tirith.brixandersen.dk> In-Reply-To: <20070718201254.GA93437@tirith.brixandersen.dk> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707231456.27314.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Mon, 23 Jul 2007 14:56:32 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/3743/Mon Jul 23 13:44:24 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx X-Server: High Performance Mail Server - http://surgemail.com r=1653887525 Cc: Henrik Brix Andersen Subject: Re: wpa_supplicant && and no ctrl_interface for wpa_cli X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jul 2007 18:56:49 -0000 On Wednesday 18 July 2007 04:12:55 pm Henrik Brix Andersen wrote: > On Wed, Jul 18, 2007 at 08:10:39PM +0200, Matthias Apitz wrote: > > and all is fine with WEP and WPA-PSK in the different Wifi locations > > which I have configured in /etc/wpa_supplicant.conf; but the configured > > UNIX domain socket files for communication in > > > > ctrl_interface=/var/run/wpa_supplicant > > > > will only be created if I start wpa_supplicant later manually again; > > I have checked the boot messages, but wpa_supplicant is started after > > local file systems are mounted and no errors are there; > > This is due to /etc/rc.d/cleanvar purging the /var/run/wpa_supplicant > directory after /etc/rc.d/wpa_supplicant is started. > > Here is a crude patch which makes cleanvar skip the wpa_supplicant > dir. I am not sure what the best solution is... > > > --- etc/rc.d/cleanvar.orig 2007-07-18 22:06:41.000000000 +0200 > +++ etc/rc.d/cleanvar 2007-07-18 22:08:02.000000000 +0200 > @@ -28,19 +28,26 @@ purgedir() > for dir > do > ( > - cd "$dir" && for file in .* * > - do > - # Skip over logging sockets > - [ -S "$file" -a "$file" = "log" ] && continue > - [ -S "$file" -a "$file" = "logpriv" ] && continue > - [ ."$file" = .. -o ."$file" = ... ] && continue > - if [ -d "$file" -a ! -L "$file" ] > - then > - purgedir "$file" > - else > - rm -f -- "$file" > - fi > - done > + case "$dir" in > + wpa_supplicant) > + # Skip > + ;; > + *) > + cd "$dir" && for file in .* * > + do > + # Skip over logging sockets > + [ -S "$file" -a "$file" = "log" ] && continue > + [ -S "$file" -a "$file" = "logpriv" ] && continue > + [ ."$file" = .. -o ."$file" = ... ] && continue > + if [ -d "$file" -a ! -L "$file" ] > + then > + purgedir "$file" > + else > + rm -f -- "$file" > + fi > + done > + ;; > + esac > ) > done > fi Are you sure? In my output of rcorder, cleanvar gets run before netif (which is what kicks off wpa_supplicant). Also, when I looked, other files under /var/run that should have been toasted if cleanvar was running after netif were still present. -- John Baldwin From owner-freebsd-mobile@FreeBSD.ORG Mon Jul 23 21:00:08 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF99016A421 for ; Mon, 23 Jul 2007 21:00:08 +0000 (UTC) (envelope-from henrik@brixandersen.dk) Received: from solow.pil.dk (relay.pil.dk [195.41.47.164]) by mx1.freebsd.org (Postfix) with ESMTP id ADCF313C47E for ; Mon, 23 Jul 2007 21:00:08 +0000 (UTC) (envelope-from henrik@brixandersen.dk) Received: from tirith.brixandersen.dk (osgiliath.brixandersen.dk [87.53.223.189]) by solow.pil.dk (Postfix) with ESMTP id 488951CC244; Mon, 23 Jul 2007 23:00:07 +0200 (CEST) Received: by tirith.brixandersen.dk (Postfix, from userid 1001) id BB7B3B8D2; Mon, 23 Jul 2007 23:00:06 +0200 (CEST) Date: Mon, 23 Jul 2007 23:00:06 +0200 From: Henrik Brix Andersen To: John Baldwin Message-ID: <20070723210006.GA17989@tirith.brixandersen.dk> Mail-Followup-To: John Baldwin , freebsd-mobile@freebsd.org References: <20070718181039.GA1845@rebelion.Sisis.de> <20070718201254.GA93437@tirith.brixandersen.dk> <200707231456.27314.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline In-Reply-To: <200707231456.27314.jhb@freebsd.org> X-PGP-Key: http://www.brixandersen.dk/files/HenrikBrixAndersen.asc User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-mobile@freebsd.org Subject: Re: wpa_supplicant && and no ctrl_interface for wpa_cli X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jul 2007 21:00:09 -0000 --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 23, 2007 at 02:56:27PM -0400, John Baldwin wrote: > Are you sure? In my output of rcorder, cleanvar gets run before netif (w= hich=20 > is what kicks off wpa_supplicant). Also, when I looked, other files=20 > under /var/run that should have been toasted if cleanvar was running afte= r=20 > netif were still present. Yes, I am sure - I tested the patch before shipping it. If you add a debug 'echo' to cleanvar you can see that it removes the wpa_supplicant/* files after wpa_supplicant has run. Regards, Brix --=20 Henrik Brix Andersen --lrZ03NoBR/3+SXJZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) Comment: GnuPG signed iD8DBQFGpRbVv+Q4flTiePgRAkBGAJ9gb8itznIx0DTvbFZj7Hx0ohbU3ACgt2K4 VmB3bbQIAczpLDD0ou4hSX0= =2XxH -----END PGP SIGNATURE----- --lrZ03NoBR/3+SXJZ-- From owner-freebsd-mobile@FreeBSD.ORG Mon Jul 23 22:29:26 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6175716A41A for ; Mon, 23 Jul 2007 22:29:26 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id 1FF1713C481 for ; Mon, 23 Jul 2007 22:29:25 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.7b8) with ESMTP id 198528557 for multiple; Mon, 23 Jul 2007 18:38:02 -0400 Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l6NMTJsM002993; Mon, 23 Jul 2007 18:29:19 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Henrik Brix Andersen Date: Mon, 23 Jul 2007 17:27:18 -0400 User-Agent: KMail/1.9.6 References: <20070718181039.GA1845@rebelion.Sisis.de> <200707231456.27314.jhb@freebsd.org> <20070723210006.GA17989@tirith.brixandersen.dk> In-Reply-To: <20070723210006.GA17989@tirith.brixandersen.dk> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707231727.18986.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Mon, 23 Jul 2007 18:29:20 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/3745/Mon Jul 23 17:01:34 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx X-Server: High Performance Mail Server - http://surgemail.com r=1653887525 Cc: freebsd-mobile@freebsd.org Subject: Re: wpa_supplicant && and no ctrl_interface for wpa_cli X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jul 2007 22:29:26 -0000 On Monday 23 July 2007 05:00:06 pm Henrik Brix Andersen wrote: > On Mon, Jul 23, 2007 at 02:56:27PM -0400, John Baldwin wrote: > > Are you sure? In my output of rcorder, cleanvar gets run before netif (which > > is what kicks off wpa_supplicant). Also, when I looked, other files > > under /var/run that should have been toasted if cleanvar was running after > > netif were still present. > > Yes, I am sure - I tested the patch before shipping it. If you add a > debug 'echo' to cleanvar you can see that it removes the > wpa_supplicant/* files after wpa_supplicant has run. Grrr, the problem is that cleanvar is running at the wrong time then. A real fix is to figure out that ordering problem. -- John Baldwin From owner-freebsd-mobile@FreeBSD.ORG Tue Jul 24 05:32:41 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 950E816A417 for ; Tue, 24 Jul 2007 05:32:41 +0000 (UTC) (envelope-from chekkko@hotmail.com) Received: from bay0-omc3-s3.bay0.hotmail.com (bay0-omc3-s3.bay0.hotmail.com [65.54.246.203]) by mx1.freebsd.org (Postfix) with ESMTP id 7EFF213C428 for ; Tue, 24 Jul 2007 05:32:41 +0000 (UTC) (envelope-from chekkko@hotmail.com) Received: from BAY124-W36 ([207.46.11.199]) by bay0-omc3-s3.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2668); Mon, 23 Jul 2007 22:20:41 -0700 Message-ID: X-Originating-IP: [189.177.110.224] From: =?iso-8859-1?Q?Sergio_Andr=E9s_Ligregni_Arredondo?= To: Date: Tue, 24 Jul 2007 00:20:41 -0500 Importance: Normal MIME-Version: 1.0 X-OriginalArrivalTime: 24 Jul 2007 05:20:41.0665 (UTC) FILETIME=[60E21310:01C7CDB2] Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: It stucks when booting!!! X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jul 2007 05:32:41 -0000 I have a COMPAQ Presario (laptop) V2615LA with AMD Sempron 1.83Ghz, 256 RAM= , 40HD, and the FreeBSD i386 (I came from freebsd-question, and there they = told me that that=B4s my arquitecture) CD-ROM's (version 6.2) When I boot from CD, it appears the boot MENU, I choose 1 (default) (I also= tried single user, safe mode, with ACPI disabled) and in the loading proce= ss it stucks in: =20 "Timecounter ticks every 1.000 msec" and the CD drive led turns off and onc= e I waited almos two hours and nothing happened =20 I also have a Desktop PC with Intel Celeron 2.0 Ghz 256RAM, 80 HD and an ex= ternar HD (USB), I installed FreeBSD in the desktop PC (but in the external= HD,) and when I boot from thant HD it occurs the same as the CD (so, the C= d's are ok, I have used the system in the desktop and everything is OK), bu= t I need to have FreeBSD in my laptop because I'm almost always out of home= . =20 I think I should change some variables (with the option 6) or something, bu= t I'm new in this so I need your help =20 Thank you =20 Sergio Ligregni _________________________________________________________________ =A1Descarga m=E1s de 30 emoticones GRATIS y haz m=E1s divertidas tus charla= s! http://emoticons.prodigymsn.com/= From owner-freebsd-mobile@FreeBSD.ORG Tue Jul 24 06:32:21 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB99616A418 for ; Tue, 24 Jul 2007 06:32:21 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.freebsd.org (Postfix) with SMTP id 8D1C513C46A for ; Tue, 24 Jul 2007 06:32:21 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 22429 invoked by uid 399); 24 Jul 2007 06:05:41 -0000 Received: from localhost (HELO lap.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTP; 24 Jul 2007 06:05:41 -0000 X-Originating-IP: 127.0.0.1 Message-ID: <46A596B3.1080506@FreeBSD.org> Date: Mon, 23 Jul 2007 23:05:39 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 2.0.0.5 (X11/20070723) MIME-Version: 1.0 To: John Baldwin References: <20070718181039.GA1845@rebelion.Sisis.de> <200707231456.27314.jhb@freebsd.org> <20070723210006.GA17989@tirith.brixandersen.dk> <200707231727.18986.jhb@freebsd.org> In-Reply-To: <200707231727.18986.jhb@freebsd.org> X-Enigmail-Version: 0.95.1 OpenPGP: id=D5B2F0FB Content-Type: multipart/mixed; boundary="------------090909040207090207070909" Cc: freebsd-mobile@freebsd.org, Henrik Brix Andersen Subject: Re: wpa_supplicant && and no ctrl_interface for wpa_cli X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jul 2007 06:32:21 -0000 This is a multi-part message in MIME format. --------------090909040207090207070909 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit John Baldwin wrote: > On Monday 23 July 2007 05:00:06 pm Henrik Brix Andersen wrote: >> On Mon, Jul 23, 2007 at 02:56:27PM -0400, John Baldwin wrote: >>> Are you sure? In my output of rcorder, cleanvar gets run before netif > (which >>> is what kicks off wpa_supplicant). Also, when I looked, other files >>> under /var/run that should have been toasted if cleanvar was running after >>> netif were still present. >> Yes, I am sure - I tested the patch before shipping it. If you add a >> debug 'echo' to cleanvar you can see that it removes the >> wpa_supplicant/* files after wpa_supplicant has run. > > Grrr, the problem is that cleanvar is running at the wrong time then. A real > fix is to figure out that ordering problem. > Henrix, can you please copy /etc/rc to its own directory, and apply the attached patch to it? Then please do the following: rcorder -s nostart /etc/rc.d/* > rcorder.log 2>&1 Then run the patched rc, and either send me the 4 (total) files, or post the results here. hth, Doug -- This .signature sanitized for your protection --------------090909040207090207070909 Content-Type: text/plain; name="rc-debug.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="rc-debug.diff" --- /etc/rc 2007-05-31 14:34:07.000000000 -0700 +++ rc 2007-07-23 23:00:36.000000000 -0700 @@ -85,8 +47,12 @@ # files=`rcorder ${skip} /etc/rc.d/* 2>/dev/null` +# XXX +rm -f rc.early* rc.late + for _rc_elem in ${files}; do - run_rc_script ${_rc_elem} ${_boot} + #run_rc_script ${_rc_elem} ${_boot} + echo $_rc_elem >> rc.early1 case "$_rc_elem" in */${early_late_divider}) break ;; @@ -107,16 +73,22 @@ _skip_early=1 for _rc_elem in ${files}; do case "$_skip_early" in - 1) case "$_rc_elem" in + 1) + echo $_rc_elem >> rc.early2 + case "$_rc_elem" in */${early_late_divider}) _skip_early=0 ;; esac continue ;; esac - run_rc_script ${_rc_elem} ${_boot} + echo $_rc_elem >> rc.late + + #run_rc_script ${_rc_elem} ${_boot} done +diff -u rc.early* + echo '' date exit 0 --------------090909040207090207070909-- From owner-freebsd-mobile@FreeBSD.ORG Tue Jul 24 11:16:48 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A353E16A418 for ; Tue, 24 Jul 2007 11:16:48 +0000 (UTC) (envelope-from M.Apitz@oclcpica.org) Received: from mail.pica.nl (mail.pica.nl [192.87.44.30]) by mx1.freebsd.org (Postfix) with ESMTP id 10F2713C507 for ; Tue, 24 Jul 2007 11:16:47 +0000 (UTC) (envelope-from M.Apitz@oclcpica.org) Received: from rebelion.Sisis.de ([193.31.10.34]) by mail.pica.nl with Microsoft SMTPSVC(6.0.3790.3959); Tue, 24 Jul 2007 13:17:00 +0200 Received: (from guru@localhost) by rebelion.Sisis.de (8.13.8/8.13.8/Submit) id l6OBGfre005722; Tue, 24 Jul 2007 13:16:41 +0200 (CEST) (envelope-from m.apitz@oclcpica.org) X-Authentication-Warning: rebelion.Sisis.de: guru set sender to m.apitz@oclcpica.org using -f Date: Tue, 24 Jul 2007 13:16:41 +0200 From: Matthias Apitz To: Volker Message-ID: <20070724111641.GA5372@rebelion.Sisis.de> References: <20070517113412.GA7245@rebelion.Sisis.de> <20070705110316.GA35818@rebelion.Sisis.de> <468CE60A.40301@vwsoft.com> <20070705125056.GA51300@rebelion.Sisis.de> <468CF8B6.6040506@vwsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <468CF8B6.6040506@vwsoft.com> User-Agent: Mutt/1.4.2.2i X-Operating-System: FreeBSD 6.2-RELEASE (i386) X-OriginalArrivalTime: 24 Jul 2007 11:17:00.0285 (UTC) FILETIME=[27889AD0:01C7CDE4] Cc: =?iso-8859-1?Q?Jos=E9?= Manuel Molina Pascual , Matthias Apitz , freebsd-mobile@freebsd.org Subject: Re: OPTION 3G+ Orange X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jul 2007 11:16:48 -0000 El día Thursday, July 05, 2007 a las 03:57:10PM +0200, Volker escribió: > Matthias, > > your card looks like an old one. ubsa is absolutely ok for your card. > The driver for download at the URL above is really just for newer > (PCMCIA/cardbus) cards using a different interface (so not of any use > for your card). > > These newer cards are named "Option 3G+" or "Option 3GMax" (HSDPA > capable). The older quad etc. cards are really fine with ubsa (just > the WLAN part of these cards is of no use as there's no support for > these chips and no driver will attach). > > All Option cards are best identified by the two starting letter of > their serial number. You'll find a list of all models at pharscape.org > > Volker Volker, Do you (or someone from the mobile list) know of any kind of UMTS adapter which can be used in a normal PC via RS232 cable with PPP in FreeBSD? all what I see are PCMCIA cards. Some days I got to know about a USB connected GPRS device: http://www.golem.de/0707/53401.html but I don't know if the USB-serial driver sees this at the end as a serial device and if it can be controlled with AT cmd's (maybe I will order some device to run a test); that's why I think the same could exist for UMTS... Thx matthias -- Matthias Apitz Manager Technical Support - OCLC PICA GmbH Gruenwalder Weg 28g - 82041 Oberhaching - Germany t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.oclcpica.org/ http://www.UnixArea.de/ b http://gurucubano.blogspot.com/ OCLC PICA GmbH, Geschaeftsfuehrer: Christine Magin-Weeger, Norbert Weinberger Sitz der Gesellschaft: Oberhaching, HRB Muenchen: 113261 From owner-freebsd-mobile@FreeBSD.ORG Tue Jul 24 14:17:02 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BB4816A419; Tue, 24 Jul 2007 14:17:02 +0000 (UTC) (envelope-from henrik@brixandersen.dk) Received: from solow.pil.dk (relay.pil.dk [195.41.47.164]) by mx1.freebsd.org (Postfix) with ESMTP id BBD9C13C45A; Tue, 24 Jul 2007 14:17:01 +0000 (UTC) (envelope-from henrik@brixandersen.dk) Received: from tirith.brixandersen.dk (osgiliath.brixandersen.dk [87.53.223.189]) by solow.pil.dk (Postfix) with ESMTP id 8D8451CC0EE; Tue, 24 Jul 2007 16:17:00 +0200 (CEST) Received: by tirith.brixandersen.dk (Postfix, from userid 1001) id 88DC3B860; Tue, 24 Jul 2007 16:16:58 +0200 (CEST) Date: Tue, 24 Jul 2007 16:16:58 +0200 From: Henrik Brix Andersen To: Doug Barton Message-ID: <20070724141658.GA3422@tirith.brixandersen.dk> Mail-Followup-To: Doug Barton , John Baldwin , freebsd-mobile@freebsd.org References: <20070718181039.GA1845@rebelion.Sisis.de> <200707231456.27314.jhb@freebsd.org> <20070723210006.GA17989@tirith.brixandersen.dk> <200707231727.18986.jhb@freebsd.org> <46A596B3.1080506@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="tKW2IUtsqtDRztdT" Content-Disposition: inline In-Reply-To: <46A596B3.1080506@FreeBSD.org> X-PGP-Key: http://www.brixandersen.dk/files/HenrikBrixAndersen.asc User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-mobile@freebsd.org Subject: Re: wpa_supplicant && and no ctrl_interface for wpa_cli X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jul 2007 14:17:02 -0000 --tKW2IUtsqtDRztdT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 23, 2007 at 11:05:39PM -0700, Doug Barton wrote: > Henrix, can you please copy /etc/rc to its own directory, and apply > the attached patch to it? Then please do the following: Sure. > rcorder -s nostart /etc/rc.d/* > rcorder.log 2>&1 >=20 > Then run the patched rc, and either send me the 4 (total) files, or > post the results here. The 4 files are available here: http://www.brixandersen.dk/tmp/rc/ Regards, Brix --=20 Henrik Brix Andersen --tKW2IUtsqtDRztdT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) Comment: GnuPG signed iD8DBQFGpgnZv+Q4flTiePgRAo4zAJ9linTJHLiX6nVmVRVXIc8JEYrfBwCdGmL9 IjeM7NNn5dAo9VFhwzbA+/Q= =dkR7 -----END PGP SIGNATURE----- --tKW2IUtsqtDRztdT-- From owner-freebsd-mobile@FreeBSD.ORG Tue Jul 24 16:22:45 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 980A316A418 for ; Tue, 24 Jul 2007 16:22:45 +0000 (UTC) (envelope-from volker@vwsoft.com) Received: from frontmail.ipactive.de (frontmail.maindns.de [85.214.95.103]) by mx1.freebsd.org (Postfix) with ESMTP id 2BBAB13C4B0 for ; Tue, 24 Jul 2007 16:22:42 +0000 (UTC) (envelope-from volker@vwsoft.com) Received: from mail.vtec.ipme.de (F7249.f.ppp-pool.de [195.4.114.73]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by frontmail.ipactive.de (Postfix) with ESMTP id 01CD112883F; Tue, 24 Jul 2007 18:22:34 +0200 (CEST) Received: from cesar.sz.vwsoft.com (cesar.sz.vwsoft.com [192.168.16.3]) by mail.vtec.ipme.de (Postfix) with ESMTP id 01F003F43A; Tue, 24 Jul 2007 18:22:19 +0200 (CEST) Message-ID: <46A6273B.8010106@vwsoft.com> Date: Tue, 24 Jul 2007 18:22:19 +0200 From: Volker User-Agent: Thunderbird 2.0.0.5 (X11/20070721) MIME-Version: 1.0 To: Matthias Apitz References: <20070517113412.GA7245@rebelion.Sisis.de> <20070705110316.GA35818@rebelion.Sisis.de> <468CE60A.40301@vwsoft.com> <20070705125056.GA51300@rebelion.Sisis.de> <468CF8B6.6040506@vwsoft.com> <20070724111641.GA5372@rebelion.Sisis.de> In-Reply-To: <20070724111641.GA5372@rebelion.Sisis.de> X-Enigmail-Version: 0.95.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-VWSoft-MailScanner: Found to be clean X-MailScanner-From: volker@vwsoft.com X-ipactive-MailScanner-Information: Please contact the ISP for more information X-ipactive-MailScanner: Found to be clean X-ipactive-MailScanner-From: volker@vwsoft.com Cc: =?ISO-8859-1?Q?Pascual?= , =?ISO-8859-1?Q?Jos=E9_Manuel_Molina_?=, freebsd-mobile@freebsd.org Subject: Re: OPTION 3G+ Orange X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jul 2007 16:22:45 -0000 On 07/24/07 13:16, Matthias Apitz wrote: > El día Thursday, July 05, 2007 a las 03:57:10PM +0200, Volker escribió: > >> Matthias, >> >> your card looks like an old one. ubsa is absolutely ok for your card. >> The driver for download at the URL above is really just for newer >> (PCMCIA/cardbus) cards using a different interface (so not of any use >> for your card). >> >> These newer cards are named "Option 3G+" or "Option 3GMax" (HSDPA >> capable). The older quad etc. cards are really fine with ubsa (just >> the WLAN part of these cards is of no use as there's no support for >> these chips and no driver will attach). >> >> All Option cards are best identified by the two starting letter of >> their serial number. You'll find a list of all models at pharscape.org >> >> Volker > > Volker, > > Do you (or someone from the mobile list) know of any kind of UMTS > adapter which can be used in a normal PC via RS232 cable with > PPP in FreeBSD? all what I see are PCMCIA cards. > > Some days I got to know about a USB connected GPRS device: > http://www.golem.de/0707/53401.html > but I don't know if the USB-serial driver sees this at the end as a serial > device and if it can be controlled with AT cmd's (maybe I will order > some device to run a test); > that's why I think the same could exist for UMTS... > > Thx > > matthias Matthias, well... I'm not aware of such hardware currently supported by FreeBSD. There are some USB devices on the market (Huawei is one of them, the units sold by T-Mobile seem to come from a german manufacturer) but these are tricky as they provide not only a USB modem interface and the wrong driver may attach to the unit. A specially crafted driver for these devices is required. Unfortunately I don't have such a device and they're too expensive to buy one just for testing. Also my driver building knowledge is somewhat limited and it would take me days to code something. Also there are some USB-to-PCMCIA adapters on the market (AFAIR called USB-111 and the like) but these are working only with a limited set of PCMCIA cards (never checked that as I don't have such a unit). I remember having seen a manufacturer (don't remember the name) on the market who produces boxes with USB and serial (V.24) interfaces. That may be worth a web search if such a device is needed. Your best option might be to use a regular (UMTS capable) phone and connect it by USB (or V.24) to your box. For such devices, there may already exist a driver which recognizes the phone. It may need to get quirks set. If you can't find a device and you want to use that in a desktop system, you may also use a PCMCIA-to-PCI adapter and a PCMCIA/cardbus card (you may also need to connect an external antenna). I've got one in my router and it worked fine for a long time. Back to the Option 3G+ USB box, a while back I checked the USB drivers. While the driver (ubsa and umass for example) attaches to the USB device, it most likely returns UMATCH_VENDOR_PRODUCT if the driver supports the device. This will stop other drivers from probing the device and so the first driver wins the device. For devices with multiple interfaces, this logic needs to be changed. Unfortunately my driver writing knowledge is limited but a good driver for such devices shouldn't be too difficult to write. Returning UMATCH_VENDOR_CONF_IFACE or UMATCH_IFACECLASS should allow other drivers to attach to the device, too. HTH Volker From owner-freebsd-mobile@FreeBSD.ORG Tue Jul 24 16:36:15 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 644CF16A421 for ; Tue, 24 Jul 2007 16:36:15 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id 2651F13C46B for ; Tue, 24 Jul 2007 16:36:15 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.7b8) with ESMTP id 198688600 for multiple; Tue, 24 Jul 2007 12:44:54 -0400 Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l6OGa6iO010357; Tue, 24 Jul 2007 12:36:08 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Doug Barton Date: Tue, 24 Jul 2007 11:49:30 -0400 User-Agent: KMail/1.9.6 References: <20070718181039.GA1845@rebelion.Sisis.de> <200707231727.18986.jhb@freebsd.org> <46A596B3.1080506@FreeBSD.org> In-Reply-To: <46A596B3.1080506@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707241149.30767.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Tue, 24 Jul 2007 12:36:09 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/3754/Tue Jul 24 09:41:21 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx X-Server: High Performance Mail Server - http://surgemail.com r=1653887525 Cc: freebsd-mobile@freebsd.org, Henrik Brix Andersen Subject: Re: wpa_supplicant && and no ctrl_interface for wpa_cli X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jul 2007 16:36:15 -0000 On Tuesday 24 July 2007 02:05:39 am Doug Barton wrote: > John Baldwin wrote: > > On Monday 23 July 2007 05:00:06 pm Henrik Brix Andersen wrote: > >> On Mon, Jul 23, 2007 at 02:56:27PM -0400, John Baldwin wrote: > >>> Are you sure? In my output of rcorder, cleanvar gets run before netif > > (which > >>> is what kicks off wpa_supplicant). Also, when I looked, other files > >>> under /var/run that should have been toasted if cleanvar was running after > >>> netif were still present. > >> Yes, I am sure - I tested the patch before shipping it. If you add a > >> debug 'echo' to cleanvar you can see that it removes the > >> wpa_supplicant/* files after wpa_supplicant has run. > > > > Grrr, the problem is that cleanvar is running at the wrong time then. A real > > fix is to figure out that ordering problem. > > > > Henrix, can you please copy /etc/rc to its own directory, and apply > the attached patch to it? Then please do the following: > > rcorder -s nostart /etc/rc.d/* > rcorder.log 2>&1 > > Then run the patched rc, and either send me the 4 (total) files, or > post the results here. I debugged this further and found some interesting results. If I run rcorder on just /etc/rc.d/* cleanvar gets scheduled after var, but if I run rcorder on /etc/rc.d/* and my scripts in /usr/local/etc/rc.d, I get a different order and cleanvar is just before pflog (which REQUIREs cleanvar). Making 'netif' REQUIRE cleanvar does seem to fix this, but having rcorder give different lists is troubling considering we invoke it twice. Would hate to skip a script and/or run one twice because it moved before or after $early_divider. In my case it seems that no scripts prior to $early_divider were affected. You can find my rcorder outputs at http://www.FreeBSD.org/~jhb/rcfun/ 'one' is 'rcorder -s nostart /etc/rc.d/*' before I patched netif 'two' is 'rcorder -s nostart /etc/rc.d/* /usr/local/etc/rc.d/' before I patched netif (where are all the rcNG style scripts) 'three' is 'rcorder -s nostart /etc/rc.d/* /usr/local/etc/rc.d/' after I patched netif. Patch to netif: Index: netif =================================================================== RCS file: /usr/cvs/src/etc/rc.d/netif,v retrieving revision 1.22 diff -u -r1.22 netif --- netif 9 Feb 2007 12:11:26 -0000 1.22 +++ netif 24 Jul 2007 11:59:40 -0000 @@ -26,7 +26,7 @@ # # PROVIDE: netif -# REQUIRE: atm1 ipfilter mountcritlocal serial sppp sysctl +# REQUIRE: atm1 cleanvar ipfilter mountcritlocal serial sppp sysctl # KEYWORD: nojail . /etc/rc.subr -- John Baldwin From owner-freebsd-mobile@FreeBSD.ORG Tue Jul 24 23:42:45 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67A5616A417 for ; Tue, 24 Jul 2007 23:42:45 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.freebsd.org (Postfix) with SMTP id 1F49513C45B for ; Tue, 24 Jul 2007 23:42:44 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 15463 invoked by uid 399); 24 Jul 2007 23:42:44 -0000 Received: from localhost (HELO lap.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTP; 24 Jul 2007 23:42:44 -0000 X-Originating-IP: 127.0.0.1 Message-ID: <46A68E72.8040607@FreeBSD.org> Date: Tue, 24 Jul 2007 16:42:42 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 2.0.0.5 (X11/20070723) MIME-Version: 1.0 To: John Baldwin References: <20070718181039.GA1845@rebelion.Sisis.de> <200707231727.18986.jhb@freebsd.org> <46A596B3.1080506@FreeBSD.org> <200707241149.30767.jhb@freebsd.org> In-Reply-To: <200707241149.30767.jhb@freebsd.org> X-Enigmail-Version: 0.95.1 OpenPGP: id=D5B2F0FB Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: Henrik Brix Andersen , freebsd-rc@freebsd.org, freebsd-mobile@freebsd.org Subject: Re: wpa_supplicant && and no ctrl_interface for wpa_cli X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jul 2007 23:42:45 -0000 [ I'm adding freebsd-rc for a little more review. The short version is that on Henrik's system the local rc.d files cause rcorder to put cleanvar after netif, which wipes out some important wpa_supplicant stuff. ] John Baldwin wrote: > On Tuesday 24 July 2007 02:05:39 am Doug Barton wrote: >> John Baldwin wrote: >>> On Monday 23 July 2007 05:00:06 pm Henrik Brix Andersen wrote: >>>> On Mon, Jul 23, 2007 at 02:56:27PM -0400, John Baldwin wrote: >>>>> Are you sure? In my output of rcorder, cleanvar gets run before netif >>> (which >>>>> is what kicks off wpa_supplicant). Also, when I looked, other files >>>>> under /var/run that should have been toasted if cleanvar was running > after >>>>> netif were still present. >>>> Yes, I am sure - I tested the patch before shipping it. If you add a >>>> debug 'echo' to cleanvar you can see that it removes the >>>> wpa_supplicant/* files after wpa_supplicant has run. >>> Grrr, the problem is that cleanvar is running at the wrong time then. A > real >>> fix is to figure out that ordering problem. >>> >> Henrix, can you please copy /etc/rc to its own directory, and apply >> the attached patch to it? Then please do the following: >> >> rcorder -s nostart /etc/rc.d/* > rcorder.log 2>&1 >> >> Then run the patched rc, and either send me the 4 (total) files, or >> post the results here. > > I debugged this further and found some interesting results. If I run rcorder > on just /etc/rc.d/* cleanvar gets scheduled after var, but if I run rcorder > on /etc/rc.d/* and my scripts in /usr/local/etc/rc.d, I get a different order > and cleanvar is just before pflog (which REQUIREs cleanvar). John, This is expected (and technically a feature), that's why I asked Henrik to try that patch for rc. > Making 'netif' REQUIRE cleanvar does seem to fix this, I've looked over what you and Henrik posted, and what I have on my system (with just a few local rc.d files) and I agree with you. I don't see anything else between var and netif on any of the three rcorder lists that needs/interacts with the directories that are cleaned by cleanvar, so doing what you suggested sounds like the way to go. > but having rcorder give different > lists is troubling considering we invoke it twice. Would hate to skip a > script and/or run one twice because it moved before or after $early_divider. > In my case it seems that no scripts prior to $early_divider were affected. We work pretty hard to make sure that doesn't happen, but you're right, it isn't impossible. FYI, what happens most often is that something doesn't get run because it moves before $early_late_divider in the second run. When it does happen (or when something like Henrik's problem happens) we have to take another look at the REQUIRE lines to make sure it can't happen again. The reason we try to leave things as loose as possible is so that local scripts (both from ports and from users) CAN affect the rcorder, since in many cases they need to. Of course this gives the port authors a pretty big responsibility to make sure that they don't break things. (The other reason we don't like to make gratuitous changes is the "if it's not broken, don't fix it" rule.) I'm in favor of your patch. Unless I hear from you otherwise (or unless someone on -rc opposes it) I'll assume you're going to commit it. If you'd prefer that I do it, just let me know. Henrik, It would of course be good if you could confirm this works for you, but I don't see why it wouldn't. Doug > You can find my rcorder outputs at http://www.FreeBSD.org/~jhb/rcfun/ > > 'one' is 'rcorder -s nostart /etc/rc.d/*' before I patched netif > 'two' is 'rcorder -s nostart /etc/rc.d/* /usr/local/etc/rc.d/' before > I patched netif (where are all the rcNG style scripts) > 'three' is 'rcorder -s nostart /etc/rc.d/* /usr/local/etc/rc.d/' after > I patched netif. > > Patch to netif: > > Index: netif > =================================================================== > RCS file: /usr/cvs/src/etc/rc.d/netif,v > retrieving revision 1.22 > diff -u -r1.22 netif > --- netif 9 Feb 2007 12:11:26 -0000 1.22 > +++ netif 24 Jul 2007 11:59:40 -0000 > @@ -26,7 +26,7 @@ > # > > # PROVIDE: netif > -# REQUIRE: atm1 ipfilter mountcritlocal serial sppp sysctl > +# REQUIRE: atm1 cleanvar ipfilter mountcritlocal serial sppp sysctl > # KEYWORD: nojail > > . /etc/rc.subr > -- This .signature sanitized for your protection From owner-freebsd-mobile@FreeBSD.ORG Wed Jul 25 09:34:12 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 351F516A41B; Wed, 25 Jul 2007 09:34:12 +0000 (UTC) (envelope-from henrik@brixandersen.dk) Received: from solow.pil.dk (relay.pil.dk [195.41.47.164]) by mx1.freebsd.org (Postfix) with ESMTP id E086C13C4A5; Wed, 25 Jul 2007 09:34:11 +0000 (UTC) (envelope-from henrik@brixandersen.dk) Received: from tirith.brixandersen.dk (osgiliath.brixandersen.dk [87.53.223.189]) by solow.pil.dk (Postfix) with ESMTP id 7BA9E1CC4D3; Wed, 25 Jul 2007 11:34:10 +0200 (CEST) Received: by tirith.brixandersen.dk (Postfix, from userid 1001) id F31EBB8D3; Wed, 25 Jul 2007 11:34:09 +0200 (CEST) Date: Wed, 25 Jul 2007 11:34:09 +0200 From: Henrik Brix Andersen To: Doug Barton Message-ID: <20070725093409.GA3878@tirith.brixandersen.dk> Mail-Followup-To: Doug Barton , John Baldwin , freebsd-mobile@freebsd.org, freebsd-rc@freebsd.org References: <20070718181039.GA1845@rebelion.Sisis.de> <200707231727.18986.jhb@freebsd.org> <46A596B3.1080506@FreeBSD.org> <200707241149.30767.jhb@freebsd.org> <46A68E72.8040607@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qDbXVdCdHGoSgWSk" Content-Disposition: inline In-Reply-To: <46A68E72.8040607@FreeBSD.org> X-PGP-Key: http://www.brixandersen.dk/files/HenrikBrixAndersen.asc User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-rc@freebsd.org, freebsd-mobile@freebsd.org Subject: Re: wpa_supplicant && and no ctrl_interface for wpa_cli X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jul 2007 09:34:12 -0000 --qDbXVdCdHGoSgWSk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jul 24, 2007 at 04:42:42PM -0700, Doug Barton wrote: > John Baldwin wrote: > > Making 'netif' REQUIRE cleanvar does seem to fix this, > > Henrik, >=20 > It would of course be good if you could confirm this works for you, > but I don't see why it wouldn't. I can confirm that this indeed fixes the problem for me. Thanks, both. Regards, Brix --=20 Henrik Brix Andersen --qDbXVdCdHGoSgWSk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) Comment: GnuPG signed iD8DBQFGpxkRv+Q4flTiePgRAtyeAKCybJ4dG32oz0YCOmYhWmnj3x6RhQCdE0gF brycY2TCYSjEL0wNNjkKmbU= =FzOK -----END PGP SIGNATURE----- --qDbXVdCdHGoSgWSk-- From owner-freebsd-mobile@FreeBSD.ORG Thu Jul 26 05:50:10 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 636F916A418 for ; Thu, 26 Jul 2007 05:50:10 +0000 (UTC) (envelope-from ronwireman@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.230]) by mx1.freebsd.org (Postfix) with ESMTP id 28D3513C45E for ; Thu, 26 Jul 2007 05:50:09 +0000 (UTC) (envelope-from ronwireman@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so343968nzf for ; Wed, 25 Jul 2007 22:50:09 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=Ep97lll4zosfownZbuesEQJLNlUc9V9S+hwT8q0Ns3NDeLd2X6zoI3QwtGqOgqNGGnc7Ehg5sc+FoyulfZQMGpdbURRNbka1Jylq9KR0k1kpTcTZYzufnXeZbZgkjrVWLnx+lMHyTR2dPots95dY/tkn63lIIbcvzVgYMUz7vbU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=pcdh+13vVgBjC+9KGULPQ8SS1Wsm8EPvP6IkpmddYKfmtNataxLu2fCxlZjIt9WDk/CrGg8PGFCn438PozLcDiiXAboJX6/D93jIOD2loVJlHO2OAOgSF6jRv30iD/ueUSvrq85tNorPJEixQ5PFBouXWiu6YLH+70A1tSFaOZg= Received: by 10.142.76.4 with SMTP id y4mr92457wfa.1185427535386; Wed, 25 Jul 2007 22:25:35 -0700 (PDT) Received: by 10.142.87.20 with HTTP; Wed, 25 Jul 2007 22:25:35 -0700 (PDT) Message-ID: <1935fcb50707252225wa4bb805yfa37fe8795cba9de@mail.gmail.com> Date: Thu, 26 Jul 2007 01:25:35 -0400 From: "Ron Wireman" To: freebsd-mobile@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Atheros 5212 card causing FreeBSD to freeze X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jul 2007 05:50:10 -0000 Does anyone here have any idea why my laptop would freeze up when I put a wireless networking card into it and then return to normal when I remove it? It's seems to be detecting the card correctly because I get the message when I insert it: ath0: mem 0x88000000-0x8800ffff irq 9 at device 0.0 on cardbus1 Also, when I remove the card, I get: ath0: Ethernet address: 00:17:5b:44:28:dc ath0: mac 7.8 phy 4.5 radio 5.6 Thanks. From owner-freebsd-mobile@FreeBSD.ORG Thu Jul 26 14:56:34 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18C0616A46C for ; Thu, 26 Jul 2007 14:56:34 +0000 (UTC) (envelope-from zkolic@sbb.co.yu) Received: from smtp4.sbb.co.yu (smtp4.sbb.co.yu [82.117.194.24]) by mx1.freebsd.org (Postfix) with ESMTP id 7212413C4EE for ; Thu, 26 Jul 2007 14:56:32 +0000 (UTC) (envelope-from zkolic@sbb.co.yu) Received: from faust.net (cable-89-216-167-189.dynamic.sbb.co.yu [89.216.167.189]) by smtp4.sbb.co.yu (8.14.0/8.14.0) with ESMTP id l6QEuViu002024 for ; Thu, 26 Jul 2007 16:56:31 +0200 Received: by faust.net (Postfix, from userid 1001) id AAAF01CC58; Thu, 26 Jul 2007 16:56:38 +0200 (CEST) Date: Thu, 26 Jul 2007 16:56:38 +0200 From: Zoran Kolic To: freebsd-mobile@freebsd.org Message-ID: <20070726145638.GA850@faust.net> References: <20070726120013.61E0816A519@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070726120013.61E0816A519@hub.freebsd.org> X-SMTP-Vilter-Version: 1.3.2 X-SBB-Virus-Status: clean X-SBB-Spam-Score: 2.6 X-SBB-Spam-Level: XXXXX Subject: Re: Atheros 5121 card causing FreeBSD to freeze X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jul 2007 14:56:34 -0000 > Does anyone here have any idea why my laptop would freeze up when I put a > wireless networking card into it and then return to normal when I remove it? > ath0: mem 0x88000000-0x8800ffff irq 9 at device 0.0 on > cardbus1 Would be nice to have more info. Your hardware, os version and conf file, when you recompiled the kernel. Rc.conf also. What is your wi-fi configuration for this card? Zoran From owner-freebsd-mobile@FreeBSD.ORG Thu Jul 26 16:06:10 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B22D916A418 for ; Thu, 26 Jul 2007 16:06:10 +0000 (UTC) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.freebsd.org (Postfix) with ESMTP id 798B913C45A for ; Thu, 26 Jul 2007 16:06:10 +0000 (UTC) (envelope-from sam@errno.com) Received: from trouble.errno.com (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id l6QG674U053883 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 26 Jul 2007 09:06:08 -0700 (PDT) (envelope-from sam@errno.com) Message-ID: <46A8C769.7060804@errno.com> Date: Thu, 26 Jul 2007 09:10:17 -0700 From: Sam Leffler User-Agent: Thunderbird 2.0.0.0 (X11/20070530) MIME-Version: 1.0 To: Ron Wireman References: <1935fcb50707252225wa4bb805yfa37fe8795cba9de@mail.gmail.com> In-Reply-To: <1935fcb50707252225wa4bb805yfa37fe8795cba9de@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-mobile@freebsd.org Subject: Re: Atheros 5212 card causing FreeBSD to freeze X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jul 2007 16:06:10 -0000 Ron Wireman wrote: > Does anyone here have any idea why my laptop would freeze up when I put a > wireless networking card into it and then return to normal when I remove it? > > It's seems to be detecting the card correctly because I get the message when > I insert it: > > ath0: mem 0x88000000-0x8800ffff irq 9 at device 0.0 on > cardbus1 > > Also, when I remove the card, I get: > > ath0: Ethernet address: 00:17:5b:44:28:dc > ath0: mac 7.8 phy 4.5 radio 5.6 Sounds like the card is generating constant interrupts. Try providing more info. Sam From owner-freebsd-mobile@FreeBSD.ORG Fri Jul 27 00:26:34 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0111E16A418 for ; Fri, 27 Jul 2007 00:26:34 +0000 (UTC) (envelope-from chekkko@hotmail.com) Received: from bay0-omc3-s39.bay0.hotmail.com (bay0-omc3-s39.bay0.hotmail.com [65.54.246.239]) by mx1.freebsd.org (Postfix) with ESMTP id E1CFE13C45A for ; Fri, 27 Jul 2007 00:26:33 +0000 (UTC) (envelope-from chekkko@hotmail.com) Received: from BAY124-W28 ([207.46.11.191]) by bay0-omc3-s39.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2668); Thu, 26 Jul 2007 17:26:33 -0700 Message-ID: X-Originating-IP: [189.177.97.24] From: =?iso-8859-1?Q?Sergio_Andr=E9s_Ligregni_Arredondo?= To: "freebsd-mobile@freebsd.org" Date: Thu, 26 Jul 2007 19:26:33 -0500 Importance: Normal MIME-Version: 1.0 X-OriginalArrivalTime: 27 Jul 2007 00:26:33.0510 (UTC) FILETIME=[C9009460:01C7CFE4] Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: I wanna use FreeBSD in my laptop and it stucks booting (i can't even install it) X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jul 2007 00:26:34 -0000 Hi!, listen, I have a COMPAQ Presario V2615LA (laptop) with AMD Sempron 1.8= 3Ghz 256 MB RAM 40 GB HDI have also the FreeBSD i386 6.2 CD (I also tried w= ith 6.1 and it's the same, or 6.2 alpha and it doesn't works) When I put the CD into my drive, and I boot from it, it appears the FreeBSD= booting MENU, and I choose 1 (default)(I also tried with single user, ACPI= disabled, safe mode) and it starts loading the devices, but, almost in the= end of that (I said almost because I have a desktop and there it works OK,= and when the following message appears, is almost the finish) the loading = process stucks in a line that says: =20 Timecounter ticks every 1.000 msec =20 And the HD led keeps turned on, but the CD drive led turns off (I mean it's= not reading anything from CD).OK, be patiently you could say, but, I have = waited 2 hours or more and int doesn't seem to progress. THE FOLLOWING IS JUST FOR GIVE YOU MORE IDEA THAT MY PROBLEM IS: I had installed Ubuntu linux (I am pretty sure FreeBSD is more powerful tha= n linux, that's why I didn't keep Ubuntu), I said that because Ubuntu is fo= r i386 arquitecture and it is not too compatible as FreeBSD, I think, if it= runs linux, it sure runs FreeBSD (and my laptop's arquitecture is not extr= aordinary, I think is pretty common)! =20 I have asked on freebsd-question (they sent me here) and they confirm that = my arquitecture is i386, so I have the right CD, and which I said, I instal= led FreeBSD in my desktop but in an external (USB) Hard Drive, when I boot = from this, it stucks at the same line, so my CD drive is ok, I really want = to install it in my laptop because I almost always out home (university). I really don't know where is the real problem, but I was wondering if chang= ing some variables with 6 (go to prompt) and disabling some drives or somet= hing =20 THANK YOUSergio Ligregni3rd semester student Computer Systems EngineeringTe= cnological Institute of Quer=E9taro, M=E9xico _________________________________________________________________ Madonna, The Police, Bon Jovi y muchos m=E1s en el concierto del a=F1o: LIV= E EARTH S=F3lo por Prodigy/MSN http://es.mx.liveearth.msn.com = From owner-freebsd-mobile@FreeBSD.ORG Fri Jul 27 06:13:57 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 547AD16A418 for ; Fri, 27 Jul 2007 06:13:57 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 248D213C478 for ; Fri, 27 Jul 2007 06:13:57 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 9527 invoked from network); 27 Jul 2007 00:47:15 -0500 Received: from 203-206-233-219.dyn.iinet.net.au (HELO localhost) (203.206.233.219) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 27 Jul 2007 00:47:15 -0500 Date: Fri, 27 Jul 2007 15:47:12 +1000 From: Norberto Meijome To: freebsd-mobile@freebsd.org Message-ID: <20070727154712.066e7aeb@localhost> In-Reply-To: References: X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: I wanna use FreeBSD in my laptop and it stucks booting (i can't even install it) X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jul 2007 06:13:57 -0000 On Thu, 26 Jul 2007 19:26:33 -0500 Sergio Andr=E9s Ligregni Arredondo wrote: > Hi!, listen, I have a COMPAQ Presario V2615LA (laptop) with AMD Sempron 1= .83Ghz 256 MB RAM 40 GB HDI have also the FreeBSD i386 6.2 CD (I also tried= with 6.1 and it's the same, or 6.2 alpha and it doesn't works) > When I put the CD into my drive, and I boot from it, it appears the FreeB= SD booting MENU, and I choose 1 (default)(I also tried with single user, AC= PI disabled, safe mode) and it starts loading the devices, but, almost in t= he end of that (I said almost because I have a desktop and there it works O= K, and when the following message appears, is almost the finish) the loadin= g process stucks in a line that says: > =20 > Timecounter ticks every 1.000 msec > =20 > And the HD led keeps turned on, but the CD drive led turns off (I mean it= 's not reading anything from CD).OK, be patiently you could say, but, I hav= e waited 2 hours or more and int doesn't seem to progress. > THE FOLLOWING IS JUST FOR GIVE YOU MORE IDEA THAT MY PROBLEM IS: > I had installed Ubuntu linux (I am pretty sure FreeBSD is more powerful t= han linux, that's why I didn't keep Ubuntu), I said that because Ubuntu is = for i386 arquitecture and it is not too compatible as FreeBSD, I think, if = it runs linux, it sure runs FreeBSD (and my laptop's arquitecture is not ex= traordinary, I think is pretty common)! > =20 > I have asked on freebsd-question (they sent me here) and they confirm tha= t my arquitecture is i386, so I have the right CD, and which I said, I inst= alled FreeBSD in my desktop but in an external (USB) Hard Drive, when I boo= t from this, it stucks at the same line, so my CD drive is ok, I really wan= t to install it in my laptop because I almost always out home (university). > I really don't know where is the real problem, but I was wondering if cha= nging some variables with 6 (go to prompt) and disabling some drives or som= ething Hi Sergio, search the archives, i've seen a couple of posts about people's computers s= tuck @ 1,000 msec . ( u should let it sit for a while...i vaguely remember = in mine getting unstuck after 5 minutes or not...i solved it, but i cant re= member what it was). anyway, have you tried breaking the menu, disabling APIC and then booting? my laptops havent been able to boot unless I did that. now i just have=20 hint.apic.0.disabled=3D"1" in /boot/loader.conf.local _________________________ {Beto|Norberto|Numard} Meijome "I was born not knowing and have had only a little time to change that here= and there."=20 Richard Feynman I speak for myself, not my employer. Contents may be hot. Slippery when wet= . Reading disclaimers makes you go blind. Writing them is worse. You have b= een Warned. From owner-freebsd-mobile@FreeBSD.ORG Fri Jul 27 15:03:51 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 508C516A420 for ; Fri, 27 Jul 2007 15:03:51 +0000 (UTC) (envelope-from duncan.fbsd@gmail.com) Received: from smtp122.sbc.mail.sp1.yahoo.com (smtp122.sbc.mail.sp1.yahoo.com [69.147.64.95]) by mx1.freebsd.org (Postfix) with SMTP id 3820513C46A for ; Fri, 27 Jul 2007 15:03:51 +0000 (UTC) (envelope-from duncan.fbsd@gmail.com) Received: (qmail 23861 invoked from network); 27 Jul 2007 14:37:11 -0000 Received: from unknown (HELO pres1750.airedalians.com) (donaldj@ameritech.net@75.7.74.134 with plain) by smtp122.sbc.mail.sp1.yahoo.com with SMTP; 27 Jul 2007 14:37:11 -0000 X-YMail-OSG: xuI.nQMVM1m9KLD_fb5y0VgfOESlOlcj4GProAwo_FrPUsl2JEZAZKQ2Kdw3pPWZ_Bv4G5vawg-- From: "Donald J. O'Neill" To: freebsd-mobile@freebsd.org Date: Fri, 27 Jul 2007 09:37:05 -0500 User-Agent: KMail/1.9.7 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200707270937.05641.duncan.fbsd@gmail.com> Cc: Sergio =?iso-8859-1?q?Andr=E9s_Ligregni_Arredondo?= Subject: Re: I wanna use FreeBSD in my laptop and it stucks booting (i can't even install it) X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jul 2007 15:03:51 -0000 On Thursday 26 July 2007 07:26:33 pm Sergio Andr=E9s Ligregni Arredondo wro= te: > Hi!, listen, I have a COMPAQ Presario V2615LA (laptop) with AMD Sempron > 1.83Ghz 256 MB RAM 40 GB HDI have also the FreeBSD i386 6.2 CD (I also > tried with 6.1 and it's the same, or 6.2 alpha and it doesn't works) When= I > put the CD into my drive, and I boot from it, it appears the FreeBSD > booting MENU, and I choose 1 (default)(I also tried with single user, ACPI > disabled, safe mode) and it starts loading the devices, but, almost in the > end of that (I said almost because I have a desktop and there it works OK, > and when the following message appears, is almost the finish) the loading > process stucks in a line that says: > > Timecounter ticks every 1.000 msec > > And the HD led keeps turned on, but the CD drive led turns off (I mean it= 's > not reading anything from CD).OK, be patiently you could say, but, I have > waited 2 hours or more and int doesn't seem to progress. THE FOLLOWING IS > JUST FOR GIVE YOU MORE IDEA THAT MY PROBLEM IS: > I had installed Ubuntu linux (I am pretty sure FreeBSD is more powerful > than linux, that's why I didn't keep Ubuntu), I said that because Ubuntu = is > for i386 arquitecture and it is not too compatible as FreeBSD, I think, if > it runs linux, it sure runs FreeBSD (and my laptop's arquitecture is not > extraordinary, I think is pretty common)! > > I have asked on freebsd-question (they sent me here) and they confirm that > my arquitecture is i386, so I have the right CD, and which I said, I > installed FreeBSD in my desktop but in an external (USB) Hard Drive, when= I > boot from this, it stucks at the same line, so my CD drive is ok, I really > want to install it in my laptop because I almost always out home > (university). I really don't know where is the real problem, but I was > wondering if changing some variables with 6 (go to prompt) and disabling > some drives or something > > THANK YOUSergio Ligregni3rd semester student Computer Systems > EngineeringTecnological Institute of Quer=E9taro, M=E9xico Hi Sergio, You may want to look at what BIOS you have installed. I think HP and Compaq= =20 have been using a BIOS that doesn't work with FreeBSD. It will work with=20 Opensuse and, of course, Window$. My HP DV9010us came with the 1st BIOS upgrade. It would load and install=20 =46reeBSD, but the processor wasn't recognized as a dual-core and what was= =20 recognized ran at about half speed. The next BIOS upgrade (and all later=20 ones) would not install FreeBSD. I finally got fedup, installed the origina= l=20 BIOS (the one before the one that came with my HP) and everything appears t= o=20 be working as it should. Don From owner-freebsd-mobile@FreeBSD.ORG Fri Jul 27 17:32:15 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2DF8B16A417 for ; Fri, 27 Jul 2007 17:32:15 +0000 (UTC) (envelope-from carloshpf@oi.com.br) Received: from smtp6.oi.com.br (smtp6.oi.com.br [200.222.115.69]) by mx1.freebsd.org (Postfix) with ESMTP id DCF5213C442 for ; Fri, 27 Jul 2007 17:32:14 +0000 (UTC) (envelope-from carloshpf@oi.com.br) Received: from smtp1.oi.com.br (smtp4.oi.com.br [200.222.115.124]) by smtp6.oi.com.br (Postfix) with ESMTP id B6222213259 for ; Fri, 27 Jul 2007 14:14:11 -0300 (BRT) Received: from smtp1.oi.com.br (localhost.localdomain [127.0.0.1]) by smtp1.oi.com.br (Postfix) with ESMTP id 740318020148 for ; Fri, 27 Jul 2007 14:14:02 -0300 (BRT) Received: from [127.0.0.1] (unknown [189.12.159.83]) by smtp1.oi.com.br (Postfix) with ESMTP id 6D71C80200EC for ; Fri, 27 Jul 2007 14:13:52 -0300 (BRT) Message-ID: <46AA27C9.5020607@oi.com.br> Date: Fri, 27 Jul 2007 14:13:45 -0300 From: Carlos Porto Filho User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: "freebsd-mobile@freebsd.org" Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Pavilion dv9000 X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jul 2007 17:32:15 -0000 does anyone here use freebsd in a hp pavilion 9010? From owner-freebsd-mobile@FreeBSD.ORG Fri Jul 27 18:34:35 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A804E16A418 for ; Fri, 27 Jul 2007 18:34:35 +0000 (UTC) (envelope-from donaldj@ameritech.net) Received: from smtp111.sbc.mail.re2.yahoo.com (smtp111.sbc.mail.re2.yahoo.com [68.142.229.94]) by mx1.freebsd.org (Postfix) with SMTP id 5583E13C469 for ; Fri, 27 Jul 2007 18:34:35 +0000 (UTC) (envelope-from donaldj@ameritech.net) Received: (qmail 80868 invoked from network); 27 Jul 2007 18:07:53 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=ameritech.net; h=Received:X-YMail-OSG:From:To:Subject:Date:User-Agent:Cc:References:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-Disposition:Message-Id; b=lpP9Jc7nCWAE8TU+FrZzLHF351mQ1+/PSUT/VgS/2ODRC7MBqTg4DVGg7L7M5lJ8EV1pWE/REnYvGwfpQ/FVwn//4hJ3Q8IE5YbjOL1GarNPNrlUVjBSowyM7eu0PU+mIPfSNlhG/o5HisdhPjuh402tC9pn70NYIYLcq95u4MA= ; Received: from unknown (HELO pres1750.airedalians.com) (donaldj@ameritech.net@75.7.74.134 with plain) by smtp111.sbc.mail.re2.yahoo.com with SMTP; 27 Jul 2007 18:07:53 -0000 X-YMail-OSG: o6_WCWUVM1kiYCePRH4EeCPeMp6FSF0sxiFG4qx4I9kqhYAdwrL1sFH66Xk5bekXEQIUW9GtrdKdqaqcRJ8GY3B58Ggx From: "Donald J. O'Neill" To: freebsd-mobile@freebsd.org Date: Fri, 27 Jul 2007 13:07:48 -0500 User-Agent: KMail/1.9.7 References: <20070727154712.066e7aeb@localhost> In-Reply-To: <20070727154712.066e7aeb@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200707271307.48505.donaldj@ameritech.net> Cc: Norberto Meijome Subject: Re: I wanna use FreeBSD in my laptop and it stucks booting (i can't even install it) X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jul 2007 18:34:35 -0000 On Friday 27 July 2007 12:47:12 am Norberto Meijome wrote: > On Thu, 26 Jul 2007 19:26:33 -0500 > > Sergio Andr=E9s Ligregni Arredondo wrote: > > Hi!, listen, I have a COMPAQ Presario V2615LA (laptop) with AMD Sempron > > 1.83Ghz 256 MB RAM 40 GB HDI have also the FreeBSD i386 6.2 CD (I also > > tried with 6.1 and it's the same, or 6.2 alpha and it doesn't works) Wh= en > > I put the CD into my drive, and I boot from it, it appears the FreeBSD > > booting MENU, and I choose 1 (default)(I also tried with single user, > > ACPI disabled, safe mode) and it starts loading the devices, but, almost > > in the end of that (I said almost because I have a desktop and there it > > works OK, and when the following message appears, is almost the finish) > > the loading process stucks in a line that says: > > > > Timecounter ticks every 1.000 msec > > > > And the HD led keeps turned on, but the CD drive led turns off (I mean > > it's not reading anything from CD).OK, be patiently you could say, but,= I > > have waited 2 hours or more and int doesn't seem to progress. THE > > FOLLOWING IS JUST FOR GIVE YOU MORE IDEA THAT MY PROBLEM IS: I had > > installed Ubuntu linux (I am pretty sure FreeBSD is more powerful than > > linux, that's why I didn't keep Ubuntu), I said that because Ubuntu is > > for i386 arquitecture and it is not too compatible as FreeBSD, I think, > > if it runs linux, it sure runs FreeBSD (and my laptop's arquitecture is > > not extraordinary, I think is pretty common)! > > > > I have asked on freebsd-question (they sent me here) and they confirm > > that my arquitecture is i386, so I have the right CD, and which I said,= I > > installed FreeBSD in my desktop but in an external (USB) Hard Drive, wh= en > > I boot from this, it stucks at the same line, so my CD drive is ok, I > > really want to install it in my laptop because I almost always out home > > (university). I really don't know where is the real problem, but I was > > wondering if changing some variables with 6 (go to prompt) and disabling > > some drives or something > > Hi Sergio, > search the archives, i've seen a couple of posts about people's computers > stuck @ 1,000 msec . ( u should let it sit for a while...i vaguely rememb= er > in mine getting unstuck after 5 minutes or not...i solved it, but i cant > remember what it was). > > anyway, have you tried breaking the menu, disabling APIC and then booting? > > my laptops havent been able to boot unless I did that. now i just have > hint.apic.0.disabled=3D"1" > > in /boot/loader.conf.local > > > > _________________________ > {Beto|Norberto|Numard} Meijome Yes, I use a DV9010us. Works fine, once you use the first BIOS instead of t= he=20 upgrades. Don From owner-freebsd-mobile@FreeBSD.ORG Sat Jul 28 00:34:56 2007 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6655916A41F for ; Sat, 28 Jul 2007 00:34:56 +0000 (UTC) (envelope-from duncan.fbsd@gmail.com) Received: from smtp101.sbc.mail.mud.yahoo.com (smtp101.sbc.mail.mud.yahoo.com [68.142.198.200]) by mx1.freebsd.org (Postfix) with SMTP id 12CD813C494 for ; Sat, 28 Jul 2007 00:34:55 +0000 (UTC) (envelope-from duncan.fbsd@gmail.com) Received: (qmail 35988 invoked from network); 27 Jul 2007 23:34:55 -0000 Received: from unknown (HELO pres1750.airedalians.com) (donaldj@ameritech.net@75.7.74.134 with plain) by smtp101.sbc.mail.mud.yahoo.com with SMTP; 27 Jul 2007 23:34:55 -0000 X-YMail-OSG: M8qdcKgVM1meWxooDvna8BGueeG6Rw9D0W6jIyeVCTXI70T32FmaJ_fFCoZelVjI19gEDRsFhZixBjwxOjQTKgA4J9Iaxd_whJ_AJI6PbDzDtD7oIwDYsn0PEVIp8Q-- From: "Donald J. O'Neill" To: freebsd-mobile@freebsd.org Date: Fri, 27 Jul 2007 18:34:48 -0500 User-Agent: KMail/1.9.7 References: <46AA27C9.5020607@oi.com.br> In-Reply-To: <46AA27C9.5020607@oi.com.br> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707271834.49598.duncan.fbsd@gmail.com> Cc: Carlos Porto Filho Subject: Re: Pavilion dv9000 X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Jul 2007 00:34:56 -0000 On Friday 27 July 2007 12:13:45 pm Carlos Porto Filho wrote: > does anyone here use freebsd in a hp pavilion 9010? > _______________________________________________ > 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" Hi Carlos, As a matter of fact, I use a DV9010us. If you're wondering how to do it, you have to change the BIOS to the F.1A version. Any other version will either not work at all, or will work as a single cpu and at about half speed. There is one other thing: I use it as an i386, nVidia doesnt have a driver for amd64, only i386. At the time I installed FreeBSD, the nv driver would only display in 800xwhatever which looked pretty bad. Don