From owner-freebsd-alpha Sun Dec 15 4:41:34 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C402B37B401 for ; Sun, 15 Dec 2002 04:41:32 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F9C943EA9 for ; Sun, 15 Dec 2002 04:41:32 -0800 (PST) (envelope-from mux@freebsd.org) Received: by elvis.mu.org (Postfix, from userid 1920) id 347F5AE23A; Sun, 15 Dec 2002 04:41:32 -0800 (PST) Date: Sun, 15 Dec 2002 04:41:32 -0800 From: Maxime Henrion To: Andrew Gallatin Cc: Christian Weisgerber , freebsd-alpha@FreeBSD.ORG Subject: Re: cvs commit: www/en/projects/busdma index.sgml style.css (fwd) Message-ID: <20021215124132.GI27086@elvis.mu.org> References: <20021209194400.GA27086@elvis.mu.org> <15860.62239.549294.224934@grasshopper.cs.duke.edu> <20021214152341.GE27086@elvis.mu.org> <15867.61754.299505.858101@grasshopper.cs.duke.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <15867.61754.299505.858101@grasshopper.cs.duke.edu> User-Agent: Mutt/1.4i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Andrew Gallatin wrote: > > Christian Weisgerber writes: > > All mbufs or mbuf clusters exhausted, please see tuning(7). > > I have > > xl0: <3Com 3c905B-TX Fast Etherlink XL> port 0x10000-0x1007f mem 0x41322000-0x4132 207f irq 10 at device 11.0 on pci0 > > So the problem must be in the code path for the older cards.. > (my 905B uses different transmit and encap functions) > > Ah, I see it. The mbuf does not seem to be recorded in the ring if > the dmamap_load_mbuf succeeds in xl_encap(). Can you try the > following untested patch, please? (on top of Maxime's earlier patch). > > Interesting.. I see one nasty pre-existing condition that might cause > a memory leak. What happens if xl_encap() fails? Ugh, that should > be fixed too! This problem should be fixed in the updated patch at the same URL. It's true that there are still some error handling problems in my patch. I actually should have said this is a first draft patch and I intended to clean it up :-). Can someone with an older card (those who *don't* print "detected 3c905B or higher") test the updated patch ? I don't have any of these cards so I can't test it myself. Thanks, Maxime To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Dec 15 8:13:15 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 827D937B401 for ; Sun, 15 Dec 2002 08:13:14 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05F6843ED1 for ; Sun, 15 Dec 2002 08:13:14 -0800 (PST) (envelope-from mux@freebsd.org) Received: by elvis.mu.org (Postfix, from userid 1920) id A4BDBAE1C6; Sun, 15 Dec 2002 08:13:08 -0800 (PST) Date: Sun, 15 Dec 2002 08:13:08 -0800 From: Maxime Henrion To: Andrew Gallatin Cc: Christian Weisgerber , freebsd-alpha@FreeBSD.ORG Subject: Re: cvs commit: www/en/projects/busdma index.sgml style.css (fwd) Message-ID: <20021215161308.GL27086@elvis.mu.org> References: <20021209194400.GA27086@elvis.mu.org> <15860.62239.549294.224934@grasshopper.cs.duke.edu> <20021214152341.GE27086@elvis.mu.org> <15867.61754.299505.858101@grasshopper.cs.duke.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <15867.61754.299505.858101@grasshopper.cs.duke.edu> User-Agent: Mutt/1.4i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Andrew Gallatin wrote: > > Christian Weisgerber writes: > > All mbufs or mbuf clusters exhausted, please see tuning(7). > > I have > > xl0: <3Com 3c905B-TX Fast Etherlink XL> port 0x10000-0x1007f mem 0x41322000-0x4132 207f irq 10 at device 11.0 on pci0 > > So the problem must be in the code path for the older cards.. > (my 905B uses different transmit and encap functions) > > Ah, I see it. The mbuf does not seem to be recorded in the ring if > the dmamap_load_mbuf succeeds in xl_encap(). Can you try the > following untested patch, please? (on top of Maxime's earlier patch). > > Interesting.. I see one nasty pre-existing condition that might cause > a memory leak. What happens if xl_encap() fails? Ugh, that should > be fixed too! I have uploaded a new patch. It should fix the mbuf leak problem, makes it so bus_dmamap_create() and bus_dmamap_destroy() are called only one time and not everytime we map a new mbuf as you suggested, adds some missing error handling in the xl_encap() and xl_encap_90xB() functions and fixes a few minor nits. The URL is still http://mu.org/~mux/if_xl.patch. If people with cards prior than 90xB could test it, it would help me a lot since I don't have any of those cards. Also, I'm interested in benchmarks before/after applying this patch. I think and hope there shouldn't be any measurable difference :-). Cheers, Maxime To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Dec 15 8:31:16 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6D5337B401 for ; Sun, 15 Dec 2002 08:31:15 -0800 (PST) Received: from mail.inka.de (quechua.inka.de [193.197.184.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D78243ED1 for ; Sun, 15 Dec 2002 08:31:14 -0800 (PST) (envelope-from mailnull@mips.inka.de) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with gbsmtp id 18Nbfc-0006Em-00; Sun, 15 Dec 2002 17:31:12 +0100 Received: from kemoauc.mips.inka.de (localhost [127.0.0.1]) by kemoauc.mips.inka.de (8.12.6/8.12.6) with ESMTP id gBFGCbdP073915 for ; Sun, 15 Dec 2002 17:12:37 +0100 (CET) (envelope-from mailnull@localhost.mips.inka.de) Received: (from mailnull@localhost) by kemoauc.mips.inka.de (8.12.6/8.12.6/Submit) id gBFGCbgO073914 for freebsd-alpha@freebsd.org; Sun, 15 Dec 2002 17:12:37 +0100 (CET) From: naddy@mips.inka.de (Christian Weisgerber) Subject: Re: cvs commit: www/en/projects/busdma index.sgml style.css (fwd) Date: Sun, 15 Dec 2002 16:12:36 +0000 (UTC) Message-ID: References: <20021214152341.GE27086@elvis.mu.org> <15867.61754.299505.858101@grasshopper.cs.duke.edu> Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-alpha@freebsd.org Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Andrew Gallatin wrote: > Ah, I see it. The mbuf does not seem to be recorded in the ring if > the dmamap_load_mbuf succeeds in xl_encap(). Can you try the > following untested patch, please? Yes, this is fine. -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Dec 15 11:30:43 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3820C37B401; Sun, 15 Dec 2002 11:30:42 -0800 (PST) Received: from mail.inka.de (quechua.inka.de [193.197.184.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7427843E4A; Sun, 15 Dec 2002 11:30:41 -0800 (PST) (envelope-from naddy@mips.inka.de) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with gbsmtp id 18NeTI-0000Tk-01; Sun, 15 Dec 2002 20:30:40 +0100 Received: from kemoauc.mips.inka.de (localhost [127.0.0.1]) by kemoauc.mips.inka.de (8.12.6/8.12.6) with ESMTP id gBFIvdmb003534; Sun, 15 Dec 2002 19:57:39 +0100 (CET) (envelope-from naddy@localhost.mips.inka.de) Received: (from naddy@localhost) by kemoauc.mips.inka.de (8.12.6/8.12.6/Submit) id gBFIvdG4003533; Sun, 15 Dec 2002 19:57:39 +0100 (CET) Date: Sun, 15 Dec 2002 19:57:39 +0100 From: Christian Weisgerber To: Maxime Henrion Cc: freebsd-alpha@FreeBSD.ORG Subject: Re: cvs commit: www/en/projects/busdma index.sgml style.css (fwd) Message-ID: <20021215185739.GA3348@kemoauc.mips.inka.de> References: <20021209194400.GA27086@elvis.mu.org> <15860.62239.549294.224934@grasshopper.cs.duke.edu> <20021214152341.GE27086@elvis.mu.org> <15867.61754.299505.858101@grasshopper.cs.duke.edu> <20021215161308.GL27086@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021215161308.GL27086@elvis.mu.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Maxime Henrion: > The URL is still http://mu.org/~mux/if_xl.patch. If people with cards > prior than 90xB could test it, it would help me a lot since I don't have > any of those cards. Works for me. NFS read/write, X11, and minor stuff. xl0: <3Com 3c905-TX Fast Etherlink XL> port 0x10200-0x1023f irq 2 at device 5.0 on pci0 While you are messing with that driver, do we really want to print each and all of these? xl0: bad receive status -- packet dropped -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Dec 15 13: 1: 5 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01DD037B401 for ; Sun, 15 Dec 2002 13:01:05 -0800 (PST) Received: from bear.orl.ru (bear.orl.ru [213.59.67.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id A65EA43E4A for ; Sun, 15 Dec 2002 13:01:03 -0800 (PST) (envelope-from rxm@mail.ru) Received: from odb ([213.59.67.37]) by bear.orl.ru (8.11.1/8.11.1) with SMTP id gBFKvjZ50706 for ; Sun, 15 Dec 2002 23:57:45 +0300 (MSK) Date: Sun, 15 Dec 2002 23:57:45 +0300 (MSK) Message-Id: <200212152057.gBFKvjZ50706@bear.orl.ru> From: RxMax Laboratory To: freebsd-alpha@freebsd.org Subject: Ïðîãðàììèðîâàíèå è äèçàéí Reply-To: rxm@mail.ru Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Âàì íóæíà ïðîãðàììà, àíàëîãîâ êîòîðîé åùå íå ñóùåñòâóåò â êîìïüþòåðíîì ìèðå? Èëè Âû õîòèòå, ÷òîáû Âàø ñàéò ñòàë Âàøèì äîñòîéíûì ëèöîì? Âàì òðåáóþòñÿ óñëóãè ïðîôåññèîíàëüíûõ ïðîãðàììèñòîâ è äèçàéíåðîâ? Äëÿ ýòîãî íå îáÿçàòåëüíî êóäà-òî èäòè. Âû ìîæåòå çàêàçàòü íóæíîå Âàì ïðîãðàììíîå îáåñïå÷åíèå èëè äèçàéí Âàøåãî ñàéòà, íå âûõîäÿ èç îôèñà. Ìû ðåàëèçóåì Âàøè ïðîåêòû â ñðîê è ïî ðàçóìíûì öåíàì, è ãàðàíòèðóåì êà÷åñòâî ñâîèõ ðàáîò. Ïðîñòî ñâÿæèòåñü ñ íàìè ïî e-mail rxmax@freemail.ru Ïîæàëóéñòà ïîëüçóéòåñü äëÿ ñâÿçè òîëüêî óêàçàííûì e-mail àäðåñîì, à íå îáðàòíûì àäðåñîì äàííîãî ñîîáùåíèÿ! Ïðîåêòíàÿ ñòóäèÿ "RxMax Software" Äàííàÿ ðàññûëêà ïðîèçâåäåíà â ñîîòâåòñòâèè ñ ÷.4 ñò.29 Êîíñòèòóöèè ÐÔ. Âàø ýëåêòðîííûé àäðåñ ïîëó÷åí èç îòêðûòûõ èñòî÷íèêîâ ÈÍÒÅÐÍÅÒ. ÄÀÍÍÀß ÐÀÑÑÛËÊÀ ßÂËßÅÒÑß ÐÀÇÎÂÎÉ (äóáëèðîâàíèå âîçìîæíî òîëüêî â ñèëó òåõíè÷åñêèõ ñáîåâ). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Dec 16 3:33:16 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31F0237B401 for ; Mon, 16 Dec 2002 03:33:15 -0800 (PST) Received: from postino.fi.infn.it (postino.fi.infn.it [192.84.145.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0A4F43EC2 for ; Mon, 16 Dec 2002 03:33:09 -0800 (PST) (envelope-from Riccardo.Veraldi@fi.infn.it) Received: from dijkstra.fi.infn.it (dijkstra.fi.infn.it [192.84.145.13]) by postino.fi.infn.it (8.12.6/8.12.6) with ESMTP id gBGBWwg2002409; Mon, 16 Dec 2002 12:32:59 +0100 (CET) Received: by dijkstra.fi.infn.it (Postfix, from userid 1000) id C6F2536D81; Mon, 16 Dec 2002 12:12:12 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by dijkstra.fi.infn.it (Postfix) with ESMTP id 90F8330C01; Mon, 16 Dec 2002 12:12:12 +0100 (CET) Date: Mon, 16 Dec 2002 12:12:12 +0100 (CET) From: Riccardo.Veraldi@fi.infn.it X-X-Sender: fddi@dijkstra.fi.infn.it To: Marco Beishuizen Cc: FreeBSD alpha mailing list Subject: Re: sound on PWS600au In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-RAVMilter-Version: 8.4.1(snapshot 20020920) (postino.fi.infn.it) X-Spam-Status: No, hits=-99.7 required=5.9 tests=IN_REP_TO,NO_REAL_NAME,QUOTED_EMAIL_TEXT,SPAM_PHRASE_00_01, TO_BE_REMOVED_REPLY,USER_AGENT_PINE,USER_IN_WHITELIST version=2.43 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org this is ony my miata PWS500a device pcm0 device sbc0 it will work on yours too I think Rick On Sat, 14 Dec 2002, Marco Beishuizen wrote: > > How do I configure the soundcard of a PWS600au (an ESS1888)? Is it the > same as on an i386, with "device pcm" and "device sbc" in the kernel > configuration file? Or do I have to do something else. > > I use FreeBSD/alpha 4.7-RELEASE. > > Thanks, > > Marco > -- > F: When into a room I plunge, I > Sometimes find some VIOLET FUNGI. > Then I linger, darkly brooding > On the poison they're exuding. > -- The Roguelet's ABC > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-alpha" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Dec 16 6:11:55 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E761C37B401 for ; Mon, 16 Dec 2002 06:11:54 -0800 (PST) Received: from qescan3.qgraph.com (QESCAN3.qgraph.com [206.158.124.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CF3D43EDE for ; Mon, 16 Dec 2002 06:11:54 -0800 (PST) (envelope-from Aaron.Schroeder@qg.com) Received: by sxsmtp3.qgraph.com with Internet Mail Service (5.5.2656.59) id ; Mon, 16 Dec 2002 08:11:47 -0600 Message-ID: <025596A38A894B45AFE62346A6BF47464E3340@waexch1.qgraph.com> From: "Schroeder, Aaron" To: "'freebsd-alpha@freebsd.org'" Subject: 5.0DP2 and 5305 Date: Mon, 16 Dec 2002 08:11:39 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2656.59) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello all, I have a question that is probably really silly on my part, but I am scratching my head, hopefully someone can give me some advice. I was installing 5.0DP2 onto a 2100 last night, I completed the install, BSD warned me that if I leave sysinstall that the system will halt, typical so far, then my server re-booted, I ended up at the P00>>> prompt, then I typed in 'boot', BSD started to load, then I was greeted with the "boot" prompt. I typed in boot again, and things went along fine. There were no errors, messages, warnings, etc. saying that there was a problem, everyting looked normal. I first noticed this problem on my AS4000 machine when 5.0DP1 was out, but since the release of 5.0DP2, that machine is running like a champ. So, I decided to load a 5305 that I have here with 5.0DP2, and the same thing happened as on the 2100! Except only this time, when I typed in 'boot' and enter, it wouldn't boot, it couldn't find the kernel for some reason. I don't have console output for this problem, my laptop died on me, I am in the process of getting consoles on these machines in case someone should need it. But this sounds like a procedural problem on my part. Anyone have any ideas? AJ Schroeder To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Dec 16 10:10:58 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05CAB37B401 for ; Mon, 16 Dec 2002 10:10:57 -0800 (PST) Received: from smtp08.wxs.nl (smtp08.wxs.nl [195.121.6.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6721243ED1 for ; Mon, 16 Dec 2002 10:10:55 -0800 (PST) (envelope-from mbeis@wxs.nl) Received: from tsunami.bsd ([213.10.35.60]) by smtp08.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id H7856503.FFL; Mon, 16 Dec 2002 19:10:53 +0100 Date: Mon, 16 Dec 2002 19:10:53 +0100 (CET) From: Marco Beishuizen Reply-To: Marco Beishuizen To: Riccardo.Veraldi@fi.infn.it Cc: FreeBSD alpha mailing list Subject: Re: sound on PWS600au In-Reply-To: Message-ID: References: FreeBSD: Homepage: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org That doesn't work. When I try to compile my kernel with those options, it exits with lots of messages like: ../../dev/sound/isa/ad1816.c:467: 'channel_setblocksize_desc' undeclared here (not in a function) ../../dev/sound/isa/ad1816.c:467: 'initializer element is not constant ../../dev/sound/isa/ad1816.c:467: (near initialization for 'ad1816chan_methods[4].desc') etc... Marco. On Mon, 16 Dec 2002, the wise Riccardo.Veraldi@fi.infn.it spoke, and said: > > this is ony my miata PWS500a > > device pcm0 > device sbc0 > > it will work on yours too I think > > Rick > > > On Sat, 14 Dec 2002, Marco Beishuizen wrote: > > > > > How do I configure the soundcard of a PWS600au (an ESS1888)? Is it the > > same as on an i386, with "device pcm" and "device sbc" in the kernel > > configuration file? Or do I have to do something else. > > > > I use FreeBSD/alpha 4.7-RELEASE. > > > > Thanks, > > > > Marco > > -- > > F: When into a room I plunge, I > > Sometimes find some VIOLET FUNGI. > > Then I linger, darkly brooding > > On the poison they're exuding. > > -- The Roguelet's ABC > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-alpha" in the body of the message > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-alpha" in the body of the message > -- Stupidity got us into this mess -- why can't it get us out? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Dec 16 10:43:19 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE40337B401 for ; Mon, 16 Dec 2002 10:43:18 -0800 (PST) Received: from cma2600.org (h00104b2fcc85.ne.client2.attbi.com [24.147.198.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BB7243EB2 for ; Mon, 16 Dec 2002 10:43:18 -0800 (PST) (envelope-from setient@cma2600.org) Received: by cma2600.org (Postfix, from userid 1001) id DB51D32D; Mon, 16 Dec 2002 13:42:03 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by cma2600.org (Postfix) with ESMTP id 598FE9F; Mon, 16 Dec 2002 13:42:03 -0500 (EST) Date: Mon, 16 Dec 2002 13:42:02 -0500 (EST) From: Ronald Cotoni To: Falko Meyer Cc: Ronald Cotoni , "" Subject: Re: 433 au In-Reply-To: <3DEF3D9E.1A985CCA@yahoo.de> Message-ID: <20021216134139.I47593-100000@cma2600.org> References: <20021202092405.I33855-100000@trillian.santala.org> <20021202095350.I81474-100000@cma2600.org> <3DEF3D9E.1A985CCA@yahoo.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org booting with a netbsd disk and dd if=/dev/zero of=/dev/sd0 didn't work it is still reporting errors with it On Thu, 5 Dec 2002, Falko Meyer wrote: > Ronald Cotoni wrote: > > > > should i let dd finish or not? > > You can, but it should not be important. Ist should overwrite a few of > the fist megabytes on the disk: > > > > You can also specify bs and count if you like or just let that run for a > > > few seconds. Then reboot with your preferred installation media. > > > Greetings, > Falko Meyer > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-alpha" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Dec 16 14:21: 4 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C274037B401 for ; Mon, 16 Dec 2002 14:21:03 -0800 (PST) Received: from pimout2-ext.prodigy.net (pimout2-ext.prodigy.net [207.115.63.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5BD743E4A for ; Mon, 16 Dec 2002 14:21:02 -0800 (PST) (envelope-from edwincampbell@earthlink.net) Received: from amd850 (adsl-67-121-191-73.dsl.sntc01.pacbell.net [67.121.191.73]) by pimout2-ext.prodigy.net (8.12.3 da nor stuldap/8.12.3) with ESMTP id gBGML1DL087836 for ; Mon, 16 Dec 2002 17:21:02 -0500 From: "Edwin Campbell" To: Subject: PWS 600a Console Password Reset Date: Mon, 16 Dec 2002 14:22:20 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello All PROBLEM!! - I have a DEC PWS 600a and the console password is set. I have tried different jumper settings on the two three-way jumpers on the Main Logic Board, entitled: PW UNLOCK - J38 and UNLOCK - J12. I have also tried removing the battery, etc. but as the firmware is stored in an AMD29LV800B Flash soldered to the board.! I doubt anything will work...Other than: There is a 10-way header entitled: SROM PORT - J14, which I suspect needs a special programmer...??? Any help greatly appreciated. Regards Edwin Campbell edwincampbell@earthlink.net (408) 667-2552 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Dec 16 15:45:43 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 338F537B401 for ; Mon, 16 Dec 2002 15:45:35 -0800 (PST) Received: from yahoo.com (adsl-67-115-122-194.dsl.sntc01.pacbell.net [67.115.122.194]) by mx1.FreeBSD.org (Postfix) with SMTP id 5489C43EB2 for ; Mon, 16 Dec 2002 15:38:02 -0800 (PST) (envelope-from MarketingProducts1215@yahoo.com) From: [ToolsForMarketing] To: Reply-To: Subject: 50% off All Lists: Publicity - Libraries - Bookstores - Film Producers - Art Galleries - Record Stores - Custom (more) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <20021216233802.5489C43EB2@mx1.FreeBSD.org> Date: Mon, 16 Dec 2002 15:38:02 -0800 (PST) Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ***LIMITED TIME SALE - ALL LISTS 50% OFF MUST MENTION SALE WHEN ORDERING*** -------------------------------------------------------------- UNLIMITED USE LISTS . . .DOWNLOAD WITHIN MINUTES. -------------------------------------------------------------- NEW LISTS: TRAVEL MEDIA, SCIENCE PROFESSORS, SCIENCE CLUBS, PASTORS & CHURCHES, BIBLE COLLEGE & SEMINARY PROFESSORS, PET MEDIA, POLITICAL MEDIA, NEW AGE MEDIA, SCIENTIFIC JOURNALS, -------------------------------------------------------------- IF WE DO NOT HAVE THE LIST YOU NEED, WE WILL COMPILE A CUSTOM LIST ACCORDING TO YOUR SPECIFICATIONS -------------------------------------------------------------- Call to place your order or for more information. US & CANADA TOLL-FREE NUMBER: 888 330 4919 (24/7) If you would like more information via email, please write us at sendlistinfo@netscape.net - Thank you. -------------------------------------------------------------- LIBRARIES (BOOKSTORES, MEDIA AND OTHER LISTS BELOW . . .) LISTS INCLUDE: Name, Address, phone, fax and email address (when available). AVAILABLE FORMATS: Excel Spreadsheet & Text Database 1,200 U.S. Public Libraries WITH EMAIL ADDRESSES - $109 - NOW $54.50 1,200 U.S. Public Libraries - $89 - NOW $44.50 1,000 U.S. University Libraries WITH EMAIL ADDRESSES - $89 - NOW $44.50 1,000 U.S. University Libraries - $69 - NOW $34.50 400+ Community College Libraries WITH EMAIL ADDRESSES - $59 - NOW $29.50 400+ Community College Libraries - $49 - NOW $24.50 1,093 U.S. K-12 Private School Libraries WITH EMAIL ADDRESSES - $109 - NOW $54.50 1,093 U.S. K-12 Private School Libraries - $89 - NOW $44.50 200 U.K. Public Libraries WITH EMAIL ADDRESSES - $49 - NOW $24.50 200 U.K. Public Libraries - $39 - NOW $19.50 250 U.K. University Libraries WITH EMAIL ADDRESSES - $49 - NOW $24.50 250 U.K. University Libraries - $39 - NOW $19.50 528 Australian Public Libraries WITH EMAIL ADDRESSES - $79 - NOW $39.50 528 Australian Public Libraries - $69 - NOW $34.50 279 Australian College & Univ. Libraries WITH EMAIL ADDRESSES - $49 - NOW $24.50 279 Australian College & Univ. Libraries - $39 - NOW $19.50 200 Canadian Libraries WITH EMAIL ADDRESSES - $49 - NOW $24.50 200 Canadian Libraries - $39 - NOW $19.50 100 New Zealand Libraries WITH EMAIL ADDRESSES - $39 - NOW $19.50 100 New Zealand Libraries - $29 - NOW $14.50 1,000 U.S. Medical Libraries - $79 - NOW $34.50 313 U.S. Law Libraries - $49 - NOW $24.50 193 U.S. Religious Libraries - $39 - NOW $19.50 ---------------------------------------------- BOOKSTORES LIST INCLUDES: Name, Address, phone, fax and email address (when available). AVAILABLE FORMATS: Excel Spreadsheets & Text Databases 1,900+ Independent Bookstores WITH EMAIL ADDRESSES - $149 - NOW $74.50 1,900+ Independent Bookstores - $129 - NOW $64.50 1,900+ College Bookstores WITH EMAIL ADDRESSES - $149 - NOW $74.50 1,900+ College Bookstores - $129 - NOW $64.50 3,000+ Christian Bookstores WITH EMAIL ADDRESSES - $169 - NOW $84.50 3,000+ Christian Bookstores - $149 - NOW $74.50 2,200+ Chain Bookstores - $129 - NOW $64.50 575+ Book Distributors & Chain HQs - WITH EMAIL ADDRESSES - $59 - NOW $29.50 575+ Book Distributors & Chain HQs - $49 - NOW $24.50 675 Canadian General Bookstores WITH EMAIL ADDRESSES - $69 - NOW $34.50 675 Canadian General Bookstores - $59 - NOW $29.50 175 Canadian University Bookstores - WITH EMAIL ADDRESSES - $39 175 Canadian University Bookstores - $29 - NOW $14.50 550+ New Age Bookstores - WITH EMAIL ADDRESSES - $59 - NOW $29.50 550+ New Age Bookstores - $49 - NOW $24.50 125 African-American Bookstores - $29 - NOW $14.50 You will be able to download your lists WITHIN MINUTES. ----------------------------------------------- MEDIA LISTS LISTS INCLUDE: Contact Name, Title/Position, Company, Address, Phone, Fax and Email Address (when available) AVAILABLE FORMATS: Excel Spreadsheet and Microsoft Word U.S. National Media List (1000+ Contacts) - $99 - NOW $49.50 "Includes national business, consumer, and entertainment magazine contacts, syndicated talk shows, Newswire contacts, network news, cable news and entertainment programs." Australian National Media LisT (360+ Contacts) - $99 - NOW $49.50 "Australia's finest newspapers, magazines and television news and entertainment contacts are included in this list." Canadian National Media (590+ Contacts) - $99 - NOW $49.50 "Provides quality contacts from diverse Canadian TV, Magazine, and Newspaper outlets." UK Media List (500 Contacts) - $99 - NOW $49.50 "Contact reporters, editors, writers and producers from the UK's best media outlets. PBS Stations (800+ Contacts) - $99 - NOW $49.50 "Local and national contacts are featured in this extensive public television database." National Public Radio - NPR (265 Contacts) - $99 - NOW $49.50 "Features program directors and producers at local public radio stations as well as contacts at national syndicated shows including Diane Rehm and Fresh Air with Terry Gross." Drive Time Radio - Top 100 Markets (600 Contacts) - $99 - NOW $49.50 "Reach millions of people during drive-time shows at top stations." Newspapers - Top 100 Papers (1,100+ Contacts) - $99 - NOW $49.50 Pitch story ideas to editors and reporters at the top 100 newspapers throughout America. Local TV News (North Region) (840+ Contacts) - $99 - NOW $49.50 Local TV News (Midwest Region) (870+ Contacts) - $99 - NOW $49.50 Local TV News (West Region) (890+ Contacts) - $99 - NOW $49.50 Local TV News (South Region) (1,100+ Contacts) - $129 - NOW $64.50 Local TV News (All Regions) (3,700+ Contacts) - $249 - NOW $124.50 "Contact the people who can present your idea or work to a very large audience. Individual contacts include: news editors, assignment editors, producers, segment producers, weekend editors, and public affairs directors. Mens Interest Media (400 Contacts) - $99 - NOW $49.50 "Connect with contacts at publications like Esquire, GQ, Maxim, Men's Health and more." Womens Interest Media (1,350+ Contacts) - $149 - NOW $74.50 "Editorial contacts at major women's consumer magazines, women's editors at major newspapers and other publications, and producers at broadcast outlets are included in this comprehensive list." Teen Interest Media (216 Contacts) - $99 - NOW $49.50 "Reporters and editors at publications like Seventeen, Teen People, and CosmoGIRL! are now at your fingertips." Family & Parenting Media List (789 Contacts) - $99 - NOW $49.50 "This list reaches the media that cover child and parenting issues, including contacts at the major dailies, newsweeklies and parenting segment producers at major broadcast networks." Eclectic Newsweeklies (575+ Contacts) - $99 - NOW $49.50 "Reach a diverse group of non-daily free-circulation papers distributed in all of the major metropolitan areas of North America. Each paper has a distinct, local identity that sets it apart from the mainstream press in its market." College Radio Stations (520+ Contacts) - $99 - NOW $49.50 "Individual contacts include station manager, music director, program director, news director, among others." College Newspaper Contacts (1,400+ Contacts) - $99 - NOW $49.50 "Reach Generation X through over 1,400 college newspapers. Don't overlook this lucrative market." Travel Media (2,600+ Contacts) - $199 - NOW $99.50 "The mother of all travel media lists." Pet Media (435 Contacts) - $99 - NOW $49.50 "Covers every aspect of all things pet-related." Fashion & Beauty List (1,400 Contacts) - $149 - NOW $74.50 "You'll reach editors at major fashion publications including Cosmo, Elle, Glamour and InStyle. Men's fashion contacts include Esquire, FHM, GQ. and Stuff. There are also fashion and beauty editors at major dailies and major national magazines." Sex & Relationships Media List (402 Contacts) - $99 - NOW $49.50 "The most comprehensive list available of editors, reporters and producers covering every aspect of sex and relationships." Gay and Lesbian Media List (260 Contacts) - $99 - NOW $49.50 "Reach media contacts at national gay and lesbian publications including, The Advocate, Planet Out and Out. Local publications include the Houston Voice, San Francisco Frontiers and Seattle Gay News." Book Industry Media List (502 Contacts) - $99 - NOW $49.50 "Includes book reviewers from major newspapers, consumer magazines, trade publications and producers from shows that schedule authors, including Good Morning America, 20/20 and Nightline." Music Industry Media List (1,142 Contacts) - $149 - NOW $74.50 "Reach reporters, critics and producers at newspapers, magazines and television shows covering the music industry. There are contacts at internet publications that focus on music." Motion Picture, Film & Video (695 Contacts) - $99 - NOW $49.50 "Includes movie critics, entertainment editors and reporters at the top industry publications, major newspapers, consumer magazines and television programs." Sports Media List (427 Contacts) - $99 - NOW $49.50 includes contacts at national sports magazines, sports networks, newspapers, as well as television and radio stations. Political Media List (1,100+ Contacts) - $149 - NOW $74.50 "This list covers every aspect of the political debate whether in print or broadcast. This list is a must for those with serious issues to publicize." African American Media List (1500 Contacts) - $149 - NOW $74.50 "Contacts at national black consumer and business publications, regional newspapers and television stations." Environmental Media List (763 Contacts) - $99 - NOW $49.50 "Reach numerous environmental editors, writers and reporters at major newspapers, national magazines, environmental publications, and television networks." Scientific Journals (500 Contacts) - $99 - NOW $49.50 "Reach editors at journals covering Biology, Chemistry, Genetics, Astronomy and everything in between." New Age Media (250+ Contacts) - $99 - NOW $49.50 "Reach contacts at media outlets that specialize in Astrology, psychic phenomena, angels, near death experiences and everything in between." Christian Media List (370 Contacts) - $99 - NOW $49.50 "Reach top contacts at the largest Christian broadcasting outlets, religion editors and reporters at the top dailies and newsweeklies, and editors at the top Christian publications." ------------------------------------------------- TV & FILM PRODUCERS, DIRECTORS, DEVELOPMENT EXECS, (MORE) 3,000+ Contacts - $149 (Entire List) - NOW $74.50 800+ Producers Only - $99 - NOW $49.50 650+ Development, Creative & Acquisitions Contacts Only - $89 - NOW $44.50 Lists Include: Contact Name, Title, Company, Address, Phone and Fax Number Available Formats: Excel Spreadsheet and Text Database PUBLISHING COMPANY CONTACTS 1,700+ U.S. Publishing Contacts - $99 - NOW $49.50 300 Art Publishing Contacts - $49 - NOW $24.50 List Includes: Contact Name, Title, Company, Address, Phone, Number, Fax Number and Email Address (when available) Available Formats: Excel Spreadsheet and Text Database LITERARY AGENTS 300+ Contacts - $49 - NOW $24.50 List Includes: Contact Name, Title, Company, Address, Phone, Number, Fax Number and Email Address (when available) Available Formats: Excel Spreadsheet and Text Database MUSIC AGENTS/MANAGERS 150+ Contacts - $29 - NOW $14.50 List Includes: Contact Name, Title, Company, Address, Phone, Fax Number and Email Address (when available) Available Formats: Excel Spreadsheet and Text Database SCIENCE PROFESSORS 3,500 Contacts - $149 - NOW $74.50 Departments Included: Biology, Chemistry, Astronomy, Anthropolgy, Physics, Geology, Mathematics, more. List Includes: Contact Name, Department, University, Address, Phone, Fax and Email Available Formats: Excel Spreadsheet and Text Database SCIENCE CLUBS 1,000 Contacts - $99 - NOW $49.50 List Includes: Contact Name, Club Name, Email address, (Address & Phone when available) Available Formats: Excel Spreadsheet and Text Database PASTORS & CHURCHES 2,000 Contacts - $129 - NOW $64.50 (Various Denominations) List Includes: Pastors Name, Church, Address, Phone, Fax and Email. Available Formats: Excel Spreadsheet and Text Database BIBLE COLLEGE & SEMINARY PROFESSORS 2,000 Contacts - $129 - NOW $64.50 List Includes: Contact Name, Department, School, Address, Phone, Fax and Email. Available Formats: Excel Spreadsheet and Text Database VIDEO STORE LISTS 1573 Independent Video Stores (West) - $79 - NOW $34.50 2556 Independent Video Stores (Midwest) - $99 - NOW $49.50 2037 Independent Video Stores (East) - $99 - NOW $49.50 2987 Independent Video Stores (South) - $129- NOW $64.50 9150 Independent Video Stores (National)- $199- NOW $99.50 Lists Include: Store Name, Address and Phone Number Available Formats: Excel Spreadsheet and Text Database MUSIC STORE LISTS 997 Independent Music Stores (Midwest) - $79 - NOW $34.50 1215 Independent Music Stores (South) - $89 - NOW $44.50 1444 Independent Music Stores (East) - $89 - NOW $44.50 1355 Independent Music Stores (West) - $89 - NOW $44.50 5008 Independent Music Stores (National)- $249- NOW $124.50 Lists Include: Store Name, Address and Phone Number Available Formats: Excel Spreadsheet and Text Database ART GALLERY LISTS US National List WITH EMAIL ADDRESSES: $169 (1090 Galleries) US National List: $149 (1090 Galleries) - NOW $74.50 Southern US: $39 (140 Galleries) - NOW $19.50 Central US: $39 (150 Galleries) - NOW $19.50 Western US: $69 (272 Galleries) - NOW $34.50 Eastern US: $89 (530 Galleries) - NOW $44.50 United Kingdom: $69 (230 Galleries) - NOW $34.50 Canada: $49 (165 Galleries) - NOW $24.50 Australia: $29 (50 Galleries) - NOW $19.50 Lists Include: Gallery Name, Address, Phone Number and Fax Number Available Formats: Excel Spreadsheet and Text Database OUR GUARANTEE: We will refund postage (up to 34 cents per item) for any undeliverable addresses over 5% of the total list. We will also correct the undeliverable contacts and issue you an updated list. ------------------------ You will be able to download your lists WITHIN MINUTES. Call to place your order or for more information. US & CANADA TOLL-FREE NUMBER: 888 330 4919 (24/7) If you would like more information via email, please write us at sendlistinfo@netscape.net - Thank you. ------------------------------------------------------------------- To be removed from any future mailings, please send a message with your email address in the subject line to PublicityRemoval@netscape.net. Requests will be processed within 48 hours at that address only. Apologies for any inconvience. Thank you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Dec 16 16:28: 5 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDDB637B401 for ; Mon, 16 Dec 2002 16:28:04 -0800 (PST) Received: from pimout2-ext.prodigy.net (pimout2-ext.prodigy.net [207.115.63.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54BB643EC5 for ; Mon, 16 Dec 2002 16:28:04 -0800 (PST) (envelope-from edwincampbell@earthlink.net) Received: from amd850 (adsl-67-121-191-73.dsl.sntc01.pacbell.net [67.121.191.73]) by pimout2-ext.prodigy.net (8.12.3 da nor stuldap/8.12.3) with ESMTP id gBH0S2DL215192 for ; Mon, 16 Dec 2002 19:28:03 -0500 From: "Edwin Campbell" To: Subject: subscribe Date: Mon, 16 Dec 2002 16:29:20 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Dec 17 5:37:50 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A88B37B444 for ; Tue, 17 Dec 2002 05:37:48 -0800 (PST) Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1A9043EC5 for ; Tue, 17 Dec 2002 05:37:46 -0800 (PST) (envelope-from ticso@cicely8.cicely.de) Received: from cicely5.cicely.de (cicely5.cicely.de [IPv6:3ffe:400:8d0:301:200:92ff:fe9b:20e7]) by srv1.cosmo-project.de (8.12.5/8.12.5) with ESMTP id gBHDbeqd043924 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Tue, 17 Dec 2002 14:37:41 +0100 (CET) (envelope-from ticso@cicely8.cicely.de) Received: from cicely8.cicely.de (cicely8.cicely.de [10.1.1.10]) by cicely5.cicely.de (8.12.6/8.12.6) with ESMTP id gBHDbdfQ026979 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 17 Dec 2002 14:37:39 +0100 (CET) (envelope-from ticso@cicely8.cicely.de) Received: from cicely8.cicely.de (localhost [127.0.0.1]) by cicely8.cicely.de (8.12.6/8.12.6) with ESMTP id gBHDbcgV041574; Tue, 17 Dec 2002 14:37:39 +0100 (CET) (envelope-from ticso@cicely8.cicely.de) Received: (from ticso@localhost) by cicely8.cicely.de (8.12.6/8.12.6/Submit) id gBHDbbbu041573; Tue, 17 Dec 2002 14:37:37 +0100 (CET) Date: Tue, 17 Dec 2002 14:37:37 +0100 From: Bernd Walter To: Edwin Campbell Cc: freebsd-alpha@FreeBSD.ORG Subject: Re: PWS 600a Console Password Reset Message-ID: <20021217133736.GS29286@cicely8.cicely.de> Reply-To: ticso@cicely.de References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD cicely8.cicely.de 5.0-CURRENT i386 User-Agent: Mutt/1.5.1i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 16, 2002 at 02:22:20PM -0800, Edwin Campbell wrote: > > Hello All > > PROBLEM!! - I have a DEC PWS 600a and the console password is set. IIRC the scenario is the following. type login on the first serial on the password prompt press the halt key type enter. release the halt key if yours stay in. On the other hand this never worked for the AS600 on which I needed it. It ended in usoldering the NVRAM chip (A Dallas type). -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Dec 17 5:39: 2 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D65E837B401 for ; Tue, 17 Dec 2002 05:38:54 -0800 (PST) Received: from yahoo.com (qube.amerisec.net [66.13.113.10]) by mx1.FreeBSD.org (Postfix) with SMTP id C395143EC2 for ; Tue, 17 Dec 2002 05:38:18 -0800 (PST) (envelope-from MarketingProducts1215@yahoo.com) From: [ToolsForMarketing] To: Reply-To: Subject: 50% off All Lists: Publicity - Libraries - Bookstores - Film Producers - Art Galleries - Record Stores - Custom (more) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <20021217133818.C395143EC2@mx1.FreeBSD.org> Date: Tue, 17 Dec 2002 05:38:18 -0800 (PST) Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ***LIMITED TIME SALE - ALL LISTS 50% OFF MUST MENTION SALE WHEN ORDERING*** -------------------------------------------------------------- UNLIMITED USE LISTS . . .DOWNLOAD WITHIN MINUTES. -------------------------------------------------------------- NEW LISTS: TRAVEL MEDIA, SCIENCE PROFESSORS, SCIENCE CLUBS, PASTORS & CHURCHES, BIBLE COLLEGE & SEMINARY PROFESSORS, PET MEDIA, POLITICAL MEDIA, NEW AGE MEDIA, SCIENTIFIC JOURNALS, -------------------------------------------------------------- IF WE DO NOT HAVE THE LIST YOU NEED, WE WILL COMPILE A CUSTOM LIST ACCORDING TO YOUR SPECIFICATIONS -------------------------------------------------------------- Call to place your order or for more information. US & CANADA TOLL-FREE NUMBER: 888 330 4919 (24/7) If you would like more information via email, please write us at sendlistinfo@netscape.net - Thank you. -------------------------------------------------------------- LIBRARIES (BOOKSTORES, MEDIA AND OTHER LISTS BELOW . . .) LISTS INCLUDE: Name, Address, phone, fax and email address (when available). AVAILABLE FORMATS: Excel Spreadsheet & Text Database 1,200 U.S. Public Libraries WITH EMAIL ADDRESSES - $109 - NOW $54.50 1,200 U.S. Public Libraries - $89 - NOW $44.50 1,000 U.S. University Libraries WITH EMAIL ADDRESSES - $89 - NOW $44.50 1,000 U.S. University Libraries - $69 - NOW $34.50 400+ Community College Libraries WITH EMAIL ADDRESSES - $59 - NOW $29.50 400+ Community College Libraries - $49 - NOW $24.50 1,093 U.S. K-12 Private School Libraries WITH EMAIL ADDRESSES - $109 - NOW $54.50 1,093 U.S. K-12 Private School Libraries - $89 - NOW $44.50 200 U.K. Public Libraries WITH EMAIL ADDRESSES - $49 - NOW $24.50 200 U.K. Public Libraries - $39 - NOW $19.50 250 U.K. University Libraries WITH EMAIL ADDRESSES - $49 - NOW $24.50 250 U.K. University Libraries - $39 - NOW $19.50 528 Australian Public Libraries WITH EMAIL ADDRESSES - $79 - NOW $39.50 528 Australian Public Libraries - $69 - NOW $34.50 279 Australian College & Univ. Libraries WITH EMAIL ADDRESSES - $49 - NOW $24.50 279 Australian College & Univ. Libraries - $39 - NOW $19.50 200 Canadian Libraries WITH EMAIL ADDRESSES - $49 - NOW $24.50 200 Canadian Libraries - $39 - NOW $19.50 100 New Zealand Libraries WITH EMAIL ADDRESSES - $39 - NOW $19.50 100 New Zealand Libraries - $29 - NOW $14.50 1,000 U.S. Medical Libraries - $79 - NOW $34.50 313 U.S. Law Libraries - $49 - NOW $24.50 193 U.S. Religious Libraries - $39 - NOW $19.50 ---------------------------------------------- BOOKSTORES LIST INCLUDES: Name, Address, phone, fax and email address (when available). AVAILABLE FORMATS: Excel Spreadsheets & Text Databases 1,900+ Independent Bookstores WITH EMAIL ADDRESSES - $149 - NOW $74.50 1,900+ Independent Bookstores - $129 - NOW $64.50 1,900+ College Bookstores WITH EMAIL ADDRESSES - $149 - NOW $74.50 1,900+ College Bookstores - $129 - NOW $64.50 3,000+ Christian Bookstores WITH EMAIL ADDRESSES - $169 - NOW $84.50 3,000+ Christian Bookstores - $149 - NOW $74.50 2,200+ Chain Bookstores - $129 - NOW $64.50 575+ Book Distributors & Chain HQs - WITH EMAIL ADDRESSES - $59 - NOW $29.50 575+ Book Distributors & Chain HQs - $49 - NOW $24.50 675 Canadian General Bookstores WITH EMAIL ADDRESSES - $69 - NOW $34.50 675 Canadian General Bookstores - $59 - NOW $29.50 175 Canadian University Bookstores - WITH EMAIL ADDRESSES - $39 175 Canadian University Bookstores - $29 - NOW $14.50 550+ New Age Bookstores - WITH EMAIL ADDRESSES - $59 - NOW $29.50 550+ New Age Bookstores - $49 - NOW $24.50 125 African-American Bookstores - $29 - NOW $14.50 You will be able to download your lists WITHIN MINUTES. ----------------------------------------------- MEDIA LISTS LISTS INCLUDE: Contact Name, Title/Position, Company, Address, Phone, Fax and Email Address (when available) AVAILABLE FORMATS: Excel Spreadsheet and Microsoft Word U.S. National Media List (1000+ Contacts) - $99 - NOW $49.50 "Includes national business, consumer, and entertainment magazine contacts, syndicated talk shows, Newswire contacts, network news, cable news and entertainment programs." Australian National Media LisT (360+ Contacts) - $99 - NOW $49.50 "Australia's finest newspapers, magazines and television news and entertainment contacts are included in this list." Canadian National Media (590+ Contacts) - $99 - NOW $49.50 "Provides quality contacts from diverse Canadian TV, Magazine, and Newspaper outlets." UK Media List (500 Contacts) - $99 - NOW $49.50 "Contact reporters, editors, writers and producers from the UK's best media outlets. PBS Stations (800+ Contacts) - $99 - NOW $49.50 "Local and national contacts are featured in this extensive public television database." National Public Radio - NPR (265 Contacts) - $99 - NOW $49.50 "Features program directors and producers at local public radio stations as well as contacts at national syndicated shows including Diane Rehm and Fresh Air with Terry Gross." Drive Time Radio - Top 100 Markets (600 Contacts) - $99 - NOW $49.50 "Reach millions of people during drive-time shows at top stations." Newspapers - Top 100 Papers (1,100+ Contacts) - $99 - NOW $49.50 Pitch story ideas to editors and reporters at the top 100 newspapers throughout America. Local TV News (North Region) (840+ Contacts) - $99 - NOW $49.50 Local TV News (Midwest Region) (870+ Contacts) - $99 - NOW $49.50 Local TV News (West Region) (890+ Contacts) - $99 - NOW $49.50 Local TV News (South Region) (1,100+ Contacts) - $129 - NOW $64.50 Local TV News (All Regions) (3,700+ Contacts) - $249 - NOW $124.50 "Contact the people who can present your idea or work to a very large audience. Individual contacts include: news editors, assignment editors, producers, segment producers, weekend editors, and public affairs directors. Mens Interest Media (400 Contacts) - $99 - NOW $49.50 "Connect with contacts at publications like Esquire, GQ, Maxim, Men's Health and more." Womens Interest Media (1,350+ Contacts) - $149 - NOW $74.50 "Editorial contacts at major women's consumer magazines, women's editors at major newspapers and other publications, and producers at broadcast outlets are included in this comprehensive list." Teen Interest Media (216 Contacts) - $99 - NOW $49.50 "Reporters and editors at publications like Seventeen, Teen People, and CosmoGIRL! are now at your fingertips." Family & Parenting Media List (789 Contacts) - $99 - NOW $49.50 "This list reaches the media that cover child and parenting issues, including contacts at the major dailies, newsweeklies and parenting segment producers at major broadcast networks." Eclectic Newsweeklies (575+ Contacts) - $99 - NOW $49.50 "Reach a diverse group of non-daily free-circulation papers distributed in all of the major metropolitan areas of North America. Each paper has a distinct, local identity that sets it apart from the mainstream press in its market." College Radio Stations (520+ Contacts) - $99 - NOW $49.50 "Individual contacts include station manager, music director, program director, news director, among others." College Newspaper Contacts (1,400+ Contacts) - $99 - NOW $49.50 "Reach Generation X through over 1,400 college newspapers. Don't overlook this lucrative market." Travel Media (2,600+ Contacts) - $199 - NOW $99.50 "The mother of all travel media lists." Pet Media (435 Contacts) - $99 - NOW $49.50 "Covers every aspect of all things pet-related." Fashion & Beauty List (1,400 Contacts) - $149 - NOW $74.50 "You'll reach editors at major fashion publications including Cosmo, Elle, Glamour and InStyle. Men's fashion contacts include Esquire, FHM, GQ. and Stuff. There are also fashion and beauty editors at major dailies and major national magazines." Sex & Relationships Media List (402 Contacts) - $99 - NOW $49.50 "The most comprehensive list available of editors, reporters and producers covering every aspect of sex and relationships." Gay and Lesbian Media List (260 Contacts) - $99 - NOW $49.50 "Reach media contacts at national gay and lesbian publications including, The Advocate, Planet Out and Out. Local publications include the Houston Voice, San Francisco Frontiers and Seattle Gay News." Book Industry Media List (502 Contacts) - $99 - NOW $49.50 "Includes book reviewers from major newspapers, consumer magazines, trade publications and producers from shows that schedule authors, including Good Morning America, 20/20 and Nightline." Music Industry Media List (1,142 Contacts) - $149 - NOW $74.50 "Reach reporters, critics and producers at newspapers, magazines and television shows covering the music industry. There are contacts at internet publications that focus on music." Motion Picture, Film & Video (695 Contacts) - $99 - NOW $49.50 "Includes movie critics, entertainment editors and reporters at the top industry publications, major newspapers, consumer magazines and television programs." Sports Media List (427 Contacts) - $99 - NOW $49.50 includes contacts at national sports magazines, sports networks, newspapers, as well as television and radio stations. Political Media List (1,100+ Contacts) - $149 - NOW $74.50 "This list covers every aspect of the political debate whether in print or broadcast. This list is a must for those with serious issues to publicize." African American Media List (1500 Contacts) - $149 - NOW $74.50 "Contacts at national black consumer and business publications, regional newspapers and television stations." Environmental Media List (763 Contacts) - $99 - NOW $49.50 "Reach numerous environmental editors, writers and reporters at major newspapers, national magazines, environmental publications, and television networks." Scientific Journals (500 Contacts) - $99 - NOW $49.50 "Reach editors at journals covering Biology, Chemistry, Genetics, Astronomy and everything in between." New Age Media (250+ Contacts) - $99 - NOW $49.50 "Reach contacts at media outlets that specialize in Astrology, psychic phenomena, angels, near death experiences and everything in between." Christian Media List (370 Contacts) - $99 - NOW $49.50 "Reach top contacts at the largest Christian broadcasting outlets, religion editors and reporters at the top dailies and newsweeklies, and editors at the top Christian publications." ------------------------------------------------- TV & FILM PRODUCERS, DIRECTORS, DEVELOPMENT EXECS, (MORE) 3,000+ Contacts - $149 (Entire List) - NOW $74.50 800+ Producers Only - $99 - NOW $49.50 650+ Development, Creative & Acquisitions Contacts Only - $89 - NOW $44.50 Lists Include: Contact Name, Title, Company, Address, Phone and Fax Number Available Formats: Excel Spreadsheet and Text Database PUBLISHING COMPANY CONTACTS 1,700+ U.S. Publishing Contacts - $99 - NOW $49.50 300 Art Publishing Contacts - $49 - NOW $24.50 List Includes: Contact Name, Title, Company, Address, Phone, Number, Fax Number and Email Address (when available) Available Formats: Excel Spreadsheet and Text Database LITERARY AGENTS 300+ Contacts - $49 - NOW $24.50 List Includes: Contact Name, Title, Company, Address, Phone, Number, Fax Number and Email Address (when available) Available Formats: Excel Spreadsheet and Text Database MUSIC AGENTS/MANAGERS 150+ Contacts - $29 - NOW $14.50 List Includes: Contact Name, Title, Company, Address, Phone, Fax Number and Email Address (when available) Available Formats: Excel Spreadsheet and Text Database SCIENCE PROFESSORS 3,500 Contacts - $149 - NOW $74.50 Departments Included: Biology, Chemistry, Astronomy, Anthropolgy, Physics, Geology, Mathematics, more. List Includes: Contact Name, Department, University, Address, Phone, Fax and Email Available Formats: Excel Spreadsheet and Text Database SCIENCE CLUBS 1,000 Contacts - $99 - NOW $49.50 List Includes: Contact Name, Club Name, Email address, (Address & Phone when available) Available Formats: Excel Spreadsheet and Text Database PASTORS & CHURCHES 2,000 Contacts - $129 - NOW $64.50 (Various Denominations) List Includes: Pastors Name, Church, Address, Phone, Fax and Email. Available Formats: Excel Spreadsheet and Text Database BIBLE COLLEGE & SEMINARY PROFESSORS 2,000 Contacts - $129 - NOW $64.50 List Includes: Contact Name, Department, School, Address, Phone, Fax and Email. Available Formats: Excel Spreadsheet and Text Database VIDEO STORE LISTS 1573 Independent Video Stores (West) - $79 - NOW $34.50 2556 Independent Video Stores (Midwest) - $99 - NOW $49.50 2037 Independent Video Stores (East) - $99 - NOW $49.50 2987 Independent Video Stores (South) - $129- NOW $64.50 9150 Independent Video Stores (National)- $199- NOW $99.50 Lists Include: Store Name, Address and Phone Number Available Formats: Excel Spreadsheet and Text Database MUSIC STORE LISTS 997 Independent Music Stores (Midwest) - $79 - NOW $34.50 1215 Independent Music Stores (South) - $89 - NOW $44.50 1444 Independent Music Stores (East) - $89 - NOW $44.50 1355 Independent Music Stores (West) - $89 - NOW $44.50 5008 Independent Music Stores (National)- $249- NOW $124.50 Lists Include: Store Name, Address and Phone Number Available Formats: Excel Spreadsheet and Text Database ART GALLERY LISTS US National List WITH EMAIL ADDRESSES: $169 (1090 Galleries) US National List: $149 (1090 Galleries) - NOW $74.50 Southern US: $39 (140 Galleries) - NOW $19.50 Central US: $39 (150 Galleries) - NOW $19.50 Western US: $69 (272 Galleries) - NOW $34.50 Eastern US: $89 (530 Galleries) - NOW $44.50 United Kingdom: $69 (230 Galleries) - NOW $34.50 Canada: $49 (165 Galleries) - NOW $24.50 Australia: $29 (50 Galleries) - NOW $19.50 Lists Include: Gallery Name, Address, Phone Number and Fax Number Available Formats: Excel Spreadsheet and Text Database OUR GUARANTEE: We will refund postage (up to 34 cents per item) for any undeliverable addresses over 5% of the total list. We will also correct the undeliverable contacts and issue you an updated list. ------------------------ You will be able to download your lists WITHIN MINUTES. Call to place your order or for more information. US & CANADA TOLL-FREE NUMBER: 888 330 4919 (24/7) If you would like more information via email, please write us at sendlistinfo@netscape.net - Thank you. ------------------------------------------------------------------- To be removed from any future mailings, please send a message with your email address in the subject line to PublicityRemoval@netscape.net. Requests will be processed within 48 hours at that address only. Apologies for any inconvience. Thank you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Dec 17 5:52: 2 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2706537B401 for ; Tue, 17 Dec 2002 05:52:01 -0800 (PST) Received: from postfix.fh-schmalkalden.de (postfix.fh-schmalkalden.de [194.94.30.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91E1643EE5 for ; Tue, 17 Dec 2002 05:52:00 -0800 (PST) (envelope-from wds_de@yahoo.de) Received: from smtp.fh-schmalkalden.de (viruswall [194.94.30.51]) by postfix.fh-schmalkalden.de (Postfix) with ESMTP id 08B9E58004; Tue, 17 Dec 2002 14:51:51 +0100 (CET) Received: from yahoo.de (ipgraf03.informatik.fh-schmalkalden.de [212.201.64.115]) by smtp.fh-schmalkalden.de (Postfix) with ESMTP id E915E4130C; Tue, 17 Dec 2002 14:51:52 +0100 (MET) Message-ID: <3DFF2BF8.C4FD546D@yahoo.de> Date: Tue, 17 Dec 2002 14:51:52 +0100 From: Falko Meyer Organization: FH Schmalkalden/Germany, dep. of computer science X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.4.2-5SGI_137 i686) X-Accept-Language: en MIME-Version: 1.0 To: Ronald Cotoni , freebsd-alpha@freebsd.org Subject: Re: 433 au References: <20021202092405.I33855-100000@trillian.santala.org> <20021202095350.I81474-100000@cma2600.org> <3DEF3D9E.1A985CCA@yahoo.de> <20021216134139.I47593-100000@cma2600.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Please tell some more abut these "errors". Ronald Cotoni wrote: > > booting with a netbsd disk and dd if=/dev/zero of=/dev/sd0 didn't work it > is still reporting errors with it > > On Thu, 5 Dec 2002, Falko Meyer wrote: > > > Ronald Cotoni wrote: > > > > > > should i let dd finish or not? > > > > You can, but it should not be important. Ist should overwrite a few of > > the fist megabytes on the disk: > > > > > > You can also specify bs and count if you like or just let that run for a > > > > few seconds. Then reboot with your preferred installation media. > > > > Greetings, Falko Meyer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Dec 17 9:33:21 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B365A37B401 for ; Tue, 17 Dec 2002 09:33:19 -0800 (PST) Received: from eos.telenet-ops.be (eos.telenet-ops.be [195.130.132.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94AC843EC5 for ; Tue, 17 Dec 2002 09:33:18 -0800 (PST) (envelope-from philip@paeps.cx) Received: from localhost (localhost.localdomain [127.0.0.1]) by eos.telenet-ops.be (Postfix) with SMTP id 3ACA120472 for ; Tue, 17 Dec 2002 18:33:17 +0100 (CET) Received: from fortuna.home.paeps.cx (D5768746.kabel.telenet.be [213.118.135.70]) by eos.telenet-ops.be (Postfix) with ESMTP id 28E76202DF for ; Tue, 17 Dec 2002 18:33:17 +0100 (CET) Received: from juno.home.paeps.cx (juno [10.0.0.2]) by fortuna.home.paeps.cx (Postfix) with ESMTP id 985F84E4 for ; Tue, 17 Dec 2002 18:33:16 +0100 (CET) Received: by juno.home.paeps.cx (Postfix, from userid 1001) id 6461B1CD; Tue, 17 Dec 2002 18:33:16 +0100 (CET) Date: Tue, 17 Dec 2002 18:33:16 +0100 From: Philip Paeps To: alpha@freebsd.org Subject: Not booting automaticall Message-ID: <20021217173316.GA741@juno.home.paeps.cx> Mail-Followup-To: alpha@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get yourself a real mail client. Try Mutt: User-Agent: Mutt/1.5.1i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org For some reason, the loader isn't getting loaded automatically anymore on my Miata. I probably did something silly, but I can't remember what :-o The machine starts up normally, and the SRM loads the bootblocks: CPU 0 booting (boot dkc0.0.0.1004.0 -flags 0) block 0 of dkc0.0.0.1004.0 is a valid boot block reading 16 blocks from dkc0.0.0.1004.0 bootstrap code read in base = 1d8000, image_start = 0, image_bytes = 2000 initializing HWRPB at 2000 initializing page table at 1ca000 initializing machine state setting affinity to the primary CPU jumping to bootstrap code Boot: Then it just sits there until I hit enter, and then loads the loader and the kernel and everything works happily. Any ideas on how to get this to work automatically again? Thanks! - Philip -- Philip Paeps Please don't CC me, I am philip@paeps.cx subscribed to the list. People will buy anything that's one to a customer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Dec 17 9:37:14 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A550E37B407 for ; Tue, 17 Dec 2002 09:37:08 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6CF443EA9 for ; Tue, 17 Dec 2002 09:37:04 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.6/8.12.6) with ESMTP id gBHHb4ro024948 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 17 Dec 2002 12:37:04 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id gBHHaw318392; Tue, 17 Dec 2002 12:36:58 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15871.24762.948060.89286@grasshopper.cs.duke.edu> Date: Tue, 17 Dec 2002 12:36:58 -0500 (EST) To: Philip Paeps Cc: alpha@FreeBSD.ORG Subject: Re: Not booting automaticall In-Reply-To: <20021217173316.GA741@juno.home.paeps.cx> References: <20021217173316.GA741@juno.home.paeps.cx> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > (boot dkc0.0.0.1004.0 -flags 0) Try getting rid of the linuxism '-flags 0' Eg, try >>> boot -fl '' If that works, change the appropriate srm console variable. boot_osflags, I think.. Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Dec 17 9:50: 6 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADE5437B401 for ; Tue, 17 Dec 2002 09:50:05 -0800 (PST) Received: from eos.telenet-ops.be (eos.telenet-ops.be [195.130.132.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1937443EC2 for ; Tue, 17 Dec 2002 09:50:05 -0800 (PST) (envelope-from philip@paeps.cx) Received: from localhost (localhost.localdomain [127.0.0.1]) by eos.telenet-ops.be (Postfix) with SMTP id 21C3D2054D for ; Tue, 17 Dec 2002 18:50:04 +0100 (CET) Received: from fortuna.home.paeps.cx (D5768746.kabel.telenet.be [213.118.135.70]) by eos.telenet-ops.be (Postfix) with ESMTP id DD16520560 for ; Tue, 17 Dec 2002 18:50:01 +0100 (CET) Received: from juno.home.paeps.cx (juno [10.0.0.2]) by fortuna.home.paeps.cx (Postfix) with ESMTP id AB58E4E4 for ; Tue, 17 Dec 2002 18:50:01 +0100 (CET) Received: by juno.home.paeps.cx (Postfix, from userid 1001) id 489AC1CD; Tue, 17 Dec 2002 18:50:01 +0100 (CET) Date: Tue, 17 Dec 2002 18:50:01 +0100 From: Philip Paeps To: alpha@FreeBSD.ORG Subject: Re: Not booting automaticall Message-ID: <20021217175001.GB741@juno.home.paeps.cx> Mail-Followup-To: alpha@FreeBSD.ORG References: <20021217173316.GA741@juno.home.paeps.cx> <15871.24762.948060.89286@grasshopper.cs.duke.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <15871.24762.948060.89286@grasshopper.cs.duke.edu> X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get yourself a real mail client. Try Mutt: User-Agent: Mutt/1.5.1i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 2002-12-17 12:36:58 (-0500), Andrew Gallatin wrote: > > (boot dkc0.0.0.1004.0 -flags 0) > > Try getting rid of the linuxism '-flags 0' I thought I'd gotten rid of all linuxisms on it (previous owner had Linux on it). This is gone too now, thanks! :-) > If that works, change the appropriate srm console variable. > boot_osflags, I think.. Unfortunately, it still doesn't load the loader without my hitting enter at a boot: prompt :-/ - Philip -- Philip Paeps Please don't CC me, I am philip@paeps.cx subscribed to the list. BOFH Excuse #138: BNC (brain not connected) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Dec 17 10: 8:25 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA17337B507 for ; Tue, 17 Dec 2002 10:08:22 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 398A243ED1 for ; Tue, 17 Dec 2002 10:08:22 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.6/8.12.6) with ESMTP id gBHI8Lro026739 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 17 Dec 2002 13:08:21 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id gBHI8G318422; Tue, 17 Dec 2002 13:08:16 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15871.26640.586523.580903@grasshopper.cs.duke.edu> Date: Tue, 17 Dec 2002 13:08:16 -0500 (EST) To: Philip Paeps Cc: alpha@FreeBSD.ORG Subject: Re: Not booting automaticall In-Reply-To: <20021217173316.GA741@juno.home.paeps.cx> References: <20021217173316.GA741@juno.home.paeps.cx> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Philip Paeps writes: > Then it just sits there until I hit enter, and then loads the loader and the > kernel and everything works happily. > > Any ideas on how to get this to work automatically again? OK, next guess.. The boot1 algorithm is quite simple: int main() { <..> start = rpcc(); freq = ((struct rpb *)HWRPB_ADDR)->rpb_cc_freq; while (((rpcc() - start) & 0xffffffff) < freq) { twiddle(); if (ischar()) { getfilename(filename, name); name = filename; break; } } loadfile(name, loadaddr); entry = (void (*)())loadaddr; (*entry)(); So, what happens is that if there is a key press, getfilename() is called. getfilename() is what produces the "Boot:" prompt. So, I think that there may be some line noise on your serial console line or keyboard cable which is interrupting the boot process. People who've trashed their /boot/loader would probably pay money for such a feature ;) Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Dec 17 11:52:24 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D629937B401 for ; Tue, 17 Dec 2002 11:52:22 -0800 (PST) Received: from tartarus.telenet-ops.be (tartarus.telenet-ops.be [195.130.132.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 162BE43E4A for ; Tue, 17 Dec 2002 11:52:22 -0800 (PST) (envelope-from philip@paeps.cx) Received: from localhost (localhost.localdomain [127.0.0.1]) by tartarus.telenet-ops.be (Postfix) with SMTP id 53AE5DBB92 for ; Tue, 17 Dec 2002 20:50:51 +0100 (CET) Received: from fortuna.home.paeps.cx (D5768746.kabel.telenet.be [213.118.135.70]) by tartarus.telenet-ops.be (Postfix) with ESMTP id A012CDCFBE for ; Tue, 17 Dec 2002 20:50:01 +0100 (CET) Received: from juno.home.paeps.cx (juno [10.0.0.2]) by fortuna.home.paeps.cx (Postfix) with ESMTP id AB57B4E4 for ; Tue, 17 Dec 2002 20:49:59 +0100 (CET) Received: by juno.home.paeps.cx (Postfix, from userid 1001) id 788641CD; Tue, 17 Dec 2002 20:49:59 +0100 (CET) Date: Tue, 17 Dec 2002 20:49:59 +0100 From: Philip Paeps To: alpha@FreeBSD.ORG Subject: Re: Not booting automaticall Message-ID: <20021217194959.GH741@juno.home.paeps.cx> Mail-Followup-To: alpha@FreeBSD.ORG References: <20021217173316.GA741@juno.home.paeps.cx> <15871.26640.586523.580903@grasshopper.cs.duke.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <15871.26640.586523.580903@grasshopper.cs.duke.edu> X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get yourself a real mail client. Try Mutt: User-Agent: Mutt/1.5.1i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 2002-12-17 13:08:16 (-0500), Andrew Gallatin wrote: > Philip Paeps writes: > > Then it just sits there until I hit enter, and then loads the loader and the > > kernel and everything works happily. > > > > Any ideas on how to get this to work automatically again? > > OK, next guess.. :-) > So, I think that there may be some line noise on your serial console > line or keyboard cable which is interrupting the boot process. The funny thing is that it was working :-/ I think I did something silly, but I did so many things I can't quite remember what the silly thing was :-) I tried rewriting the bootblocks on the disk (disklabel -B da0), but that didn't seem to fix it either. > People who've trashed their /boot/loader would probably pay money for such a > feature ;) I can believe that :-) - Philip -- Philip Paeps Please don't CC me, I am philip@paeps.cx subscribed to the list. Real programmers argue with the systems analyst as a matter of principle. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Dec 17 12:50:52 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95D4837B401 for ; Tue, 17 Dec 2002 12:50:50 -0800 (PST) Received: from cma2600.org (h00104b2fcc85.ne.client2.attbi.com [24.147.198.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7667D43EC2 for ; Tue, 17 Dec 2002 12:50:44 -0800 (PST) (envelope-from setient@cma2600.org) Received: by cma2600.org (Postfix, from userid 1001) id 84F6F82; Tue, 17 Dec 2002 15:49:17 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by cma2600.org (Postfix) with ESMTP id 61082A; Tue, 17 Dec 2002 15:49:17 -0500 (EST) Date: Tue, 17 Dec 2002 15:49:14 -0500 (EST) From: Ronald Cotoni To: Falko Meyer Cc: freebsd-alpha@freebsd.org Subject: Re: 433 au In-Reply-To: <3DFF2BF8.C4FD546D@yahoo.de> Message-ID: <20021217154848.K1085-100000@cma2600.org> References: <20021202092405.I33855-100000@trillian.santala.org> <20021202095350.I81474-100000@cma2600.org> <3DEF3D9E.1A985CCA@yahoo.de> <20021216134139.I47593-100000@cma2600.org> <3DFF2BF8.C4FD546D@yahoo.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org yeah it was saying unable to determine hd size so the installer is reporting it as having no disk...any way to fix that????i think the partitions are messed up On Tue, 17 Dec 2002, Falko Meyer wrote: > Please tell some more abut these "errors". > > Ronald Cotoni wrote: > > > > booting with a netbsd disk and dd if=/dev/zero of=/dev/sd0 didn't work it > > is still reporting errors with it > > > > On Thu, 5 Dec 2002, Falko Meyer wrote: > > > > > Ronald Cotoni wrote: > > > > > > > > should i let dd finish or not? > > > > > > You can, but it should not be important. Ist should overwrite a few of > > > the fist megabytes on the disk: > > > > > > > > You can also specify bs and count if you like or just let that run for a > > > > > few seconds. Then reboot with your preferred installation media. > > > > > > > > Greetings, > Falko Meyer > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-alpha" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Dec 17 14: 6:10 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from green.bikeshed.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 962A937B401; Tue, 17 Dec 2002 14:06:09 -0800 (PST) Received: from green.bikeshed.org (zhful94z7jjyxo0h@green.bikeshed.org [10.0.0.1] (may be forged)) by green.bikeshed.org (8.12.6/8.12.6) with ESMTP id gBHM68im013486; Tue, 17 Dec 2002 17:06:08 -0500 (EST) (envelope-from green@green.bikeshed.org) Received: from localhost (green@localhost) by green.bikeshed.org (8.12.6/8.12.6/Submit) with ESMTP id gBHM67kE013482; Tue, 17 Dec 2002 17:06:07 -0500 (EST) Message-Id: <200212172206.gBHM67kE013482@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Matthew Dillon Cc: Jake Burkholder , John Baldwin , Kris Kennaway , current@FreeBSD.ORG, alpha@FreeBSD.ORG Subject: Re: Patch #3 Re: UMA panic under load In-Reply-To: Your message of "Sat, 14 Dec 2002 18:09:01 PST." <200212150209.gBF291Zf078019@apollo.backplane.com> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Dec 2002 17:06:06 -0500 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Matthew Dillon wrote: > Whoop. Ok, here's a new patch. I think this covers all the cases. > I've done some testing and it appears to do the right thing, please > look it over (the last patch had type-o's and didn't cover the correct > cases). I haven't tested, since I haven't provoked that specific panic on my machines, but that does appear that it would indeed fix both issues. Kris, can you confirm that it makes the machines work properly? -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org <> bfeldman@tislabs.com \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Dec 18 7:19:57 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C1BA37B401 for ; Wed, 18 Dec 2002 07:19:56 -0800 (PST) Received: from postfix.fh-schmalkalden.de (postfix.fh-schmalkalden.de [194.94.30.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92D0443ED1 for ; Wed, 18 Dec 2002 07:19:55 -0800 (PST) (envelope-from wds_de@yahoo.de) Received: from smtp.fh-schmalkalden.de (viruswall [194.94.30.51]) by postfix.fh-schmalkalden.de (Postfix) with ESMTP id EC16658007; Wed, 18 Dec 2002 16:19:48 +0100 (CET) Received: from yahoo.de (ipgraf03.informatik.fh-schmalkalden.de [212.201.64.115]) by smtp.fh-schmalkalden.de (Postfix) with ESMTP id 61C734130E; Wed, 18 Dec 2002 16:19:53 +0100 (MET) Message-ID: <3E009215.2035C4BE@yahoo.de> Date: Wed, 18 Dec 2002 16:19:49 +0100 From: Falko Meyer Organization: FH Schmalkalden/Germany, dep. of computer science X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.4.2-5SGI_137 i686) X-Accept-Language: en MIME-Version: 1.0 To: Ronald Cotoni , freebsd-alpha@freebsd.org Subject: Re: 433 au References: <20021202092405.I33855-100000@trillian.santala.org> <20021202095350.I81474-100000@cma2600.org> <3DEF3D9E.1A985CCA@yahoo.de> <20021216134139.I47593-100000@cma2600.org> <3DFF2BF8.C4FD546D@yahoo.de> <20021217154848.K1085-100000@cma2600.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org If dd worked without errors and it was the right disk, then there is no more partition table and so it can't be messed up. Can you post the exact error message and descibe the point where it occurs? Greetings, Falko Meyer Ronald Cotoni wrote: > > yeah it was saying unable to determine hd size so the installer is > reporting it as having no disk...any way to fix that????i think the > partitions are messed up To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Dec 18 13:40:51 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66C0237B401; Wed, 18 Dec 2002 13:40:28 -0800 (PST) Received: from hotmail.com (f111.pav2.hotmail.com [64.4.37.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05FD943EA9; Wed, 18 Dec 2002 13:40:28 -0800 (PST) (envelope-from bbfst4wtsf253@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 18 Dec 2002 13:38:13 -0800 Received: from 203.227.236.216 by pv2fd.pav2.hotmail.msn.com with HTTP; Wed, 18 Dec 2002 21:38:13 GMT X-Originating-IP: [203.227.236.216] From: =?ks_c_5601-1987?B?xMnGwyC4tg==?= To: freebsd-alpha@freebsd.org Subject: =?ks_c_5601-1987?B?oaG6/LG4uK4gwfGwzLDUIMfRufggx8/A2i4uLiEh?= Date: Wed, 18 Dec 2002 21:38:13 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=ks_c_5601-1987; format=flowed Message-ID: X-OriginalArrivalTime: 18 Dec 2002 21:38:13.0330 (UTC) FILETIME=[C46DAB20:01C2A6DD] Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org live10girls

¼ºÇö¾Æ ´©µåÁý °ø°³

 

 

 

º¸·¯ °¡±â

º» À¥»çÀÌÆ®´Â ÀÎÅÍ³Ý ¼ºÀÎ Àü¹® Æ÷¸£³ë »çÀÌÆ®·Î, ¹ýÀûÀ¸·Î ÀÌ·¯ÇÑ ³»¿ëÀ» ¿­¶÷
ÇÒ ¼ö ¾ø´Â ¸¸ 20¼¼ÀÇ ¿¬·É ¹Ì¸¸À̳ª ÀÌ¿Í°°Àº À½¶õÇÑ ³»¿ë¿¡ °ÅºÎ°¨À» °®´Â »ç¶÷
µéÀº ÀÔÀåÀ» ±ÝÇÕ´Ï´Ù.
¶ÇÇÑ º» »çÀÌÆ®´Â ¹ýÀûÀ¸·Î ÀÎÅͳݿ¡¼­ À½¶õ¹°À» Àü¼ÛÇÏ´Â °ÍÀÌ ±ÝÁöµÈ Áö¿ª À̳ª
±¹°¡¸¦ ´ë»óÀ¸·Î ÇÏ´Â ¼­ºñ½º°¡ ¾Æ´ÔÀ» ¹àÈü´Ï´Ù. À§ÀÇ »çÇ׿¡ µ¿ÀÇÇÏÁö ¾Ê´Â ´Ù¸é
Àý´ë·Î µé¾î¿ÀÁö ¸¶½Ê½Ã¿À.

This web site contains sexually oriented adult material which is not
suitable for those who are under the age of 20. If you
are under the age of 20 or find material of an adult nature offensive, or
if you are accessing this site from a country where adult material is
specifically prohibited by law, please leave this site immediately. By
entering this web page you are acknowledging that you are in fact 20 years
of age or older, and therefore we will hold no responsibility for any adult
material you find on this web site. All models on this site are 20 years of
age or older. We do not promote violent, malignant, or child pornography.
If you understand and accept these terms you may enter.

_________________________________________________________________ °í.. °¨.. µµ.. »ç.. ¶û.. ¸¸.. µé.. ±â.. MSN ·¯ºê http://www.msn.co.kr/love/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Dec 18 23:14:32 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3228537B401; Wed, 18 Dec 2002 23:14:32 -0800 (PST) Received: from citusc.usc.edu (citusc.usc.edu [128.125.38.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id C20A043ED1; Wed, 18 Dec 2002 23:14:31 -0800 (PST) (envelope-from kris@citusc.usc.edu) Received: (from kris@localhost) by citusc.usc.edu (8.11.6/8.11.2) id gBJ7EV207336; Wed, 18 Dec 2002 23:14:31 -0800 Date: Wed, 18 Dec 2002 23:14:31 -0800 From: Kris Kennaway To: taoka@freebsd.org, alpha@freebsd.org Subject: mule-common broken on alpha Message-ID: <20021218231431.A7333@citusc.usc.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Looks like some kind of elf error..can anyone check it out? http://bento.freebsd.org/errorlogs/alpha-5-latest/mule-common-2.3_2.log Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Dec 19 2:25:31 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6A0537B401; Thu, 19 Dec 2002 02:25:29 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-64-169-104-228.dsl.lsan03.pacbell.net [64.169.104.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id A10F443EC5; Thu, 19 Dec 2002 02:25:28 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 2ADF766BE3; Thu, 19 Dec 2002 02:25:28 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 5ACE51330; Thu, 19 Dec 2002 02:25:27 -0800 (PST) Date: Thu, 19 Dec 2002 02:25:27 -0800 From: Kris Kennaway To: "Brian F. Feldman" Cc: Matthew Dillon , Jake Burkholder , John Baldwin , Kris Kennaway , current@FreeBSD.ORG, alpha@FreeBSD.ORG Subject: Re: Patch #3 Re: UMA panic under load Message-ID: <20021219102527.GA2207@rot13.obsecurity.org> References: <200212150209.gBF291Zf078019@apollo.backplane.com> <200212172206.gBHM67kE013482@green.bikeshed.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="AhhlLboLdkugWU4S" Content-Disposition: inline In-Reply-To: <200212172206.gBHM67kE013482@green.bikeshed.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 17, 2002 at 05:06:06PM -0500, Brian F. Feldman wrote: > Matthew Dillon wrote: > > Whoop. Ok, here's a new patch. I think this covers all the cases. > > I've done some testing and it appears to do the right thing, please > > look it over (the last patch had type-o's and didn't cover the corr= ect > > cases). >=20 > I haven't tested, since I haven't provoked that specific panic on my=20 > machines, but that does appear that it would indeed fix both issues. Kri= s,=20 > can you confirm that it makes the machines work properly? I'm testing the committed version on the alpha cluster and my local sparc machine. It should be fairly obvious within a few days if it is working. Kris --AhhlLboLdkugWU4S Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+AZ6WWry0BWjoQKURAgLOAJ9PjWYCzSh9l41xA+zMT1uU+79SaQCg+QeV 2q7LHyCGMYHVqC5Ns0VAHDg= =UlN1 -----END PGP SIGNATURE----- --AhhlLboLdkugWU4S-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Dec 19 6:18:30 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9F2B37B401; Thu, 19 Dec 2002 06:18:29 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-64-169-104-228.dsl.lsan03.pacbell.net [64.169.104.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AF4F43EC2; Thu, 19 Dec 2002 06:18:23 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 1EA8E66BE3; Thu, 19 Dec 2002 06:18:23 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id E48D7E34; Thu, 19 Dec 2002 06:18:22 -0800 (PST) Date: Thu, 19 Dec 2002 06:18:22 -0800 From: Kris Kennaway To: ports@FreeBSD.org Cc: alpha@FreeBSD.org Subject: xcpustate broken on alpha Message-ID: <20021219141822.GA3816@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="IS0zKkzwUGydFO0o" Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --IS0zKkzwUGydFO0o Content-Type: text/plain; charset=us-ascii Content-Disposition: inline For some reason this port just became broken on alpha. Can someone please take a look? http://bento.freebsd.org/errorlogs/alpha-5-latest/xcpustate-2.5.log --IS0zKkzwUGydFO0o Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+AdUtWry0BWjoQKURAhCFAKDj6E7qrAMgiKXfYx9lvCpYrJr+8ACffJbO 5UOLD4IGSTQSaX12p16cxCE= =o2r0 -----END PGP SIGNATURE----- --IS0zKkzwUGydFO0o-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Dec 19 6:23:54 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3533437B401; Thu, 19 Dec 2002 06:23:53 -0800 (PST) Received: from poptart.bithose.com (ip-204-97-176-41.modem.logical.net [204.97.176.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11D9E43ED1; Thu, 19 Dec 2002 06:23:52 -0800 (PST) (envelope-from jakari@bithose.com) Received: from poptart.bithose.com (localhost [127.0.0.1]) by poptart.bithose.com (8.12.2/8.12.2) with ESMTP id gBJENeap024289; Thu, 19 Dec 2002 09:23:40 -0500 (EST) Received: from localhost (jakari@localhost) by poptart.bithose.com (8.12.2/8.12.2/Submit) with ESMTP id gBJENeIV024287; Thu, 19 Dec 2002 09:23:40 -0500 (EST) X-Authentication-Warning: poptart.bithose.com: jakari owned process doing -bs Date: Thu, 19 Dec 2002 09:23:40 -0500 (EST) From: Jameel Akari To: Kris Kennaway Cc: , Subject: Re: xcpustate broken on alpha In-Reply-To: <20021219141822.GA3816@rot13.obsecurity.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, 19 Dec 2002, Kris Kennaway wrote: > For some reason this port just became broken on alpha. Can someone > please take a look? > > http://bento.freebsd.org/errorlogs/alpha-5-latest/xcpustate-2.5.log Well, I'm no gcc expert, but this looks suspect: cc -O -pipe -mcpu=ev4 -mtune=ev5 -mcpu=ev4 -mtune=ev5 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Optimizer tries to expand a macro in rstat_xdr.c:20:8 and blows up trying to tweak for both EV4 and EV5 cpus? #!/jameel/akari sleep 4800; make clean && make breakfast To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Dec 19 9:49:44 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 784BB37B404 for ; Thu, 19 Dec 2002 09:49:43 -0800 (PST) Received: from mail.speakeasy.net (mail14.speakeasy.net [216.254.0.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B77743EE8 for ; Thu, 19 Dec 2002 09:49:42 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 12078 invoked from network); 19 Dec 2002 17:49:45 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail14.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 19 Dec 2002 17:49:45 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.6/8.12.6) with ESMTP id gBJHnQUT018936; Thu, 19 Dec 2002 12:49:29 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Thu, 19 Dec 2002 12:49:26 -0500 (EST) From: John Baldwin To: Jameel Akari Subject: Re: xcpustate broken on alpha Cc: alpha@FreeBSD.ORG, ports@FreeBSD.ORG, Kris Kennaway Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 19-Dec-2002 Jameel Akari wrote: > On Thu, 19 Dec 2002, Kris Kennaway wrote: > >> For some reason this port just became broken on alpha. Can someone >> please take a look? >> >> http://bento.freebsd.org/errorlogs/alpha-5-latest/xcpustate-2.5.log > > Well, I'm no gcc expert, but this looks suspect: > > cc -O -pipe -mcpu=ev4 -mtune=ev5 -mcpu=ev4 -mtune=ev5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > Optimizer tries to expand a macro in rstat_xdr.c:20:8 and blows up > trying to tweak for both EV4 and EV5 cpus? I doubt it. -mcpu= and -mtune= mean two different things. Also, if one did override the other, then the last one would have sole effect. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Dec 19 10:24:22 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8D0637B401; Thu, 19 Dec 2002 10:24:21 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2C6443EC5; Thu, 19 Dec 2002 10:24:20 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.6/8.12.6) with ESMTP id gBJIOEro019213 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 19 Dec 2002 13:24:15 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id gBJIO9O21623; Thu, 19 Dec 2002 13:24:09 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15874.3785.834423.891453@grasshopper.cs.duke.edu> Date: Thu, 19 Dec 2002 13:24:09 -0500 (EST) To: Kris Kennaway Cc: ports@FreeBSD.ORG, alpha@FreeBSD.ORG Subject: Re: xcpustate broken on alpha In-Reply-To: <20021219141822.GA3816@rot13.obsecurity.org> References: <20021219141822.GA3816@rot13.obsecurity.org> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Kris Kennaway writes: > For some reason this port just became broken on alpha. Can someone > please take a look? > > http://bento.freebsd.org/errorlogs/alpha-5-latest/xcpustate-2.5.log What is the build cluster running? My crashbox builds it just fine (modulo ptr/integer warns): # uname -a FreeBSD thunder 5.0-RC FreeBSD 5.0-RC #0: Tue Dec 10 12:57:44 EST 2002 gallatin@thunder:/usr/src/sys/alpha/compile/UP1000 alpha Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Dec 19 18:55:30 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0AAC37B40B; Thu, 19 Dec 2002 18:55:22 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-64-169-104-228.dsl.lsan03.pacbell.net [64.169.104.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EC9E440D5; Thu, 19 Dec 2002 18:54:55 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id A278266BE3; Thu, 19 Dec 2002 18:54:55 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 3170E1393; Thu, 19 Dec 2002 18:54:55 -0800 (PST) Date: Thu, 19 Dec 2002 18:54:55 -0800 From: Kris Kennaway To: Andrew Gallatin Cc: Kris Kennaway , ports@FreeBSD.ORG, alpha@FreeBSD.ORG Subject: Re: xcpustate broken on alpha Message-ID: <20021220025455.GA6303@rot13.obsecurity.org> References: <20021219141822.GA3816@rot13.obsecurity.org> <15874.3785.834423.891453@grasshopper.cs.duke.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZGiS0Q5IWpPtfppv" Content-Disposition: inline In-Reply-To: <15874.3785.834423.891453@grasshopper.cs.duke.edu> User-Agent: Mutt/1.4i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --ZGiS0Q5IWpPtfppv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Dec 19, 2002 at 01:24:09PM -0500, Andrew Gallatin wrote: >=20 > Kris Kennaway writes: > > For some reason this port just became broken on alpha. Can someone > > please take a look? > >=20 > > http://bento.freebsd.org/errorlogs/alpha-5-latest/xcpustate-2.5.log >=20 > What is the build cluster running? >=20 > My crashbox builds it just fine (modulo ptr/integer warns): > # uname -a > FreeBSD thunder 5.0-RC FreeBSD 5.0-RC #0: Tue Dec 10 12:57:44 EST 2002 > gallatin@thunder:/usr/src/sys/alpha/compile/UP1000 alpha It's runinng a world built Dec 8. The line it's barfing on is: #ifdef __STDC__=20 Kris --ZGiS0Q5IWpPtfppv Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+AoZ+Wry0BWjoQKURAlrUAJ4xSmvgSxrs88C6s1VtyXdXZwI/lACfeLnZ yM600FiIwv+zl1Uuxk0TZpA= =cOlH -----END PGP SIGNATURE----- --ZGiS0Q5IWpPtfppv-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Dec 19 19:26:32 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0E9137B401 for ; Thu, 19 Dec 2002 19:26:31 -0800 (PST) Received: from alpha.notebookspro.com (alpha.notebookspro.com [64.32.229.172]) by mx1.FreeBSD.org (Postfix) with SMTP id 27E8143EE6 for ; Thu, 19 Dec 2002 19:26:31 -0800 (PST) (envelope-from freebsd@durdom.com) Received: (qmail 13847 invoked from network); 20 Dec 2002 06:26:09 -0000 Received: from unknown (HELO SASHA) (151.204.112.161) by alpha.notebookspro.com with SMTP; 20 Dec 2002 06:26:09 -0000 Message-ID: <00e401c2a7d8$8f13a8c0$0200a8c0@sasha> Reply-To: "Nochkin" From: "Nochkin" To: Subject: Date: Thu, 19 Dec 2002 22:33:27 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Dec 19 20:21:26 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EF5737B401 for ; Thu, 19 Dec 2002 20:21:25 -0800 (PST) Received: from alpha.notebookspro.com (alpha.notebookspro.com [64.32.229.172]) by mx1.FreeBSD.org (Postfix) with SMTP id AA55343EDE for ; Thu, 19 Dec 2002 20:21:24 -0800 (PST) (envelope-from freebsd@durdom.com) Received: (qmail 14393 invoked from network); 20 Dec 2002 07:21:19 -0000 Received: from unknown (HELO SASHA) (151.204.112.161) by alpha.notebookspro.com with SMTP; 20 Dec 2002 07:21:19 -0000 Message-ID: <015501c2a7e0$5e3c05a0$0200a8c0@sasha> Reply-To: "Nochkin" From: "Nochkin" To: Subject: Date: Thu, 19 Dec 2002 23:29:21 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org subscribe freebsd-alpha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Dec 20 12: 3: 5 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06D0F37B401 for ; Fri, 20 Dec 2002 12:03:02 -0800 (PST) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B3A643EE5 for ; Fri, 20 Dec 2002 12:03:01 -0800 (PST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.6/8.12.6) with ESMTP id gBKK30Y2082620 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK) for ; Fri, 20 Dec 2002 15:03:01 -0500 (EST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.6/8.12.6/Submit) id gBKK30Jh082617; Fri, 20 Dec 2002 15:03:00 -0500 (EST) (envelope-from wollman) Date: Fri, 20 Dec 2002 15:03:00 -0500 (EST) From: Garrett Wollman Message-Id: <200212202003.gBKK30Jh082617@khavrinen.lcs.mit.edu> To: alpha@FreeBSD.org Subject: Make of it what you will... Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Yesterday I successfully installed 5.0-RC1 on a four-processor AS4100. Overnight I tried a `make -j 8 -s buildworld', but it wasn't even remotely close to completing after nine hours (probably due to contention for giant, if what I saw in `top' is any indication). I restarted the build without `-j' and things seem to be getting pretty close to completion. Congratulations are due to everybody involved in making this weird hardware behave reliably.... For the record, here's what this machine looks like: Copyright (c) 1992-2002 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-RC1 #0: Sat Dec 7 07:38:26 GMT 2002 root@sema.baldwin.cx:/usr/obj/usr/src/sys/GENERIC Preloaded elf kernel "/boot/kernel/kernel" at 0xfffffc000086a000. AlphaServer 4100 AlphaServer 4100 5/466 4MB, 467MHz 8192 byte page size, 4 processors. CPU: EV56 (21164A) major=7 minor=2 extensions=0x1 OSF PAL rev: 0x4000200020117 real memory = 2145345536 (2045 MB) avail memory = 2081038336 (1984 MB) FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs Initializing GEOMetry subsystem mcbus0: pcib0: at mcbus0 gid 7 mid 5 pcib0: Horse Revision 3, Left Handed Saddle Revision 3, CAP Revision 2 pci0: on pcib0 sym0: <810> port 0x1ffee00-0x1ffeeff mem 0x7dffe00-0x7dffeff irq 4 at device 1.0 on pci0 sym0: No NVRAM, ID 7, Fast-10, SE, parity checking sym0: interrupting at IRQ 0x10 intA (vec 0xb40) pcib2: at device 2.0 on pci0 pci2: on pcib2 isp0: port 0x1ffff00-0x1ffffff mem 0x7eef000-0x7eeffff irq 8 at device 0.0 on pci2 isp0: interrupting at IRQ 0x0 intA (vec 0xb80) de0: port 0x1ffef00-0x1ffef7f mem 0x7dfff00-0x7dfff7f irq 12 at device 3.0 on pci0 de0: interrupting at IRQ 0x4 intA (vec 0xbc0) de0: DEC DE500-AA 21140A [10-100Mb/s] pass 2.0 de0: address 00:00:f8:05:bc:8b pcib1: at mcbus0 gid 7 mid 4 pcib1: Horse Revision 3, Left Handed Saddle Revision 3, CAP Revision 2 pci1: on pcib1 eisab0: at device 1.0 on pci1 isa0: on eisab0 pci1: at device 3.0 (no driver attached) mlx0: port 0x1ffff00-0x1ffff7f mem 0x3fe7f00-0x3fe7f7f irq 16 at device 4.0 on pci1 mlx0: interrupting at IRQ 0x8 intA (vec 0xa00) mlx0: DAC960P/PD, 3 channels, firmware 2.42-0-00, 8MB RAM mlxd0: on mlx0 mlxd0: 20455MB (41891840 sectors) RAID 0 (offline) mlxd1: on mlx0 mlxd1: 4091MB (8378368 sectors) RAID 7 (offline) ata0 at port 0x3f6,0x1f0-0x1f7 irq 14 on isa0 ata0: interrupting at ISA irq 14 ata1 at port 0x376,0x170-0x177 irq 15 on isa0 ata1: interrupting at ISA irq 15 atkbdc0: at port 0x64,0x60 on isa0 atkbd0: irq 1 on atkbdc0 atkbd0: interrupting at ISA irq 1 fdc0: at port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on isa0 fdc0: interrupting at ISA irq 6 mcclock0: at port 0x70-0x71 on isa0 ppc0: at port 0x3bc-0x3c3 irq 7 on isa0 +ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode lpt0: on ppbus0 lpt0: Polled port ppi0: on ppbus0 ppc0: interrupting at ISA irq 7 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x0> sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0 at port 0x3f8-0x3ff irq 4 on isa0 sio0: type 16550A, console sio0: interrupting at ISA irq 4 sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A sio1: interrupting at ISA irq 3 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounters tick every 0.833 msec Timecounter "i8254" frequency 1193182 Hz Waiting 15 seconds for SCSI devices to settle de0: enabling 10baseT port da1 at isp0 bus 0 target 2 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 20.000MB/s transfers (10.000MHz, offset 12, 16bit), Tagged Queueing Enabled da1: 4091MB (8380080 512 byte sectors: 255H 63S/T 521C) da0 at isp0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-3 device da0: 20.000MB/s transfers (10.000MHz, offset 12, 16bit), Tagged Queueing Enabled da0: 8683MB (17783301 512 byte sectors: 255H 63S/T 1106C) cd0 at sym0 bus 0 target 5 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 10.000MB/s transfers (10.000MHz, offset 8) cd0: Attempt to query device size failed: NOT READY, Medium not present SMP: AP CPU #2 Launched! SMP: AP CPU #3 Launched! SMP: AP CPU #1 Launched! Mounting root from ufs:/dev/da0a calcru: negative time of 69761 usec for pid 54269 (install) de0: abnormal interrupt: transmit underflow (raising TX threshold to 96|256) de0: abnormal interrupt: transmit underflow (raising TX threshold to 128|512) de0: abnormal interrupt: transmit underflow (raising TX threshold to 160|1024) mlx0: command failed - rebuild successfully terminated [There are no disks actually hooked up to the Mylex controller and I'll delete it from the kernel when I build a custom config for this machine.] If anybody wants some used Memory Channel cards, I'd be happy to let go of them.... -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Dec 20 12:56:20 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B761F37B401 for ; Fri, 20 Dec 2002 12:56:17 -0800 (PST) Received: from obh.snafu.de (obh.snafu.de [213.73.92.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id C807D43EEC for ; Fri, 20 Dec 2002 12:56:15 -0800 (PST) (envelope-from holger@gruft.de) Received: from holger by obh.snafu.de with local (Exim 3.36 #1) id 18PUBq-000HRN-00 for freebsd-alpha@freebsd.org; Fri, 20 Dec 2002 21:56:14 +0100 Date: Fri, 20 Dec 2002 21:56:14 +0100 From: Holger Lamm To: freebsd-alpha@freebsd.org Subject: Betatest: mldonkey GUI Message-ID: <20021220205614.GA66828@gruft.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="eJnRUKwClWJh1Khz" Content-Disposition: inline User-Agent: Mutt/1.5.1i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --eJnRUKwClWJh1Khz Content-Type: multipart/mixed; boundary="opJtzjQTFsWo+cga" Content-Disposition: inline --opJtzjQTFsWo+cga Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi all! I'm trying to update the net/mldonkey port. Unfortunately, no matter what I do, I constantly get segmentation fault with the GTK GUI. Self-compiled, the OSF1 version, Linux version; static, shared. Maybe my EV4 is the problem. Do you want to try out my attached port on other machines? It is split into core and GUI. Feel free do download the other versions from the mldonkey web site (http://www.freesoftware.fsf.org/mldonkey/) and try them as well. Thank you, Holger --=20 "Computer games don't affect kids. If Pacman would have affected us as children, we would now run around in darkened rooms, munching pills and listening to repetetive music." --opJtzjQTFsWo+cga Content-Type: application/x-tar-gz Content-Disposition: attachment; filename="mldonkey.tar.gz" Content-Transfer-Encoding: base64 H4sIAP98Az4AA+1beXfaSBLPn4s+RQU7Y9g1QhKXQ4I3xCYOL9h4AW9mdjLjJ6QG9BASoxYh GYf97FvVEpdJwhyB2cz0L/FDtLqrq4+6upqRa/vekL3PPtgdNC2vlQoF/NQMrZSnT71U0Ohz jgdaqahpxZKBVR9ouqHr2gMo7JCnBSY8NAOABwPf7bPgc/VYwPfB0H4xmq9/z3EZ380u+MXr nzeMXKGE658z9KJc/33g3vpPA3M8ZoHKB1+wD01H0c7nP7n+RR3LSoVSsYgLX9CxfsHIlR6A 9gV5+CT+4ut/8DDbdbwsHyjKdav2ov5tJfnoUfT06BG9SmJ586JVvawkD++0WVI5r7euqpe1 yuHdy+ZlbZZV51tIUZwefA8PIWPD4V1cbQY/KOGAeUpiNLSdADLjlXdKz1EUZg18SGLp32f4 8QH6ARvjw5uMFTAzZNjI99z39OqDcqckrDXi33yjJASB1sTzHK8PE89mwUaNd8zCsmhYsyw9 iSEdHPw9O8tgNy7g4J7NRB8RPazxvFG7VOHM9Dw/hIgZQG6YFfrB+5UujmFkDhnwScDgvT+B gfmWAY4ZxoGPsgT4N3I4d3yPQ+jPKTkhmJ4NIZIy+6bjKTPlj1j/e/I/dFz3dl72pfog+f+M /tcNY6n/S0aB5L9U0qT87wMo/xMeCB2A+9RVcJjQeH1dLt/geKt95oVPlAPlAL5bbGwfHA/n zHXFHp9Op9lxIeM6XXyCsR+E0PMDfOVw4FbgjEPR/HoSAlH0zBET+35scj71AxuJIcX/LrWI Kt7Y2MZ1hkwQKgsSLzud65t2rVVBGYu/XlfbbfoazKlhxRGKptXrQwVFmhTUBuXkEwXF0kvV j5NPqWYyjVKPgs0gibJ+FALKpy1olOHw4RsP66NCGI0hhaSfuY7HOBJPPa2fptP4yvVxxupP FBw1M60BpKIqabhTPPYuBNSJqeyPB1msKx5T3/9YecN/+Ee6snjKUuXDt2bA7w71GepZA/uc 4T8ay8TE3tZXJHPqsekT8TZgP+FrmotyucV+mjAevU1d1DpQOYWjQRiOy9ms61umO/B5WM5r J1qWT7ojJ/znTxWS96OYtVTEwtF8oo9madSesFpME47Fgl/sOnNqTsKBHzg/myGqt9uuyR1r k8wxbJKgAeLYMqdBxHWK6GHpHy0PfzUs9P8l2jCyATvoY4v/Z5RKhTj+K5aKZAt0jAKk/t8L DuCKRXqbg+W7Lno3KMnCo6HdQMq8nFh4eAdwTr5L7JmVEwlDh+qkj3MIBi4kvn+NqhLLEy/F dELDHI3gaTS3z1im74Sh6rHwVGj0wxcBY8/b5+Wo/yy+yG7sx+O3oKu6IJ/VHmcNDfRiOX9S zuXQQPiTd1B7hy4l0lOum62O8EyX/FLRv2utdr15VUkYqqYrZ9VO7aLZqtfalQT2p1xW251a 67Zd71BJrC3RTjlMZU6oTjwnM3RVmy0ZgzdKYl6Rm2/RPTQHqud7fW+i+kE/a/tTz/VNe9kC d1jXZVn0nNsxg+iBxszOMtFzzOUMIy8zYLZ6eFdtnb2kt832TEE261cd/EPzl9iYTUVpXjW+ u33RbN1SIxyH6Y4HJji5k6KCKvj2+X/q10Yl8Z5x5ap5+/ym3jiPvr1uvWq3zioJZAgf0aEV zvGCNdvhYeB077GoLEKAxEdigAOwfSCPmZqOj8nP7eJ2GXJonlUvG4Cehhk42He706pfV5BY 8+xFvUGzX73pvGy22vD85qINZwPT67OG34dz9pa55ElzNUSD+qL6L3UQjlyxDi201SMmyjvN 8yYw2xjeogEeirqKMkaTlxmboTUoK4lnh3ft2vkMMmjq+YdlmPNhERp8oDhEcCPmYhkNw6no bjlNy1drdI/4hzV/ikjXWo3Zh6M1wmtu9gbttbeKYvuZ2OOKxlC/aneqjcZtHMTMQLTEdZwt thxRm0c7xMq8XMQ6a0TaZ7gKnZjGZu/rdD7dcq3323HA3jpsyoJf2vzelH6KfUV1ehjf9VJX TdqQuHPaaUH0UlCgmAyL6FFRyQsVGszxonIx+7M1Hs6rnerqAA7vqMU6HebZSEp8Or14Q60t x/2lF65WdrmnsmLtr19dXNba7eoFRr04DM9yJzaDp11uq6T8VJwydTQ8pXfoisXSDxX0YoUs J9NKEyWk4XiTd0KkG/Wrm28jIVaZy5l4jcriuv1de6YO3AXDH+sLxyA6e7Bi/0nWHa/n78DG bDv/MQqL+C9Xyhlk/4v5orT/+8DleQEDm7l6IBM5t0Bi32XEjlNxitTuz0YaY42c1TXMXO5E M6ySYZhGt3TSNR7rBd3sPs6VTE35NEWyR5nY5uMWXaXKWFFjOetxnlnFop03DKtb0E56Ocs+ yTFbK8m4YEdYyP942M+MGOdm/4uHAFvkX9e1/ML/L5VI/vNGXp7/7gWJaqdTu+qgX/e3ORYl ZUXJQL0nDjWnphfS2c/Q86cwwD98prOi+f45jo5NkkuHLAloNgGSc38tSZZYHIvSIZHtWxxS KwZT6Ah0nq2FtU+L7kNwuPAnTehiB47NzNUzqNHYNd+j0yAOqKboukCXAbnb2DVWiz0RGJhu LzP3zJktPAPs3+mtn9h2Wd8R58hplTq/dplJY1wc74YDMxQtaLDYw2f5zy7nQsW6OBLL90IT OQdnRJNAU0omNxiJ4xNk25+E88kNJt5iclUgbmiElunFjQW/8xFxwRTtZAzLcBrCAbDzyGUC SNEZczJulcX4DNmcH2Nn0TceZFUW9YNBlpax/IAlsZkfrRbyzH2XpY+hO4nGTjxcNTvQ93FF rOFDqZu/Yqzp/7GLTuCX72Nr/q+Yn/t/eq6QI/+vJPX/fkDh1Xq8uRZwbQaPqyXLQE/BaDqO yB49+ogqjEP7bdUo8t9WZ3EwsK3i+rnBttpzM7Wt3lKpb6tJBxLb6tw7r1it/QyVdDCCzUZf VN+uyb/lj0bM++IaQMi/pn1S/pf+XymnawXh/8n8/35QjY/lLNfBlRe5u9hzEGm65lsWeCyE MWNBJvQz9AlYMPWDIfpP5Cukpf3/irEm/zbj1mdE4LdiW/ynkc2P5T9Xiuy/IfM/e8HiEBqj LDPSBdmLzqtVfdD1l+HEqlJQPqoUVCXFGYM4QTKdTleDCxUtTDa694KhxVH85ijK/6Q3WvpR R6IVRoNRLMjZ2Awo/RRdHTCBlFAU84TMJWVF9KesS+9Z0DMtxo+pTOkGGNnRMGmAFzd1EP0R J3Oai4gr0584gisKBJtYJYAeM0OMATkQV6KVHzgYLpruYnLiSUODXcZ4rctC7J+isq7jOuF7 LOqZnIrIKREhHxaNJtZgXpXiw8B3sZRjRIphIiXlJkFARJFMyI7BGjBryCcjLkZJ0bgnlDMH ivQoKqYw3O9FwSDdiOoF/oiuYlASBNAlwmAwdEaotpXXr1+XV6e7FzDG/V44xQGoPd4T6ayF gpBq/s+I1Q2/qzvgv+L+b64k9L9R0nR5/3cfWFv/Hd0B2Xb/w8jpc/tfzBXE+W9O+v/7we+8 /6E/hnNmsVEXrdfvuAHyddzfuH51Qfy1b17QPekEicwe73RQ9gxEUu7+nQ76enHVvKxdXVQA sVYmSgD64VA3/g9vf/yGyw23OO+fuViwpaVxr+lHMvovLjszePq7kva0WHHO/mNJ+bi7DCmV MrB3YWBaoaDy0Ea585idalSvLqLLDbWzl83by/bFDJJxQsKizIfJyxClJlapAbWrPHVNr3+a vN9cOMnRO/A9Rm4i845tdtwL8D8KgWlZ6GtyeJiMbxUQgbPr1bl09BMvi/N4GycLOc6Lg1ub +p1F91ju7Yrb+7V/6d0Eid1jzf7vKAe87fw/pxfn+d9CURe//9GMnLT/+8Avyf+Ky/z4n2Le nhPwUASQIhe4SMPO08AYhY4jJdX3KY1JbTaCak6/o0EFhqG40FkUyjIK1rFHYa021BqVCzZE ipdjkD8ZEwNBRAAD557TV6XS+NXYkP8d5AC3yb+Wz83jv7x4r+cLUv73g7V0Hjm09wsMKVR/ ZmzI/w5ygNvyf1qxsDz/143I/sv4fy+YH4VHP9pb2uqPZvziA26pEf482JD/HeQAt97/1EsL +c9TLID2n85/pfzvHl9T/q+zEof4vZ5jOaa7yOWJq5lYkeE4XN/rxxnB+L6pqjTo18QUqvgi mxen2mDEwoFvc0hFucNjShymxbkVXXOkS5i+p5he1Kjrv6N+4ouR0QzZPuMyRyhzhF8p1vT/ jn4D9Kt+/2OI/E9e+n/7gfz9j4SEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISE hISEhISExNeD/wFFZmbvAHgAAA== --opJtzjQTFsWo+cga-- --eJnRUKwClWJh1Khz Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+A4PugdO/JOxNDBQRAvT0AJ9snS+RO7nzikUrMEghsvqkKPIz+ACgnxaF my5OQIZUW4Q7hPVGrTT1EzI= =RQBF -----END PGP SIGNATURE----- --eJnRUKwClWJh1Khz-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Dec 20 16:10:35 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C34B37B401 for ; Fri, 20 Dec 2002 16:10:33 -0800 (PST) Received: from c18609.belrs1.nsw.optusnet.com.au (c18609.belrs1.nsw.optusnet.com.au [210.49.80.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFAD743EDA for ; Fri, 20 Dec 2002 16:10:19 -0800 (PST) (envelope-from peterjeremy@optushome.com.au) Received: from server.c18609.belrs1.nsw.optusnet.com.au (localhost.c18609.belrs1.nsw.optusnet.com.au [127.0.0.1]) by server.c18609.belrs1.nsw.optusnet.com.au (8.12.6/8.12.6) with ESMTP id gBL0ACtI000468 for ; Sat, 21 Dec 2002 11:10:12 +1100 (EST) (envelope-from peter@server.c18609.belrs1.nsw.optusnet.com.au) Received: (from peter@localhost) by server.c18609.belrs1.nsw.optusnet.com.au (8.12.6/8.12.6/Submit) id gBL0AB2v000467 for freebsd-alpha@freebsd.org; Sat, 21 Dec 2002 11:10:11 +1100 (EST) Date: Sat, 21 Dec 2002 11:10:11 +1100 From: Peter Jeremy To: freebsd-alpha@freebsd.org Subject: RC1 experiences Message-ID: <20021221001011.GA385@server.c18609.belrs1.nsw.optusnet.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I know it's a bit late, but I've just had the opportunity to check 5.0-DP2 and 5.0-RC1 on my AlphaServer 400. On the positive side, both now find the ATA channels that are physically present (though DEC didn't mention them in the doc'n). I'll see if I've got some spare ATA devices and see if it actually works at some stage. On the negative side: Firstly, I have a TI ThunderLAN based NIC which works OK in -STABLE, but is very cranky in -CURRENT. When it's ifconfig'd, it reports: tl0: adapter check: 100007 and sometimes reports tl0: device timeout and consistently refuses to either send or receive packets. In order to get it to both send and receive packets, it's necessary to down and up the interface several times, as well as disconnecting and reconnecting the switch. Generally, it'll receive packets after one down/up/reconnect cycle but may take several more before outgoing packets work. Both the switch and the NIC consistently auto-negotiate 100baseTX full duplex, it's just actually getting the data to flow that is the problem (the switch is a cheap dumb one that only supports auto-negotiate). RC1 seems worse than DP2, but I might have just been lucky when I was booting DP2. Once I get it to come up, it seems to work OK. The relevant probe messages are: tl0: port 0x10180-0x1018f mem 0x82010180-0x8201018f irq 9 at device 12.0 on pci0 tl0: interrupting at ISA irq 9 tl0: Ethernet address: 00:80:5f:8b:e2:3b miibus0: on tl0 nsphy0: on miibus0 nsphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto tlphy0: on miibus0 tlphy0: 10base2/BNC, 10base5/AUI Secondly, there seem to be still a few rough edges in sysinstall: It reports that the installation was "complete with errors" - presumably because there are no packages on the CD-ROM. This makes it skip the post-install configuration section. When I work through the post- install configuration manually, I don't seem to have the option to enable ntpd (though I might have missed it). Thirdly, performance is still significantly below -STABLE (NFS is CPU- limited at about half the speed of -STABLE). I presume (hope) this is just the impact of all the debug code still in -CURRENT. At this stage, my only critical concern is that tl0 won't come up automatically. Anyone got any ideas? Please copy me on any responses. Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Dec 21 6:45: 7 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E6B837B401 for ; Sat, 21 Dec 2002 06:45:06 -0800 (PST) Received: from smtp.comcast.net (smtp.comcast.net [24.153.64.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA26D43EE8 for ; Sat, 21 Dec 2002 06:45:05 -0800 (PST) (envelope-from idnopheq@comcast.net) Received: from icomcast.net (lb-ldap-155.icomcast.net [172.20.3.155]) by mtaout01.icomcast.net (iPlanet Messaging Server 5.2 HotFix 1.07 (built Nov 25 2002)) with ESMTP id <0H7H00I6T4XL1M@mtaout01.icomcast.net> for alpha@freebsd.org; Sat, 21 Dec 2002 09:44:09 -0500 (EST) Received: from [172.20.3.196] by msgstore03.icomcast.net (mshttpd); Sat, 21 Dec 2002 14:44:09 +0000 (GMT) Date: Sat, 21 Dec 2002 14:44:09 +0000 (GMT) From: Dexter Coffin Subject: linux-mozilla 1.2.1 (non-ports) runs but cannot connect To: alpha@freebsd.org Message-id: MIME-version: 1.0 X-Mailer: iPlanet Messenger Express 5.2 HotFix 1.07 (built Nov 25 2002) Content-type: text/plain; charset=us-ascii Content-language: en Content-transfer-encoding: 7BIT Content-disposition: inline X-Accept-Language: en Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, All! Here is the story thus far. I had linux-mozilla 1.0.0 running fine on my 4.7-STABLE FreeBSD 4.7-STABLE Alpha box. But another linux port messed up my linux_base, so I started over. I acquired Mozilla 1.2.1 from rpmfind.net, stepping through each missing component until I was finally able to get 1.2.1 to run. And so it does. However, I can only connect to localhost. Everything else, whether host name or IP address, errors immediately with "The connection was refused when attempting to contact {...}". Going to the same sites with OSF1-Netscape and native Konquerer from the same host works fine. I think I must have botched my linux_base hook into the native TCP/IP, but I cannot see where or how? tcpdump shows the name resolution is working and some communication with the site occurs. Anyone have advice in troubleshooting this? Or am I stuck downgrading my linux-mozilla? Cheers! Dex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Dec 21 6:54:47 2002 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB6B537B401 for ; Sat, 21 Dec 2002 06:54:46 -0800 (PST) Received: from smtp.comcast.net (smtp.comcast.net [24.153.64.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8263743EDA for ; Sat, 21 Dec 2002 06:54:46 -0800 (PST) (envelope-from idnopheq@comcast.net) Received: from icomcast.net (lb-ldap-155.icomcast.net [172.20.3.155]) by mtaout01.icomcast.net (iPlanet Messaging Server 5.2 HotFix 1.07 (built Nov 25 2002)) with ESMTP id <0H7H00IRX5E11M@mtaout01.icomcast.net> for alpha@freebsd.org; Sat, 21 Dec 2002 09:54:01 -0500 (EST) Received: from [172.20.3.196] by msgstore03.icomcast.net (mshttpd); Sat, 21 Dec 2002 14:54:01 +0000 (GMT) Date: Sat, 21 Dec 2002 14:54:01 +0000 (GMT) From: Dexter Coffin Subject: Evolution 1.2 crashes on start To: alpha@freebsd.org Message-id: MIME-version: 1.0 X-Mailer: iPlanet Messenger Express 5.2 HotFix 1.07 (built Nov 25 2002) Content-type: text/plain; charset=us-ascii Content-language: en Content-transfer-encoding: 7BIT Content-disposition: inline X-Accept-Language: en Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, All! Anyone been able to run Evolution 1.2 on FreeBSD Alpha? It builds fine, but crashes on startup (right after the splash screen finishes). I'm trying to build right now without ldap support (saw that on a list somewhere). I've tried removing my ~/evolution. I tried a few other minor things. Any other thoughts? Cheers! Dex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message