From owner-freebsd-current Sun Aug 17 00:48:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id AAA15310 for current-outgoing; Sun, 17 Aug 1997 00:48:20 -0700 (PDT) Received: from areality.dyndns.com (12pm01.ka.net [207.51.78.41]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA15303 for ; Sun, 17 Aug 1997 00:48:15 -0700 (PDT) Received: from localhost (wangel@localhost) by areality.dyndns.com (8.8.5/8.8.5) with SMTP id DAA11150 for ; Sun, 17 Aug 1997 03:47:57 -0400 (EDT) Date: Sun, 17 Aug 1997 03:47:55 -0400 (EDT) From: Gary Roberts To: freebsd-current@freebsd.org Subject: Problem...probably me Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Is anyone else having this problem when doing a 'make world'. This just happened the other nite: ===> lib/libncurses ".depend", line 541: Need an operator make: fatal errors encountered -- cannot continue *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. # ----- Not sure I did something or what. Make depend doesn't seem to fix it? Thanks Gary From owner-freebsd-current Sun Aug 17 02:45:54 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA19632 for current-outgoing; Sun, 17 Aug 1997 02:45:54 -0700 (PDT) Received: from silver.sms.fi (silver.sms.fi [194.111.122.17]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA19626; Sun, 17 Aug 1997 02:45:47 -0700 (PDT) Received: (from pete@localhost) by silver.sms.fi (8.8.6/8.7.3) id MAA00841; Sun, 17 Aug 1997 12:45:33 +0300 (EEST) Date: Sun, 17 Aug 1997 12:45:33 +0300 (EEST) Message-Id: <199708170945.MAA00841@silver.sms.fi> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit From: Petri Helenius To: "Justin T. Gibbs" Cc: current@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Possible aic7xxx fix. In-Reply-To: <199708120448.WAA04805@pluto.plutotech.com> References: <199708120448.WAA04805@pluto.plutotech.com> X-Mailer: VM 6.22 under 19.15p7 XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Justin T. Gibbs writes: > For those of you who have been experiencing the "Timedout while idle" > and other aic7xxx breakage, please try the following patch and let > me know if it helps you out. > Assuming this is the same patch committed to RELENG_2_2 on 13th, I'm reporting that this does not help the problems I've been experiencing. The symptom is as earlier, when the SCSI bus reset is issued, the system hangs. Pete > Thanks > __ > Justin T. Gibbs > =========================================== > FreeBSD - Turning PCs into workstations > =========================================== > > Index: dev/aic7xxx/aic7xxx.reg > =================================================================== > RCS file: /usr/cvs/src/sys/dev/aic7xxx/aic7xxx.reg,v > retrieving revision 1.4 > diff -c -r1.4 aic7xxx.reg > *** aic7xxx.reg 1997/06/27 19:38:39 1.4 > --- aic7xxx.reg 1997/08/12 04:39:03 > *************** > *** 1079,1084 **** > --- 1079,1099 ---- > CUR_SCBID { > size 1 > } > + /* > + * Running count of commands placed in > + * the QOUTFIFO. This is cleared by the > + * kernel driver every FIFODEPTH commands. > + */ > + CMDOUTCNT { > + size 1 > + } > + /* > + * Maximum number of entries allowed in > + * the QOUT/INFIFO. > + */ > + FIFODEPTH { > + size 1 > + } > ARG_1 { > size 1 > mask SEND_MSG 0x80 > Index: dev/aic7xxx/aic7xxx.seq > =================================================================== > RCS file: /usr/cvs/src/sys/dev/aic7xxx/aic7xxx.seq,v > retrieving revision 1.74 > diff -c -r1.74 aic7xxx.seq > *** aic7xxx.seq 1997/06/27 19:38:42 1.74 > --- aic7xxx.seq 1997/08/12 04:32:54 > *************** > *** 643,648 **** > --- 643,657 ---- > > complete: > /* Post the SCB and issue an interrupt */ > + .if ( SCB_PAGING ) > + /* > + * Spin loop until there is space > + * in the QOUTFIFO. > + */ > + mov A, FIFODEPTH; > + cmp CMDOUTCNT, A je .; > + inc CMDOUTCNT; > + .endif > mov QOUTFIFO,SCB_TAG; > mvi INTSTAT,CMDCMPLT; > test SCB_CONTROL, ABORT_SCB jz dma_next_scb; > Index: i386/scsi/aic7xxx.c > =================================================================== > RCS file: /usr/cvs/src/sys/i386/scsi/aic7xxx.c,v > retrieving revision 1.120 > diff -c -r1.120 aic7xxx.c > *** aic7xxx.c 1997/07/20 16:21:34 1.120 > --- aic7xxx.c 1997/08/12 04:41:58 > *************** > *** 784,789 **** > --- 784,798 ---- > > int_cleared = 0; > while (qoutcnt = (ahc_inb(ahc, QOUTCNT) & ahc->qcntmask)) { > + if ((ahc->flags & AHC_PAGESCBS) != 0) { > + ahc->cmdoutcnt += qoutcnt; > + if (ahc->cmdoutcnt >= ahc->qfullcount) { > + pause_sequencer(ahc); > + ahc_outb(ahc, CMDOUTCNT, 0); > + unpause_sequencer(ahc, > + /*unpause_always*/FALSE); > + } > + } > for (; qoutcnt > 0; qoutcnt--) { > scb_index = ahc_inb(ahc, QOUTFIFO); > scb = ahc->scb_data->scbarray[scb_index]; > *************** > *** 2305,2310 **** > --- 2314,2322 ---- > * their QCount registers. > */ > ahc_outb(ahc, QCNTMASK, ahc->qcntmask); > + > + ahc_outb(ahc, FIFODEPTH, ahc->qfullcount); > + ahc_outb(ahc, CMDOUTCNT, 0); > > /* We don't have any waiting selections */ > ahc_outb(ahc, WAITING_SCBH, SCB_LIST_NULL); > Index: i386/scsi/aic7xxx.h > =================================================================== > RCS file: /usr/cvs/src/sys/i386/scsi/aic7xxx.h,v > retrieving revision 1.41 > diff -c -r1.41 aic7xxx.h > *** aic7xxx.h 1997/06/27 19:39:20 1.41 > --- aic7xxx.h 1997/08/12 04:36:46 > *************** > *** 265,270 **** > --- 265,271 ---- > * waiting for space in the QINFIFO. > */ > u_int8_t activescbs; > + u_int8_t cmdoutcnt; > u_int16_t needsdtr_orig; /* Targets we initiate sync neg with */ > u_int16_t needwdtr_orig; /* Targets we initiate wide neg with */ > u_int16_t needsdtr; /* Current list of negotiated targets */ From owner-freebsd-current Sun Aug 17 02:56:52 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA20215 for current-outgoing; Sun, 17 Aug 1997 02:56:52 -0700 (PDT) Received: from genesis.atrad.adelaide.edu.au (genesis.atrad.adelaide.edu.au [129.127.96.120]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA20210; Sun, 17 Aug 1997 02:56:47 -0700 (PDT) Received: (from msmith@localhost) by genesis.atrad.adelaide.edu.au (8.8.5/8.7.3) id TAA04178; Sun, 17 Aug 1997 19:26:17 +0930 (CST) From: Michael Smith Message-Id: <199708170956.TAA04178@genesis.atrad.adelaide.edu.au> Subject: Re: Problem with my Wincast, fxtv In-Reply-To: <199708170614.XAA01038@rah.star-gate.com> from Amancio Hasty at "Aug 16, 97 11:14:15 pm" To: hasty@rah.star-gate.com (Amancio Hasty) Date: Sun, 17 Aug 1997 19:26:17 +0930 (CST) Cc: mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Amancio Hasty stands accused of saying: > > Next release of the sound driver will not use isa_dmastatus from isa.c > rather I will duplicate the functionality in the sound driver. Am I the only person that thinks that this is unbelievably stupid? All of a sudden, the sound drivers are the only kernel subsystem that need PnP support, and now ISA DMA support too? Please spare a few seconds thought for the integrity of the system as a whole, rather than as a vehicle for your pet projects... > Amancio -- ]] Mike Smith, Software Engineer msmith@gsoft.com.au [[ ]] Genesis Software genesis@gsoft.com.au [[ ]] High-speed data acquisition and (GSM mobile) 0411-222-496 [[ ]] realtime instrument control. (ph) +61-8-8267-3493 [[ ]] Unix hardware collector. "Where are your PEZ?" The Tick [[ From owner-freebsd-current Sun Aug 17 03:52:36 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA22793 for current-outgoing; Sun, 17 Aug 1997 03:52:36 -0700 (PDT) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA22788 for ; Sun, 17 Aug 1997 03:52:30 -0700 (PDT) Received: (from uucp@localhost) by news1.gtn.com (8.7.2/8.7.2) with UUCP id MAA17795 for current@FreeBSD.org; Sun, 17 Aug 1997 12:30:44 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.7/8.8.7) id MAA04852; Sun, 17 Aug 1997 12:25:41 +0200 (CEST) Message-ID: <19970817122541.07167@klemm.gtn.com> Date: Sun, 17 Aug 1997 12:25:41 +0200 From: Andreas Klemm To: current@FreeBSD.org Subject: make world fails (mbuf/malloc kernel changes ???) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.79 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-freebsd-current@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk ===> usr.bin/netstat cc -nostdinc -pipe -O -I/usr/obj/usr/src/tmp/usr/include -c /usr/src/usr.bin/n etstat/if.c cc -nostdinc -pipe -O -I/usr/obj/usr/src/tmp/usr/include -c /usr/src/usr.bin/n etstat/inet.c cc -nostdinc -pipe -O -I/usr/obj/usr/src/tmp/usr/include -c /usr/src/usr.bin/n etstat/main.c cc -nostdinc -pipe -O -I/usr/obj/usr/src/tmp/usr/include -c /usr/src/usr.bin/n etstat/mbuf.c /usr/src/usr.bin/netstat/mbuf.c:65: `MT_SOCKET' undeclared here (not in a functi on) /usr/src/usr.bin/netstat/mbuf.c:65: initializer element for `mbtypes[4].mt_type' is not constant /usr/src/usr.bin/netstat/mbuf.c:66: `MT_PCB' undeclared here (not in a function) /usr/src/usr.bin/netstat/mbuf.c:66: initializer element for `mbtypes[5].mt_type' is not constant /usr/src/usr.bin/netstat/mbuf.c:68: `MT_HTABLE' undeclared here (not in a functi on) /usr/src/usr.bin/netstat/mbuf.c:68: initializer element for `mbtypes[7].mt_type' is not constant /usr/src/usr.bin/netstat/mbuf.c:69: `MT_ATABLE' undeclared here (not in a functi on) /usr/src/usr.bin/netstat/mbuf.c:69: initializer element for `mbtypes[8].mt_type' is not constant /usr/src/usr.bin/netstat/mbuf.c:73: `MT_RIGHTS' undeclared here (not in a functi on) /usr/src/usr.bin/netstat/mbuf.c:73: initializer element for `mbtypes[12].mt_type ' is not constant /usr/src/usr.bin/netstat/mbuf.c:74: `MT_IFADDR' undeclared here (not in a functi on) /usr/src/usr.bin/netstat/mbuf.c:74: initializer element for `mbtypes[13].mt_type ' is not constant *** Error code 1 Stop. *** Error code 1 Stop. -- Andreas Klemm | klemm.gtn.com - powered by Symmetric MultiProcessor FreeBSD http://www.freebsd.org/~fsmp/SMP/SMP.html http://www.freebsd.org/~fsmp/SMP/benches.html From owner-freebsd-current Sun Aug 17 05:29:54 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA25380 for current-outgoing; Sun, 17 Aug 1997 05:29:54 -0700 (PDT) Received: from labinfo.iet.unipi.it (labinfo.iet.unipi.it [131.114.9.5]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id FAA25370; Sun, 17 Aug 1997 05:29:49 -0700 (PDT) Received: from localhost (luigi@localhost) by labinfo.iet.unipi.it (8.6.5/8.6.5) id NAA09146; Sun, 17 Aug 1997 13:21:31 +0200 From: Luigi Rizzo Message-Id: <199708171121.NAA09146@labinfo.iet.unipi.it> Subject: Re: Problem with my Wincast, fxtv To: msmith@atrad.adelaide.edu.au (Michael Smith) Date: Sun, 17 Aug 1997 13:21:30 +0200 (MET DST) Cc: hasty@rah.star-gate.com, mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG In-Reply-To: <199708170956.TAA04178@genesis.atrad.adelaide.edu.au> from "Michael Smith" at Aug 17, 97 07:25:58 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Amancio Hasty stands accused of saying: > > > > Next release of the sound driver will not use isa_dmastatus from isa.c > > rather I will duplicate the functionality in the sound driver. > > Am I the only person that thinks that this is unbelievably stupid? > > All of a sudden, the sound drivers are the only kernel subsystem that > need PnP support, and now ISA DMA support too? Please spare a few > seconds thought for the integrity of the system as a whole, rather > than as a vehicle for your pet projects... I think amancio has to fight with backward compatibility, that's why he wants to ship a standalone driver (guspnpXX.tgz) with all the pieces he needs. BUt of course, in the long term, Mike is right. Cheers Luigi From owner-freebsd-current Sun Aug 17 05:56:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA26235 for current-outgoing; Sun, 17 Aug 1997 05:56:31 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA26229 for ; Sun, 17 Aug 1997 05:56:25 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id WAA16866; Sun, 17 Aug 1997 22:47:17 +1000 Date: Sun, 17 Aug 1997 22:47:17 +1000 From: Bruce Evans Message-Id: <199708171247.WAA16866@godzilla.zeta.org.au> To: dima@tejblum.dnttm.rssi.ru, freebsd-current@FreeBSD.ORG Subject: Re: make -DNOCLEAN world Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >-DNOCLEAN now almost useless in make world. 'make bootstrap' clobber >subdirectories in /usr/obj/usr/src/tmp/usr/include, making them symlinks, >and 'make includes' replace the symlinks to directories again. So, almost all >source file rebuilded. Doesn't `install -C' preserve the timestamps? Bruce From owner-freebsd-current Sun Aug 17 06:40:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA27758 for current-outgoing; Sun, 17 Aug 1997 06:40:08 -0700 (PDT) Received: from morse.satech.net.au (morse.satech.net.au [203.56.210.66]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA27751 for ; Sun, 17 Aug 1997 06:40:02 -0700 (PDT) Received: from matte.box.net.au (matte.satech.net.au [203.1.91.219]) by morse.satech.net.au (8.8.5/8.8.5.SAT.GJR.970426) with ESMTP id XAA01448; Sun, 17 Aug 1997 23:10:01 +0930 Received: from box.net.au (localhost [127.0.0.1]) by matte.box.net.au (8.8.7/8.7.3) with ESMTP id WAA01808; Sun, 17 Aug 1997 22:59:57 +0930 (CST) Message-ID: <33F6FCD4.3F253FDB@box.net.au> Date: Sun, 17 Aug 1997 22:59:56 +0930 From: Matthew Thyer X-Mailer: Mozilla 4.02b7 [en] (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: Michael Class CC: freebsd-current@FreeBSD.ORG Subject: Re: Native FreeBSD Communicator-Beta - Problem References: <33E59F66.73707038@hpbbse.bbn.hp.com> Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I have found that I need to have user-mode ppp running before I start
Communicator.

Michael Class wrote:

Hello,

I just tried the native freebsd communicator 4.02b7 version and had a
small problem:

Communicator only started for user_pref the first time, it hanged next
time.

Solution:

Get rid of the line:
user_pref("browser.startup.license_accepted", "228 4.02b7");
in preferences.js. This will result in popping the licence dialog all
the time, but at least it then worked for me.

So my startupscript looks like this:

#!/bin/sh
XKEYSYMDB=/usr/local/netscape/XKeysymDB
XNLSPATH=/usr/local/netscape/nls/
MOZILLA_HOME=/usr/local/netscape
#CLASSPATH=/usr/local/netscape/java/classes/java40.jar
LANG=C
LC_CTYPE=C
export XKEYSYMDB XNLSPATH CLASSPATH LANG LC_CTYPE MOZILLA_HOME
#nofpe /usr/local/netscape/netscape $* >/tmp/comm.out 2>&1 &
mv ~/.netscape/preferences.js ~/.netscape/preferences.js.bak
cat  ~/.netscape/preferences.js.bak | grep -v "228 4.02b7"
>~/.netscape/preferences.js
/usr/local/netscape/netscape $* >/tmp/comm.out 2>&1 &

Same expierience for all of you? Other solutions?

Michael

--
-----------------------------------------------------------------------
Michael Class                            E-Mail: michael_class@hp.com
Internet/Intranet Solutions Center       Phone:  +49 7031 14-3707
CSO Europe                               Fax:    +49 7031 14-4196
            Hewlett-Packard GmbH, PO Box 1430, 71004 Boeblingen
-----------------------------------------------------------------------

                                                  ------------------------------------------------------------------------

  Michael Class <michael_class@hpbbse.bbn.hp.com>
  Technical Consultant
  Hewlett-Packard GmbH

  Michael Class
  Technical Consultant  <michael_class@hpbbse.bbn.hp.com>
  Hewlett-Packard GmbH
  Herrenbergerstr. 130  Work: +49 7031 14-3707
  Boeblingen            Fax: +49 7031 14-4196
  Baden-Wuerttemberg    Netscape Conference Address
  71004                 Netscape Conference DLS Server
  Germany
  Additional Information:
  Last Name     Class
  First Name    Michael

 
-- 
/=====================================================================\
|  Work: Matthew.Thyer@dsto.defence.gov.au | Home: thyerm@box.net.au  |
\=====================================================================/
"If it is true that our Universe has a zero net value for all conserved
quantities, then it may simply be a fluctuation of the vacuum of some
larger space in which our Universe is imbedded. In answer to the
question of why it happened, I offer the modest proposal that our
Universe is simply one of those things which happen from time to time."
 E. P. Tryon   from "Nature" Vol.246 Dec.14, 1973
  From owner-freebsd-current Sun Aug 17 06:45:59 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA27972 for current-outgoing; Sun, 17 Aug 1997 06:45:59 -0700 (PDT) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA27967 for ; Sun, 17 Aug 1997 06:45:54 -0700 (PDT) Received: (from uucp@localhost) by news1.gtn.com (8.7.2/8.7.2) with UUCP id PAA11427 for current@FreeBSD.ORG; Sun, 17 Aug 1997 15:30:24 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.7/8.8.7) id PAA14501; Sun, 17 Aug 1997 15:23:21 +0200 (CEST) Message-ID: <19970817152321.22183@klemm.gtn.com> Date: Sun, 17 Aug 1997 15:23:21 +0200 From: Andreas Klemm To: current@FreeBSD.ORG Subject: another make world compile problem, the previous is fixed Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.79 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk cc -nostdinc -pipe -O -DGTAGS -I/usr/src/usr.bin/vi -I/usr/src/usr.bin/vi/../../contrib/nvi -I/usr/src/usr.bin/vi/../../contrib/nvi/include -DHAVE_TCL_INTERP -I/usr/obj/usr/src/tmp/usr/include -c /usr/src/usr.bin/vi/../../contrib/nvi/tcl_api/tcl.c /usr/src/usr.bin/vi/../../contrib/nvi/tcl_api/tcl.c:29: tcl.h: No such file or directory /usr/src/usr.bin/vi/../../contrib/nvi/tcl_api/tcl.c:36: parse error before `*' /usr/src/usr.bin/vi/../../contrib/nvi/tcl_api/tcl.c:37: parse error before `*' /usr/src/usr.bin/vi/../../contrib/nvi/tcl_api/tcl.c:61: parse error before `ClientData' /usr/src/usr.bin/vi/../../contrib/nvi/tcl_api/tcl.c:61: warning: data definition has no type or storage class /usr/src/usr.bin/vi/../../contrib/nvi/tcl_api/tcl.c:62: parse error before `*' /usr/src/usr.bin/vi/../../contrib/nvi/tcl_api/tcl.c:62: warning: data definition has no type or storage class /usr/src/usr.bin/vi/../../contrib/nvi/tcl_api/tcl.c:65: parse error before `{' /usr/src/usr.bin/vi/../../contrib/nvi/tcl_api/tcl.c:89: parse error before `ClientData' /usr/src/usr.bin/vi/../../contrib/nvi/tcl_api/tcl.c:89: warning: data definition has no type or storage class -- Andreas Klemm | klemm.gtn.com - powered by Symmetric MultiProcessor FreeBSD http://www.freebsd.org/~fsmp/SMP/SMP.html http://www.freebsd.org/~fsmp/SMP/benches.html From owner-freebsd-current Sun Aug 17 07:11:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id HAA29823 for current-outgoing; Sun, 17 Aug 1997 07:11:08 -0700 (PDT) Received: from itojun.csl.sony.co.jp (root@itojun.csl.sony.co.jp [133.138.1.134]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA29818 for ; Sun, 17 Aug 1997 07:11:03 -0700 (PDT) From: itojun@itojun.org Received: from localhost (itojun@localhost [127.0.0.1]) by itojun.csl.sony.co.jp (8.8.5/3.3W3) with ESMTP id XAA00642; Sun, 17 Aug 1997 23:08:41 +0900 (JST) To: Andreas Klemm Cc: current@freebsd.org Subject: Re: another make world compile problem, the previous is fixed X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 References: <19970817152321.22183@klemm.gtn.com> In-reply-to: Andreas Klemm 's message of Sun, 17 Aug 1997 15:23:21 +0200. <19970817152321.22183@klemm.gtn.com> X-Mailer: comp (MHng project) version 1997/08/04 03:38:46, by Jun-ichiro Itoh MIME-Version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit Content-ID: Date: Sun, 17 Aug 1997 23:08:40 +0900 Message-ID: <639.871826920@itojun.csl.sony.co.jp> Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >cc -nostdinc -pipe -O -DGTAGS -I/usr/src/usr.bin/vi -I/usr/src/usr.bin/vi/../../contrib/nvi -I/usr/src/usr.bin/vi/../../contrib/nvi/include -DHAVE_TCL_INTERP -I/usr/obj/usr/src/tmp/usr/include -c /usr/src/usr.bin/vi/../../contrib/nvi/tcl_api/tcl.c I'm not familiar with /usr/src/usr.bin/vi policy, but... is it really necessery to compile in tcl interpreter into /usr/bin/vi? (I'm familiar with nvi itself) itojun From owner-freebsd-current Sun Aug 17 07:57:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id HAA02545 for current-outgoing; Sun, 17 Aug 1997 07:57:04 -0700 (PDT) Received: from helios.dnttm.ru (root@dnttm.wave.ras.ru [194.85.104.197]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA02539 for ; Sun, 17 Aug 1997 07:56:59 -0700 (PDT) Received: (from uucp@localhost) by helios.dnttm.ru (8.8.5/8.8.5/IP-3) with UUCP id SAA06704; Sun, 17 Aug 1997 18:52:57 +0400 Received: from tejblum.dnttm.rssi.ru (localhost [127.0.0.1]) by tejblum.dnttm.rssi.ru (8.8.7/8.8.5) with ESMTP id SAA01403; Sun, 17 Aug 1997 18:55:06 +0400 (MSD) Message-Id: <199708171455.SAA01403@tejblum.dnttm.rssi.ru> X-Mailer: exmh version 2.0gamma 1/27/96 To: Bruce Evans cc: freebsd-current@FreeBSD.ORG Subject: Re: make -DNOCLEAN world In-reply-to: Your message of "Sun, 17 Aug 1997 22:47:17 +1000." <199708171247.WAA16866@godzilla.zeta.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 17 Aug 1997 18:55:02 +0400 From: Dmitrij Tejblum Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > >-DNOCLEAN now almost useless in make world. 'make bootstrap' clobber > >subdirectories in /usr/obj/usr/src/tmp/usr/include, making them symlinks, > >and 'make includes' replace the symlinks to directories again. So, almost all > >source file rebuilded. > > Doesn't `install -C' preserve the timestamps? No. To quote the manpage: -C Copy the file, as if the -c option is specified, except if the target file already exists and the files are the same, then don't change the modification time of the target. Dima From owner-freebsd-current Sun Aug 17 09:21:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA06957 for current-outgoing; Sun, 17 Aug 1997 09:21:31 -0700 (PDT) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id JAA06951 for ; Sun, 17 Aug 1997 09:21:26 -0700 (PDT) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id SAA19171; Sun, 17 Aug 1997 18:21:25 +0200 Received: (from j@localhost) by uriah.heep.sax.de (8.8.7/8.8.5) id SAA02238; Sun, 17 Aug 1997 18:11:27 +0200 (MET DST) Message-ID: <19970817181126.TG01537@uriah.heep.sax.de> Date: Sun, 17 Aug 1997 18:11:26 +0200 From: j@uriah.heep.sax.de (J Wunsch) To: freebsd-current@FreeBSD.ORG Cc: thyerm@box.net.au (Matthew Thyer) Subject: Re: Native FreeBSD Communicator-Beta - Problem References: <33E59F66.73707038@hpbbse.bbn.hp.com> <33F6FCD4.3F253FDB@box.net.au> X-Mailer: Mutt 0.60_p2-3,5,8-9 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <33F6FCD4.3F253FDB@box.net.au>; from Matthew Thyer on Aug 17, 1997 22:59:56 +0930 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Matthew Thyer wrote: > > I have found that I need to have user-mode ppp running before I start >
Communicator. Well, you aren't going to make many friends by posting HTML. At best you'll be ignored. (I was going to ignore the mail myself, but thought it would be fair to give a warning.) -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-current Sun Aug 17 09:50:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA08519 for current-outgoing; Sun, 17 Aug 1997 09:50:05 -0700 (PDT) Received: from wall.jhs.no_domain (vector.muc.ditec.de [194.120.126.35]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id JAA08468 for ; Sun, 17 Aug 1997 09:50:00 -0700 (PDT) Received: from desk.jhs.no_domain (localhost [127.0.0.1]) by desk.jhs.no_domain (8.8.5/8.8.5) with ESMTP id QAA07750; Sun, 17 Aug 1997 16:50:21 +0200 (MET DST) Message-Id: <199708171450.QAA07750@desk.jhs.no_domain> To: current@freebsd.org cc: Shimon@i-Connect.Net Subject: "Content-Type: text/plain; charset=iso-8859-8" From: "Julian H. Stacey" Reply-To: "Julian H. Stacey" X-Email: Home: Lists: X-web: http://www.freebsd.org/~jhs/ X-address: Holz Strasse 27d, 80469 Munich, Germany X-tel: Home +49.89.268616, Work +49.89.607.29788 Fax +49.89.2608126, Data +49.89.26023276 X-company: Vector Systems Ltd, Unix & Internet Consultants. X-software: FreeBSD (Unix) + EXMH 1.6.9 (PGP key on web) Date: Sun, 17 Aug 1997 16:50:18 +0200 Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Each time I read a freebsd list mail item from Simon Shapiro (on current & stable lists) using my EXMH 1.6.9 his mail displays in a truly horrible font, partially thickened (like numbers on a bank cheque, hell to read) I asked him about it, but he didn't know what I meant, so I tracked it down, it's the "; charset=iso-8859-8" component of his Content-Type: text/plain; charset=iso-8859-8 I don't see it from anyone else. I'd like to know: - Do other people see this truly horrible font ? - is his header OK / not OK ?, - or is it my mail reader (EXMH 1.6.9) throwing a fit ? (& why ?) it occurs to me it might be an exmh font scaling problem, as I recall I use a larger than standard font. (I append my .exmh-defaults at end of mail) - or some thing else I'v not considered ? Here's an example of some private mail he sent me, that triggers the problem when received as a header: ------- >From POPmail Sun Aug 17 12:00:17 1997 Return-Path: shimon@sendero-ppp.i-connect.net Received: from sendero-ppp.i-connect.net (sendero-ppp.i-Connect.Net [206.190.143.100]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id VAA02930 for ; Sat, 16 Aug 1997 21:29:48 -0700 (PDT) Received: (qmail 2295 invoked by uid 1000); 17 Aug 1997 04:29:51 -0000 Message-ID: X-Mailer: XFMail 1.2-alpha [p0] on FreeBSD Sender: shimon@nomis.i-Connect.Net Content-Type: text/plain; charset=iso-8859-8 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199708151341.PAA00832@wall.jhs.no_domain> Date: Sat, 16 Aug 1997 21:29:51 -0700 (PDT) Organization: Atlas Telecom From: Simon Shapiro To: "Julian H. Stacey" Subject: Re: Floating Point Exception in make release X-UIDL: 5f67c7e8b47ca69d77dbaa5ab53eb800 ------- He's not using a MIME encapsulation in the body of mail. My system: xlsfonts|grep iso8859-8 -misc-fixed-medium-r-normal--0-0-75-75-c-0-iso8859-8 -misc-fixed-medium-r-normal--13-100-100-100-c-80-iso8859-8 -misc-fixed-medium-r-normal--13-120-75-75-c-80-iso8859-8 -misc-fixed-medium-r-semicondensed--0-0-75-75-c-0-iso8859-8 -misc-fixed-medium-r-semicondensed--13-100-100-100-c-60-iso8859-8 -misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-8 foreach i (`xlsfonts|grep iso8859-8`) echo "$i" xfd -fn $i end ... all looked normal. Here are 3 others it blew up on: Message-ID: Sender: owner-freebsd-current@FreeBSD.ORG Date: Tue, 12 Aug 1997 11:16:20 -0700 (PDT) Message-ID: Sender: owner-freebsd-stable@FreeBSD.ORG Date: Sat, 09 Aug 1997 02:43:52 -0700 (PDT) Message-ID: Sender: owner-freebsd-stable@FreeBSD.ORG Date: Sat, 09 Aug 1997 20:00:12 -0700 (PDT) ! .exmh-defaults for jhs@freebsd.org ! ! Next 3 reccomended by John Robert LoVerso *iconUpLabel: $flist(newMsgs) Unseen-[info hostname] *iconDownLabel: exmh-[info hostname] *iconSpoolLabel: $exmh(numUnInced) Spooled-[info hostname] ! exmh.geometry: 515x772+0+0 ! exmh.geometry: 504x738+-2+-1 ! *userLibrary: ~/.tk/exmh *logEnabled: 0 *logLines: 1000 *flistDebug: 0 *scanProc: scan *sendType: async *xtermCmd: xterm -g 80x5 -fn 9x15 *delPrefix: # *purgeAge: 14 *replPrefix: > *seditFormatMail: 1 *seditAttemptMhn: 0 *seditKeepOnSend: 0 *seditQuotedPrintable: automatic *seditLineLength: 79 *seditAutoSign: 0 *seditSigDashes: 1 *seditSignatureFile: *seditColorize: 1 *seditISO: 1 *seditCharset: iso-8859-1 *seditSpell: spell *seditSpellCustom: exmh-async xterm -fn 9x15 -e ispell *editCmd: exmh-async xterm -geometry 80x41 -fn 9x15 -e /usr/bin/vi *edit2Cmd: exmh-async emacs *seditOverride: 0 *seditAfterAsync: 0 *spellCmd: exmh-async xterm -fn 9x15 -e ispell *mhnCmd: mhn *printCmd: lpr $file *psPrintCmd: lpr -Pps $ile *unixCmd: cat $file > /dev/null *ftextLines: 6 *impliedDirection: 0 *nextGuard: 0 *autoCommit: 1 *commitDialog: 1 *autoPack: 1 *autoSort: 1 *autoSortType: date *autoSortCrit: -textfield keywords *ftocShowNew: 1 *advanceOnLink: 1 *skipMarked: 1 *cycleBack: 1 *scanWidth: 100 *scanSize: 100 *mimeEnabled: 1 *mimeShowType: 0 *mimeShowPrelude: 0 *mimeFullHeaders: 0 *mimeMaxSubpartsDisplayed: 5 *ftpMethod: expect *ftpCommand: ftp *showRichCmnds: 0 *showSeparator: 1 *showImage: 1 *mimeFontSize: 140 *mimeTitleSize: 160 *mimeNoteSize: 100 *uriScanForXURIs: 1 *uriScanForURIs: 1 *uriScanLimit: 1000 *uriScanSoftLimit: 1000 *uriViewer: other *mimeShowHtml: 0 *uriMosaicApp: chimera $xuri *uriNetscapeFlags: -install *uriViewerApp: chimera $xuri *uriLogOnEnter: 1 *incStyle: presort *incOnStartup: 0 *incOnMapping: 0 *incSortFeedback: 1 *xnsGetMail: 0 *scrollbarSide: left *scrollSpeed: 1 *scrollAccel: 4 *textConstrainScroll: 0 *textConstrainFtoc: 1 *textContextLines: 2 *textSmoothScroll: 1 *textSelectDelay: 50 *placeToplevel: 1 *fcacheLines: 1 *fcacheSticky: inbox *fcacheStickyOff: 0 *fcacheNickNames: 1 *fdispLines: 4 *fl_toplevel: 1 *fdispPopdownStyle: polygon *fdispPopdownAction: navbutton *fdispPopdownRemove: leave *xfaceProg: *facesEnabled: 0 *facesRow: 0 *facesDefer: 1 *facesPalette: *pgpKeepPass: 1 *pgpRfc822: 0 *pgpChooseKey: 1 *pgpCacheIds: persistent *pgpMinMatch: 75 *pgpShowInline: none *pgpAutoExtract: 1 *pgpKeyServer: pgp-public-keys@jpunix.com *bgAsync: 1 *sendHack: 1 *bgAction: off *bgPeriod: 5 *bgSpool: /var/mail/jhs *fileselectBigDirHas: 32 *fileselectDotsByDefault: 0 *fileselectHome: ~/mail *busyStyle: cursor *busyCursor: watch *busyBitmap: @hourglass2.bitmap !!! Saved Window Positions !!! Sun Aug 17 15:51:42 CEST 1997 !!! Do not edit below here I'm puzzled, suggestions welcome, Thanks ! Julian --- Julian H. Stacey jhs@freebsd.org http://www.freebsd.org/~jhs/ From owner-freebsd-current Sun Aug 17 10:10:18 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA09729 for current-outgoing; Sun, 17 Aug 1997 10:10:18 -0700 (PDT) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id KAA09718 for ; Sun, 17 Aug 1997 10:10:13 -0700 (PDT) Received: (from eivind@localhost) by bitbox.follo.net (8.8.6/8.8.6) id TAA19160; Sun, 17 Aug 1997 19:07:44 +0200 (MET DST) Date: Sun, 17 Aug 1997 19:07:44 +0200 (MET DST) Message-Id: <199708171707.TAA19160@bitbox.follo.net> From: Eivind Eklund To: Steve Passe CC: current@FreeBSD.ORG In-reply-to: Steve Passe's message of Sat, 16 Aug 1997 15:37:49 -0600 Subject: Re: damage in current to i386/isa/aic6360.c References: <199708162137.PAA02987@Ilsa.StevesCafe.com> Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > Hi, > > I just cvsupped current and could not make depend for GENERIC: > > ../../i386/isa/aic6360.c:1311: unterminated macro call > ../../i386/isa/aic6360.c:2464: warning: preprocessing directive not recognized > > I looked at it and it is obviosly damaged. So I removed my local copy, > re-cvsupped, new copy came down, but it also is damaged. So I saved > my copy in my commit tree on freefall as aic6360.c.GOOD, then did a cvs update: [...] > It doesn't appear that there was a new commit, looks like file damage > in the CVS tree. This one is really scary. I looked it over, and the RCS file looked as it had the correct invariant; it was an RCS-file all right. However, on diffing a checkout from my local CVS-tree (which is valid) and this one, I find that the one on freefall contains code from CVS the program; part of src/contrib/cvs/src/commit.c, to be exact. I've restored the correct file on freefall from my local copy from a previous cvsup of the tree; no changes had been done afterwards. Eivind, slightly bending rules to (hopefully) benfit the project. From owner-freebsd-current Sun Aug 17 11:44:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id LAA15048 for current-outgoing; Sun, 17 Aug 1997 11:44:30 -0700 (PDT) Received: from rah.star-gate.com (rah.star-gate.com [204.188.121.18]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id LAA15033; Sun, 17 Aug 1997 11:44:25 -0700 (PDT) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.7/8.8.5) with ESMTP id LAA06486; Sun, 17 Aug 1997 11:44:02 -0700 (PDT) Message-Id: <199708171844.LAA06486@rah.star-gate.com> X-Mailer: exmh version 2.0gamma 1/27/96 To: Luigi Rizzo cc: msmith@atrad.adelaide.edu.au (Michael Smith), mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Problem with my Wincast, fxtv In-reply-to: Your message of "Sun, 17 Aug 1997 13:21:30 +0200." <199708171121.NAA09146@labinfo.iet.unipi.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 17 Aug 1997 11:44:01 -0700 From: Amancio Hasty Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Just ignore Michael's posting -- it says nothing . Anyone with a little intellingence can discern from my posting that I am *very* upset with isa_dmastatus. Amancio >From The Desk Of Luigi Rizzo : > > Amancio Hasty stands accused of saying: > > > > > > Next release of the sound driver will not use isa_dmastatus from isa.c > > > rather I will duplicate the functionality in the sound driver. > > > > Am I the only person that thinks that this is unbelievably stupid? > > > > All of a sudden, the sound drivers are the only kernel subsystem that > > need PnP support, and now ISA DMA support too? Please spare a few > > seconds thought for the integrity of the system as a whole, rather > > than as a vehicle for your pet projects... > > I think amancio has to fight with backward compatibility, that's > why he wants to ship a standalone driver (guspnpXX.tgz) with all the > pieces he needs. BUt of course, in the long term, Mike is right. > > Cheers > Luigi From owner-freebsd-current Sun Aug 17 12:40:49 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id MAA17384 for current-outgoing; Sun, 17 Aug 1997 12:40:49 -0700 (PDT) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id MAA17378 for ; Sun, 17 Aug 1997 12:40:46 -0700 (PDT) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id VAA21928 for current@FreeBSD.ORG; Sun, 17 Aug 1997 21:40:45 +0200 Received: (from j@localhost) by uriah.heep.sax.de (8.8.7/8.8.5) id VAA04932; Sun, 17 Aug 1997 21:37:10 +0200 (MET DST) Message-ID: <19970817213710.PJ17648@uriah.heep.sax.de> Date: Sun, 17 Aug 1997 21:37:10 +0200 From: j@uriah.heep.sax.de (J Wunsch) To: current@FreeBSD.ORG Subject: Re: "Content-Type: text/plain; charset=iso-8859-8" References: <199708171450.QAA07750@desk.jhs.no_domain> X-Mailer: Mutt 0.60_p2-3,5,8-9 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199708171450.QAA07750@desk.jhs.no_domain>; from Julian H. Stacey on Aug 17, 1997 16:50:18 +0200 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Julian H. Stacey wrote: > Each time I read a freebsd list mail item from > Simon Shapiro > (on current & stable lists) > using my EXMH 1.6.9 his mail displays in a truly horrible font, > partially thickened (like numbers on a bank cheque, hell to read) Install a better ISO8859-8 font on your Xserver then. ;-) > I'd like to know: > - Do other people see this truly horrible font ? No. Mutt doesn't mess with fonts. ;) > - is his header OK / not OK ?, Ok (although you've been quoting the From_ line, making it hard for some MUAs). > - or some thing else I'v not considered ? Well, Simon prefers to use a Greek font. For whatever reasons. Not sure whether he actually speeks Greek... -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-current Sun Aug 17 12:43:19 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id MAA17514 for current-outgoing; Sun, 17 Aug 1997 12:43:19 -0700 (PDT) Received: from rah.star-gate.com (rah.star-gate.com [204.188.121.18]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id MAA17504 for ; Sun, 17 Aug 1997 12:43:15 -0700 (PDT) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.7/8.8.5) with ESMTP id MAA00369; Sun, 17 Aug 1997 12:43:06 -0700 (PDT) Message-Id: <199708171943.MAA00369@rah.star-gate.com> X-Mailer: exmh version 2.0gamma 1/27/96 To: Garrett Wollman cc: current@FreeBSD.ORG Subject: Re: Problem with my Wincast, fxtv In-reply-to: Your message of "Sun, 17 Aug 1997 15:30:21 EDT." <199708171930.PAA01913@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 17 Aug 1997 12:43:06 -0700 From: Amancio Hasty Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk You are free to igonre my postings however this sort of postings again does not contribute anything to issues at hand. So please don't bother sending this useless mail . Will be thrill to put you in my kill file. Amancio >From The Desk Of Garrett Wollman : > < said: > > > Just ignore Michael's posting -- it says nothing . > > On the basis of your relative contributions, I think most of us are > much more likely to ignore your postings---as I normally do. > > FreeBSD is not a toy. > > -GAWollman > > -- > Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the sa me > wollman@lcs.mit.edu | O Siem / The fires of freedom > Opinions not those of| Dance in the burning flame > MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick From owner-freebsd-current Sun Aug 17 13:06:19 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA18779 for current-outgoing; Sun, 17 Aug 1997 13:06:19 -0700 (PDT) Received: from thelab.hub.org (root@hal-ns1-45.netcom.ca [207.181.94.109]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA18772 for ; Sun, 17 Aug 1997 13:06:14 -0700 (PDT) Received: from thelab.hub.org (scrappy@LOCALHOST [127.0.0.1]) by thelab.hub.org (8.8.6/8.8.2) with SMTP id RAA25403 for ; Sun, 17 Aug 1997 17:06:10 -0300 (ADT) Date: Sun, 17 Aug 1997 17:06:09 -0300 (ADT) From: The Hermit Hacker To: current@freebsd.org Subject: free mbufs - command to see? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi... quick question, but what is the command that I can run to monitor mbufs? I've checked the man pages I can think of (netstat, vmstat, iostat and systat), but systat is the only one that seems to come close, but I'm looking for the non-'Graphical' format...where it shows max hit?? Thanks... Marc G. Fournier Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org From owner-freebsd-current Sun Aug 17 13:14:37 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA19125 for current-outgoing; Sun, 17 Aug 1997 13:14:37 -0700 (PDT) Received: from phaeton.artisoft.com (phaeton.Artisoft.COM [198.17.250.50]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id NAA19120; Sun, 17 Aug 1997 13:14:34 -0700 (PDT) Received: (from terry@localhost) by phaeton.artisoft.com (8.6.11/8.6.9) id NAA07305; Sun, 17 Aug 1997 13:06:20 -0700 From: Terry Lambert Message-Id: <199708172006.NAA07305@phaeton.artisoft.com> Subject: Re: Problem with my Wincast, fxtv To: msmith@atrad.adelaide.edu.au (Michael Smith) Date: Sun, 17 Aug 1997 13:06:20 -0700 (MST) Cc: hasty@rah.star-gate.com, mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG In-Reply-To: <199708170956.TAA04178@genesis.atrad.adelaide.edu.au> from "Michael Smith" at Aug 17, 97 07:26:17 pm X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > Next release of the sound driver will not use isa_dmastatus from isa.c > > rather I will duplicate the functionality in the sound driver. > > Am I the only person that thinks that this is unbelievably stupid? I don't want to get into a huge argument about this, but... Not to put too fine a point on it, but Amancio stated what his requirements were, and why, and why the current isa_dmastatus code was logically combining multiple things which he needed to be discrete, but which the other drivers using isa_dmastatus didn't care whether they were discrete or not. In other words, there's a historical lumping that occurred without consideration for the needs of the sound drivers, and rather than acknowledging this and correcting the granularity of the implementation, there is general defense of the status quo for no apparent reason other than "it is the status quo, and it's less work". Basically, "code inertia". > All of a sudden, the sound drivers are the only kernel subsystem that > need PnP support, and now ISA DMA support too? Please spare a few > seconds thought for the integrity of the system as a whole, rather > than as a vehicle for your pet projects... I think he has, in both cases, and I think he has found the current framework lacking in light of the integrity of the system as a whole, and currently only useful as a vehicle for the pet projects of people other than himself. The Sword of Damocles is a two-edged blade, and two-edged blades cut both ways... Regards, Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers. From owner-freebsd-current Sun Aug 17 13:20:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA19469 for current-outgoing; Sun, 17 Aug 1997 13:20:30 -0700 (PDT) Received: from mail.ziplink.net (mail.ziplink.net [199.232.240.10]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA19464 for ; Sun, 17 Aug 1997 13:20:25 -0700 (PDT) Received: from pencom.com (bos-ip-1-27.ziplink.net [199.232.252.27]) by mail.ziplink.net (8.8.7/8.8.5) with ESMTP id QAA29520 for ; Sun, 17 Aug 1997 16:20:13 -0400 (EDT) Message-ID: <33F75CCA.99CEA3A@pencom.com> Date: Sun, 17 Aug 1997 16:19:22 -0400 From: Eric Jones X-Mailer: Mozilla 4.02b7 [en] (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: include Makefile - am I the only one having trouble with this? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk My make worlds stopped working a month or more ago when trying to install osreldate.h. I figured the problwm was obvious and it would get fixed soon, but since it hasn't I'm wondering if it's something I've screwed up. It looks to me like the SRCDIR/include makefile is building osreldate.h into ${.CURDIR}, but the install occurs from ${.CURDIR}/rpc. Did everybody else just stuff a copy of osreldate.h into include/rpc? Included below is my patch for this: *** Makefile Sat Aug 16 10:25:00 1997 --- Makefile.orig Sat Aug 2 15:43:02 1997 *************** *** 74,87 **** cd ${.CURDIR}/protocols; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${PROTOFILES} ${DESTDIR}/usr/include/protocols cd ${.CURDIR}/rpc; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${RPCFILES} ${DESTDIR}/usr/include/rpc ! cd ${.CURDIR}; \ ! ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 osreldate.h \ ${DESTDIR}/usr/include .for i in ${LFILES} ln -sf sys/$i ${DESTDIR}/usr/include/$i .endfor .for i in ${MFILES} ln -sf machine/$i ${DESTDIR}/usr/include/$i --- 74,86 ---- cd ${.CURDIR}/protocols; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${PROTOFILES} ${DESTDIR}/usr/include/protocols cd ${.CURDIR}/rpc; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${RPCFILES} ${DESTDIR}/usr/include/rpc ! ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 osreldate.h \ ${DESTDIR}/usr/include .for i in ${LFILES} ln -sf sys/$i ${DESTDIR}/usr/include/$i .endfor .for i in ${MFILES} ln -sf machine/$i ${DESTDIR}/usr/include/$i From owner-freebsd-current Sun Aug 17 13:40:32 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA20603 for current-outgoing; Sun, 17 Aug 1997 13:40:32 -0700 (PDT) Received: (from jmb@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA20582; Sun, 17 Aug 1997 13:40:16 -0700 (PDT) From: "Jonathan M. Bresler" Message-Id: <199708172040.NAA20582@hub.freebsd.org> Subject: Re: free mbufs - command to see? To: scrappy@hub.org (The Hermit Hacker) Date: Sun, 17 Aug 1997 13:40:16 -0700 (PDT) Cc: current@FreeBSD.ORG In-Reply-To: from "The Hermit Hacker" at Aug 17, 97 05:06:09 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The Hermit Hacker wrote: > > > Hi... > > quick question, but what is the command that I can run to monitor > mbufs? I've checked the man pages I can think of (netstat, vmstat, > iostat and systat), but systat is the only one that seems to come close, Aspen:[225] netstat -m 61/224 mbufs in use: 9 mbufs allocated to data 3 mbufs allocated to packet headers 33 mbufs allocated to protocol control blocks 16 mbufs allocated to socket names and addresses 0/20 mbuf clusters in use 68 Kbytes allocated to network (11% in use) 0 requests for memory denied 0 requests for memory delayed 0 calls to protocol drain routines From owner-freebsd-current Sun Aug 17 13:43:32 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA20857 for current-outgoing; Sun, 17 Aug 1997 13:43:32 -0700 (PDT) Received: from shell.uniserve.com (tom@shell.uniserve.com [204.244.210.252]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA20846 for ; Sun, 17 Aug 1997 13:43:30 -0700 (PDT) Received: from localhost (tom@localhost) by shell.uniserve.com (8.8.5/8.8.5) with SMTP id NAA00704; Sun, 17 Aug 1997 13:38:48 -0700 (PDT) X-Authentication-Warning: shell.uniserve.com: tom owned process doing -bs Date: Sun, 17 Aug 1997 13:38:43 -0700 (PDT) From: Tom To: The Hermit Hacker cc: current@FreeBSD.ORG Subject: Re: free mbufs - command to see? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sun, 17 Aug 1997, The Hermit Hacker wrote: > Hi... > > quick question, but what is the command that I can run to monitor > mbufs? I've checked the man pages I can think of (netstat, vmstat, > iostat and systat), but systat is the only one that seems to come close, > but I'm looking for the non-'Graphical' format...where it shows max hit?? netstat -m > Thanks... > > Marc G. Fournier > Systems Administrator @ hub.org > primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org > > Tom From owner-freebsd-current Sun Aug 17 13:44:43 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA20954 for current-outgoing; Sun, 17 Aug 1997 13:44:43 -0700 (PDT) Received: from thelab.hub.org (root@hal-ns1-45.netcom.ca [207.181.94.109]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA20947 for ; Sun, 17 Aug 1997 13:44:38 -0700 (PDT) Received: from thelab.hub.org (scrappy@LOCALHOST [127.0.0.1]) by thelab.hub.org (8.8.6/8.8.2) with SMTP id RAA25630 for ; Sun, 17 Aug 1997 17:44:31 -0300 (ADT) Date: Sun, 17 Aug 1997 17:44:31 -0300 (ADT) From: The Hermit Hacker Reply-To: The Hermit Hacker To: current@FreeBSD.ORG Subject: Re: free mbufs - command to see? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Found the answer at the archives at www.freebsd.org, as well as a private response from Garrett...sorry to disturb, now understand why my machnie has been blowing up :( On Sun, 17 Aug 1997, The Hermit Hacker wrote: > > Hi... > > quick question, but what is the command that I can run to monitor > mbufs? I've checked the man pages I can think of (netstat, vmstat, > iostat and systat), but systat is the only one that seems to come close, > but I'm looking for the non-'Graphical' format...where it shows max hit?? > > Thanks... > > Marc G. Fournier > Systems Administrator @ hub.org > primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org > Marc G. Fournier Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org From owner-freebsd-current Sun Aug 17 14:14:47 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA22691 for current-outgoing; Sun, 17 Aug 1997 14:14:47 -0700 (PDT) Received: from rah.star-gate.com (rah.star-gate.com [204.188.121.18]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA22682 for ; Sun, 17 Aug 1997 14:14:44 -0700 (PDT) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.7/8.8.5) with ESMTP id OAA00840 for ; Sun, 17 Aug 1997 14:14:44 -0700 (PDT) Message-Id: <199708172114.OAA00840@rah.star-gate.com> X-Mailer: exmh version 2.0gamma 1/27/96 To: current@freebsd.org Subject: ftp://rah.star-gate.com/pub/guspnp16.tar.gz Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 17 Aug 1997 14:14:43 -0700 From: Amancio Hasty Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk New sound driver release incorporating isa_dmastatus . Amancio From owner-freebsd-current Sun Aug 17 14:20:56 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA23263 for current-outgoing; Sun, 17 Aug 1997 14:20:56 -0700 (PDT) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id OAA23244 for ; Sun, 17 Aug 1997 14:20:53 -0700 (PDT) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id XAA22975; Sun, 17 Aug 1997 23:20:51 +0200 Received: (from j@localhost) by uriah.heep.sax.de (8.8.7/8.8.5) id XAA06691; Sun, 17 Aug 1997 23:08:30 +0200 (MET DST) Message-ID: <19970817230830.SD08858@uriah.heep.sax.de> Date: Sun, 17 Aug 1997 23:08:30 +0200 From: j@uriah.heep.sax.de (J Wunsch) To: freebsd-current@FreeBSD.ORG Cc: ejon@pencom.com (Eric Jones) Subject: Re: include Makefile - am I the only one having trouble with this? References: <33F75CCA.99CEA3A@pencom.com> X-Mailer: Mutt 0.60_p2-3,5,8-9 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <33F75CCA.99CEA3A@pencom.com>; from Eric Jones on Aug 17, 1997 16:19:22 -0400 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Eric Jones wrote: > It looks to me like the SRCDIR/include makefile is building > osreldate.h into ${.CURDIR}, but the install occurs from > ${.CURDIR}/rpc. Did everybody else just stuff a copy of osreldate.h > into include/rpc? If this happens, your make(1) would be royally screwed. > cd ${.CURDIR}/rpc; \ > ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ > ${RPCFILES} ${DESTDIR}/usr/include/rpc > ! cd ${.CURDIR}; \ > ! ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 > osreldate.h \ > ${DESTDIR}/usr/include Note that these are two different shell command lines, each of them is being passed down to (in effect) on call to sh -c. Naturally, the chdir to ${.CURDIR}/rpc is only in effect for the first command, the second one starts over with the default directory (/usr/obj/...). -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-current Sun Aug 17 14:31:14 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA24105 for current-outgoing; Sun, 17 Aug 1997 14:31:14 -0700 (PDT) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA24091 for ; Sun, 17 Aug 1997 14:31:03 -0700 (PDT) Received: (from uucp@localhost) by news1.gtn.com (8.7.2/8.7.2) with UUCP id XAA22899 for current@FreeBSD.org; Sun, 17 Aug 1997 23:15:28 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.7/8.8.7) id XAA19159; Sun, 17 Aug 1997 23:01:01 +0200 (CEST) Message-ID: <19970817230100.39614@klemm.gtn.com> Date: Sun, 17 Aug 1997 23:01:00 +0200 From: Andreas Klemm To: current@FreeBSD.org Subject: another make world problem Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.79 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-freebsd-current@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Ok, I removed /usr/include, did a make includes. /usr/include/tcl.h is missing. Copied it by hand. Next problem: cc -pipe -O -DYP -c /usr/src/usr.bin/chkey/../newkey/update.c /usr/src/usr.bin/chkey/../newkey/update.c: In function `_openchild': /usr/src/usr.bin/chkey/../newkey/update.c:189: warning: assignment makes pointer from integer without a cast cc -pipe -O -DYP -c /usr/src/usr.bin/chkey/../newkey/generic.c /usr/src/usr.bin/chkey/../newkey/generic.c:46: mp.h: No such file or directory /usr/src/usr.bin/chkey/../newkey/generic.c: In function `genkeys': /usr/src/usr.bin/chkey/../newkey/generic.c:88: `MINT' undeclared (first use this function) /usr/src/usr.bin/chkey/../newkey/generic.c:88: (Each undeclared identifier is reported only once /usr/src/usr.bin/chkey/../newkey/generic.c:88: for each function it appears in.) /usr/src/usr.bin/chkey/../newkey/generic.c:88: `pk' undeclared (first use this function) /usr/src/usr.bin/chkey/../newkey/generic.c:89: `sk' undeclared (first use this function) /usr/src/usr.bin/chkey/../newkey/generic.c:90: `tmp' undeclared (first use this Let's have a look, where mp.h is located ... -- Andreas Klemm | klemm.gtn.com - powered by Symmetric MultiProcessor FreeBSD http://www.freebsd.org/~fsmp/SMP/SMP.html http://www.freebsd.org/~fsmp/SMP/benches.html From owner-freebsd-current Sun Aug 17 14:34:28 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA24367 for current-outgoing; Sun, 17 Aug 1997 14:34:28 -0700 (PDT) Received: from rah.star-gate.com (rah.star-gate.com [204.188.121.18]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA24362; Sun, 17 Aug 1997 14:34:25 -0700 (PDT) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.7/8.8.5) with ESMTP id OAA00938; Sun, 17 Aug 1997 14:33:48 -0700 (PDT) Message-Id: <199708172133.OAA00938@rah.star-gate.com> X-Mailer: exmh version 2.0gamma 1/27/96 To: Luigi Rizzo cc: msmith@atrad.adelaide.edu.au (Michael Smith), mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Problem with my Wincast, fxtv In-reply-to: Your message of "Sun, 17 Aug 1997 13:21:30 +0200." <199708171121.NAA09146@labinfo.iet.unipi.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 17 Aug 1997 14:33:48 -0700 From: Amancio Hasty Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >From The Desk Of Luigi Rizzo : > > Amancio Hasty stands accused of saying: > > > > > > Next release of the sound driver will not use isa_dmastatus from isa.c > > > rather I will duplicate the functionality in the sound driver. > > > > Am I the only person that thinks that this is unbelievably stupid? > > > > All of a sudden, the sound drivers are the only kernel subsystem that > > need PnP support, and now ISA DMA support too? Please spare a few > > seconds thought for the integrity of the system as a whole, rather > > than as a vehicle for your pet projects... > > I think amancio has to fight with backward compatibility, that's > why he wants to ship a standalone driver (guspnpXX.tgz) with all the > pieces he needs. BUt of course, in the long term, Mike is right. > > Cheers > Luigi Well, it has been over a year since Sujal Patel put out his PnP patches which we can use for the sound driver as well as other devices. In this case no one has taken the incentive to push the technology. Few hackers express any interest at all on PnP at the time that Sujal and I where working on the PnP code. Nevertheless , we are thinking about the rest of the system and Luigi is leading the effort to iron out the PnP interface. As for ISA DMA support, the sound drivers from day one have used the isa dma subsystem. In order to support linux applications such as xquake and for improved sound support we were forced to add isa_dmastatus which Luigi was kind to provide. The contributed code naturally didn't break the sound driver functionality however the version that made into current did. At the very least someone should have consulted someone in the multimedia group to see if this was okay to change . As part of the guspnp sound driver release , the linux emulation has been modified to support the sound driver 3.5 ioctl. I can't check that version in because the changes are specific to support the sound driver 3.5 ioctl interface which is not present in FreeBSD.XXXX sound driver release. Amancio From owner-freebsd-current Sun Aug 17 14:47:50 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA25594 for current-outgoing; Sun, 17 Aug 1997 14:47:50 -0700 (PDT) Received: from phaeton.artisoft.com (phaeton.Artisoft.COM [198.17.250.50]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id OAA25580 for ; Sun, 17 Aug 1997 14:47:43 -0700 (PDT) Received: (from terry@localhost) by phaeton.artisoft.com (8.6.11/8.6.9) id OAA07580; Sun, 17 Aug 1997 14:41:39 -0700 From: Terry Lambert Message-Id: <199708172141.OAA07580@phaeton.artisoft.com> Subject: Re: "Content-Type: text/plain; charset=iso-8859-8" To: joerg_wunsch@uriah.heep.sax.de Date: Sun, 17 Aug 1997 14:41:39 -0700 (MST) Cc: current@FreeBSD.ORG In-Reply-To: <19970817213710.PJ17648@uriah.heep.sax.de> from "J Wunsch" at Aug 17, 97 09:37:10 pm X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Well, Simon prefers to use a Greek font. For whatever reasons. Not > sure whether he actually speeks Greek... Ananke' whode' Makunte' Theoi "Destiny Even the Gods Struggle Against" (Q: What do you call Romanized Greek? A: Roman. 8-) 8-)). Why don't you just use the content-transfer-encoding translation engine from the imap4 distribution? Either run the pop3d/imap4d from the distribution, and use an MUA that talks POP3 or IMAP4, or hack the code yourself. So long as he is writing in English, it's a no-brainer: it will translate to any ISO-8859-x character set without modification (hint: the low end of all ISO-8859-X character sets is US ASCII). Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers. From owner-freebsd-current Sun Aug 17 15:45:35 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id PAA00306 for current-outgoing; Sun, 17 Aug 1997 15:45:35 -0700 (PDT) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA00299 for ; Sun, 17 Aug 1997 15:45:31 -0700 (PDT) Received: (from uucp@localhost) by news1.gtn.com (8.7.2/8.7.2) with UUCP id AAA06942 for current@FreeBSD.ORG; Mon, 18 Aug 1997 00:30:22 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.7/8.8.7) id AAA13455; Mon, 18 Aug 1997 00:17:32 +0200 (CEST) Message-ID: <19970818001732.00436@klemm.gtn.com> Date: Mon, 18 Aug 1997 00:17:32 +0200 From: Andreas Klemm To: current@FreeBSD.ORG Subject: EBONES=yes in /etc/make.conf is still a make world show-stopper Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.79 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk test -e /usr/src/eBones/lib/libkrb/obj/../../lib/libkrb/krb_err.et || ln -s /usr /src/eBones/lib/libkrb/../../lib/libkrb/krb_err.et /usr/src/eBones/lib/libkrb/ob j/../../lib/libkrb cd /usr/src/eBones/lib/libkrb/obj/../../lib/libkrb; compile_et krb_err.et cd: can't cd to /usr/src/eBones/lib/libkrb/obj/../../lib/libkrb *** Error code 2 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 -- Andreas Klemm | klemm.gtn.com - powered by Symmetric MultiProcessor FreeBSD http://www.freebsd.org/~fsmp/SMP/SMP.html http://www.freebsd.org/~fsmp/SMP/benches.html From owner-freebsd-current Sun Aug 17 16:36:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA03532 for current-outgoing; Sun, 17 Aug 1997 16:36:06 -0700 (PDT) Received: from genesis.atrad.adelaide.edu.au (genesis.atrad.adelaide.edu.au [129.127.96.120]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA03312; Sun, 17 Aug 1997 16:30:42 -0700 (PDT) Received: (from msmith@localhost) by genesis.atrad.adelaide.edu.au (8.8.5/8.7.3) id IAA07931; Mon, 18 Aug 1997 08:48:12 +0930 (CST) From: Michael Smith Message-Id: <199708172318.IAA07931@genesis.atrad.adelaide.edu.au> Subject: Re: Problem with my Wincast, fxtv In-Reply-To: <199708171844.LAA06486@rah.star-gate.com> from Amancio Hasty at "Aug 17, 97 11:44:01 am" To: hasty@rah.star-gate.com (Amancio Hasty) Date: Mon, 18 Aug 1997 08:48:11 +0930 (CST) Cc: luigi@labinfo.iet.unipi.it, msmith@atrad.adelaide.edu.au, mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Amancio Hasty stands accused of saying: > > Just ignore Michael's posting -- it says nothing . On the contrary, it says a great deal, as does your "just ignore him and he'll go away" handwave. > Anyone with a little intellingence can discern from my posting that > I am *very* upset with isa_dmastatus. No shit. I'm not taking you to task one way or another for that; eventually you and Luigi will talk it over and come to a reasonable solution, and until then I'll do exactly nothing. isa_dmastatus is there at the explicit request of the audio weenie faction, right where it belongs. If you don't _like_ it, then a) you should have said so back when it was being discussed b) you should be proposing a useful fix that doesn't screw the rest of the DMA consumers just because you don't like the API. Saying "I don't like the bus support, so I'll go write it all again from scratch" is really quite counterproductive. It virtually guarantees that, when the bus support is changed next time, you're going to scream three times as loudly. How's about you get with the plan now, and perhaps benefit from some teamwork? -- ]] Mike Smith, Software Engineer msmith@gsoft.com.au [[ ]] Genesis Software genesis@gsoft.com.au [[ ]] High-speed data acquisition and (GSM mobile) 0411-222-496 [[ ]] realtime instrument control. (ph) +61-8-8267-3493 [[ ]] Unix hardware collector. "Where are your PEZ?" The Tick [[ From owner-freebsd-current Sun Aug 17 16:37:37 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA03586 for current-outgoing; Sun, 17 Aug 1997 16:37:37 -0700 (PDT) Received: from genesis.atrad.adelaide.edu.au (genesis.atrad.adelaide.edu.au [129.127.96.120]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA03577; Sun, 17 Aug 1997 16:37:28 -0700 (PDT) Received: (from msmith@localhost) by genesis.atrad.adelaide.edu.au (8.8.5/8.7.3) id JAA07992; Mon, 18 Aug 1997 09:01:21 +0930 (CST) From: Michael Smith Message-Id: <199708172331.JAA07992@genesis.atrad.adelaide.edu.au> Subject: Re: Problem with my Wincast, fxtv In-Reply-To: <199708172006.NAA07305@phaeton.artisoft.com> from Terry Lambert at "Aug 17, 97 01:06:20 pm" To: terry@lambert.org (Terry Lambert) Date: Mon, 18 Aug 1997 09:01:21 +0930 (CST) Cc: msmith@atrad.adelaide.edu.au, hasty@rah.star-gate.com, mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Terry Lambert stands accused of saying: > > > Next release of the sound driver will not use isa_dmastatus from isa.c > > > rather I will duplicate the functionality in the sound driver. > > > > Am I the only person that thinks that this is unbelievably stupid? > > I don't want to get into a huge argument about this, but... Me neither, although Amancio appears to have come to the discussion with an enormous slice of Idaho's finest perched beside his ear, so it's being a bit hard to achieve a middle ground. > Not to put too fine a point on it, but Amancio stated what his > requirements were, and why, and why the current isa_dmastatus > code was logically combining multiple things which he needed to > be discrete, but which the other drivers using isa_dmastatus > didn't care whether they were discrete or not. Fair enough. This is different from his ransom note of last week, and likely of next week as well. Note that, in contrast, Luigi Rizzo, who appears to be working with Amancio and that camp, is quite happy with the original code (and actually proposed it in the first place). > In other words, there's a historical lumping that occurred without > consideration for the needs of the sound drivers, and rather than > acknowledging this and correcting the granularity of the implementation, > there is general defense of the status quo for no apparent reason other > than "it is the status quo, and it's less work". If this was all it was, I would happily consider helping with a remodelling of the DMA support, subject to the ISA gods and the desires of the sound crew, to help come up with a better interface. But for this to be worthwhile, we need a consistent set of requirements. Signals from the sound camp say that Luigi's code is the future of sound support as we know it, and as such I've been following his requirements (albeit lagging a little). OTOH, general consensus is that Amancio's work is a QnD designed to get _something_ working now, so to me it makes little sense to try to track. If we can see some consensus from the consumers, perhaps? -- ]] Mike Smith, Software Engineer msmith@gsoft.com.au [[ ]] Genesis Software genesis@gsoft.com.au [[ ]] High-speed data acquisition and (GSM mobile) 0411-222-496 [[ ]] realtime instrument control. (ph) +61-8-8267-3493 [[ ]] Unix hardware collector. "Where are your PEZ?" The Tick [[ From owner-freebsd-current Sun Aug 17 16:47:50 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA04032 for current-outgoing; Sun, 17 Aug 1997 16:47:50 -0700 (PDT) Received: from genesis.atrad.adelaide.edu.au (genesis.atrad.adelaide.edu.au [129.127.96.120]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA04022; Sun, 17 Aug 1997 16:47:24 -0700 (PDT) Received: (from msmith@localhost) by genesis.atrad.adelaide.edu.au (8.8.5/8.7.3) id JAA08025; Mon, 18 Aug 1997 09:11:01 +0930 (CST) From: Michael Smith Message-Id: <199708172341.JAA08025@genesis.atrad.adelaide.edu.au> Subject: Re: Problem with my Wincast, fxtv In-Reply-To: <199708172133.OAA00938@rah.star-gate.com> from Amancio Hasty at "Aug 17, 97 02:33:48 pm" To: hasty@rah.star-gate.com (Amancio Hasty) Date: Mon, 18 Aug 1997 09:11:00 +0930 (CST) Cc: luigi@labinfo.iet.unipi.it, msmith@atrad.adelaide.edu.au, mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Amancio Hasty stands accused of saying: > > Well, it has been over a year since Sujal Patel put out his PnP patches > which we can use for the sound driver as well as other devices. In this > case no one has taken the incentive to push the technology. Few This is because Sujal was "just going to finish his exams", and most of us have been off paying the rent. (standard excuse) 8) > As for ISA DMA support, the sound drivers from day one have used the isa dma > subsystem. In order to support linux applications such as xquake > and for improved sound support we were forced to add isa_dmastatus > which Luigi was kind to provide. The contributed code naturally > didn't break the sound driver functionality however the version > that made into current did. The version that made it into current _was_ the version Luigi and I discussed at notinconsiderable length. I never got any impression that anything was wrong with it, until I read your (totally unreasoned and unjustified) demand that part of the (originally proposed and unchanged) function should be removed. >From my reading, that fragment of code imposed some basic, harmless, sanity checking on the use of the function. Luigi wouldn't have put it there if he didn't feel that it belonged there. You and he have been working together, supposedly. I have heard nothing from him on this subject, but in the meantime you've gathered up your skirts and flounced off. > At the very least someone should > have consulted someone in the multimedia group to see if this > was okay to change . Huh? Change _what_? > As part of the guspnp sound driver release , the linux emulation > has been modified to support the sound driver 3.5 ioctl. I can't > check that version in because the changes are specific to support > the sound driver 3.5 ioctl interface which is not present in FreeBSD.XXXX > sound driver release. This is an issue with finding someone with an adequately stable personality to maintain the sound drivers in -current and -stable. I would love to have your work integrated, believe me; I get no satisfaction whatsoever from seeing code just lying to rot. -- ]] Mike Smith, Software Engineer msmith@gsoft.com.au [[ ]] Genesis Software genesis@gsoft.com.au [[ ]] High-speed data acquisition and (GSM mobile) 0411-222-496 [[ ]] realtime instrument control. (ph) +61-8-8267-3493 [[ ]] Unix hardware collector. "Where are your PEZ?" The Tick [[ From owner-freebsd-current Sun Aug 17 17:23:50 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA06364 for current-outgoing; Sun, 17 Aug 1997 17:23:50 -0700 (PDT) Received: from phaeton.artisoft.com (phaeton.Artisoft.COM [198.17.250.50]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id RAA06358; Sun, 17 Aug 1997 17:23:46 -0700 (PDT) Received: (from terry@localhost) by phaeton.artisoft.com (8.6.11/8.6.9) id RAA11907; Sun, 17 Aug 1997 17:14:43 -0700 From: Terry Lambert Message-Id: <199708180014.RAA11907@phaeton.artisoft.com> Subject: Re: Problem with my Wincast, fxtv To: msmith@atrad.adelaide.edu.au (Michael Smith) Date: Sun, 17 Aug 1997 17:14:43 -0700 (MST) Cc: terry@lambert.org, msmith@atrad.adelaide.edu.au, hasty@rah.star-gate.com, mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG In-Reply-To: <199708172331.JAA07992@genesis.atrad.adelaide.edu.au> from "Michael Smith" at Aug 18, 97 09:01:21 am X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > OTOH, general consensus > is that Amancio's work is a QnD designed to get _something_ working > now, so to me it makes little sense to try to track. Hmmm. If this is true, and it's intended *solely* as a QnD, then why net let him have his own isa_dmastatus()? It doesn't hurt anything, and it's not something that will live on in infamy. I think maybe this whole thing got blown out of proportion in the posting by... (uh-oh 8-)) complaining about the seperate isa_dmastatus(). The issue of PnP (admittedly, he didn't raise that one in this particular case, so it's kind of off-topic) is still hotly debateable, I suppose (not something I'm going to debate late on Sunday, though...). Regards, Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers. From owner-freebsd-current Sun Aug 17 17:30:11 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA06766 for current-outgoing; Sun, 17 Aug 1997 17:30:11 -0700 (PDT) Received: from skynet.ctr.columbia.edu (skynet.ctr.columbia.edu [128.59.64.70]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id RAA06759 for ; Sun, 17 Aug 1997 17:30:03 -0700 (PDT) Received: (from wpaul@localhost) by skynet.ctr.columbia.edu (8.6.12/8.6.9) id UAA18175; Sun, 17 Aug 1997 20:30:05 -0400 From: Bill Paul Message-Id: <199708180030.UAA18175@skynet.ctr.columbia.edu> Subject: Re: another make world problem To: andreas@klemm.gtn.com (Andreas Klemm) Date: Sun, 17 Aug 1997 20:30:03 -0400 (EDT) Cc: current@freebsd.org In-Reply-To: <19970817230100.39614@klemm.gtn.com> from "Andreas Klemm" at Aug 17, 97 11:01:00 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Of all the gin joints in all the towns in all the world, Andreas Klemm had to walk into mine and say: > > Ok, I removed /usr/include, did a make includes. > > /usr/include/tcl.h is missing. Copied it by hand. > > Next problem: > > cc -pipe -O -DYP -c /usr/src/usr.bin/chkey/../newkey/update.c > /usr/src/usr.bin/chkey/../newkey/update.c: In function `_openchild': > /usr/src/usr.bin/chkey/../newkey/update.c:189: warning: assignment makes pointer from integer without a cast > cc -pipe -O -DYP -c /usr/src/usr.bin/chkey/../newkey/generic.c > /usr/src/usr.bin/chkey/../newkey/generic.c:46: mp.h: No such file or directory [chop] > Let's have a look, where mp.h is located ... It's supposed to be installed as part of the GNU libmp installation. Being a GNU package, most of it lives in /usr/contrib. Building the GNU mp library should install libmp, libgmp, mp.h and gmp.h. The Secure RPC stuff needs libmp for its public/secret key support. mp.h and gmp.h _don't_ get installed as part of make includes; they get installed whenever libmp is built. No, you may not start a big argument over libmp. We need it. We should have had the real 4.4BSD one, but it was encumbered. -Bill -- ============================================================================= -Bill Paul (212) 854-6020 | System Manager, Master of Unix-Fu Work: wpaul@ctr.columbia.edu | Center for Telecommunications Research Home: wpaul@skynet.ctr.columbia.edu | Columbia University, New York City ============================================================================= "It is not I who am crazy; it is I who am mad!" - Ren Hoek, "Space Madness" ============================================================================= From owner-freebsd-current Sun Aug 17 18:13:43 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA08929 for current-outgoing; Sun, 17 Aug 1997 18:13:43 -0700 (PDT) Received: from genesis.atrad.adelaide.edu.au (genesis.atrad.adelaide.edu.au [129.127.96.120]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA08922; Sun, 17 Aug 1997 18:13:36 -0700 (PDT) Received: (from msmith@localhost) by genesis.atrad.adelaide.edu.au (8.8.5/8.7.3) id KAA08329; Mon, 18 Aug 1997 10:39:58 +0930 (CST) From: Michael Smith Message-Id: <199708180109.KAA08329@genesis.atrad.adelaide.edu.au> Subject: Re: Problem with my Wincast, fxtv In-Reply-To: <199708180014.RAA11907@phaeton.artisoft.com> from Terry Lambert at "Aug 17, 97 05:14:43 pm" To: terry@lambert.org (Terry Lambert) Date: Mon, 18 Aug 1997 10:39:57 +0930 (CST) Cc: msmith@atrad.adelaide.edu.au, terry@lambert.org, hasty@rah.star-gate.com, mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Terry Lambert stands accused of saying: > > OTOH, general consensus > > is that Amancio's work is a QnD designed to get _something_ working > > now, so to me it makes little sense to try to track. > > Hmmm. If this is true, and it's intended *solely* as a QnD, > then why net let him have his own isa_dmastatus()? It doesn't > hurt anything, and it's not something that will live on in > infamy. I was asking myself this in the shower this morning. Ultimately, there are three reasons that the idea reeks to me : - Idealogically : there should not be a need for a private function that screws with the DMA hardware. If the current feature set is broken, then that needs to be addressed. In this case, if Amancio and Luigi sit down and thrash out the issue together, I'm sure a sensible compromise will result. - Selfishly : having two separate functions is likely to raise more debugging/support work. - Pragmatically : it is likely the Amancio's code will (given that it works right now and nothing else comes close) spend quite a lot of time as "the" sound driver. As such, we're going to be looking at a legacy condition sometime down the track where it is expected that the sound driver be allowed to frotz with the DMA hardware, and that is IMHO not a desirable position at all. > The issue of PnP (admittedly, he didn't raise that one in this > particular case, so it's kind of off-topic) is still hotly > debateable, I suppose (not something I'm going to debate late > on Sunday, though...). I'd prefer not to debate it either. I think that it's sufficiently separate that when the time comes it can be relocated without adversely affecting anything at all. I merely resent the effort that's being put into standalone PnP-for-sound-cards-only work where the same effort could be better spent on a generalised push. > Terry Lambert -- ]] Mike Smith, Software Engineer msmith@gsoft.com.au [[ ]] Genesis Software genesis@gsoft.com.au [[ ]] High-speed data acquisition and (GSM mobile) 0411-222-496 [[ ]] realtime instrument control. (ph) +61-8-8267-3493 [[ ]] Unix hardware collector. "Where are your PEZ?" The Tick [[ From owner-freebsd-current Sun Aug 17 18:25:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA09638 for current-outgoing; Sun, 17 Aug 1997 18:25:44 -0700 (PDT) Received: from rah.star-gate.com (rah.star-gate.com [204.188.121.18]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA09620; Sun, 17 Aug 1997 18:25:38 -0700 (PDT) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.7/8.8.5) with ESMTP id SAA02184; Sun, 17 Aug 1997 18:24:06 -0700 (PDT) Message-Id: <199708180124.SAA02184@rah.star-gate.com> X-Mailer: exmh version 2.0gamma 1/27/96 To: Michael Smith cc: terry@lambert.org (Terry Lambert), mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Problem with my Wincast, fxtv In-reply-to: Your message of "Mon, 18 Aug 1997 09:01:21 +0930." <199708172331.JAA07992@genesis.atrad.adelaide.edu.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 17 Aug 1997 18:24:05 -0700 From: Amancio Hasty Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > If this was all it was, I would happily consider helping with a > remodelling of the DMA support, subject to the ISA gods and the > desires of the sound crew, to help come up with a better interface. So there is a dim light of hope, Cool 8) > But for this to be worthwhile, we need a consistent set of > requirements. Signals from the sound camp say that Luigi's code is the > future of sound support as we know it, and as such I've been following > his requirements (albeit lagging a little). OTOH, general consensus > is that Amancio's work is a QnD designed to get _something_ working > now, so to me it makes little sense to try to track. > > If we can see some consensus from the consumers, perhaps? What needs to be track is Luigi's effort and not mine. The guspnp driver is meant as a stop gap while Luigi and the rest of the sound crew manages to finish the next generation sound driver. The guspnp series of sound driver is based upon the linux sound driver 3.5 however no one in the multimedia camp feels like supporting the linux sound driver due to its complexity and Luigi has volunteered to rewrite the sound driver. The linux sound driver 3.5 compatibility is desired because there are Linux applications such as xquake which use it. With respect to the now infamous isa_dmastatus and me going totally ballistic with the one on -current is that I was presented with a slightly different version for review which didn't have the "sanity" checks . We are trying are hardest not to interfere with the normal course of development on -current. Michael's offer to help consider our requirements is a step in the right direction and again the requirements should be from Luigi's sound driver effort. The next major issue with respect to the sound drivers is the inclusion of PnP support. Perhaps we will be able to work together... Amancio From owner-freebsd-current Sun Aug 17 18:45:42 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA10780 for current-outgoing; Sun, 17 Aug 1997 18:45:42 -0700 (PDT) Received: from rah.star-gate.com (rah.star-gate.com [204.188.121.18]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA10775; Sun, 17 Aug 1997 18:45:38 -0700 (PDT) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.7/8.8.5) with ESMTP id SAA02281; Sun, 17 Aug 1997 18:44:23 -0700 (PDT) Message-Id: <199708180144.SAA02281@rah.star-gate.com> X-Mailer: exmh version 2.0gamma 1/27/96 To: Michael Smith cc: terry@lambert.org (Terry Lambert), freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Problem with my Wincast, fxtv In-reply-to: Your message of "Mon, 18 Aug 1997 10:39:57 +0930." <199708180109.KAA08329@genesis.atrad.adelaide.edu.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 17 Aug 1997 18:44:22 -0700 From: Amancio Hasty Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >From The Desk Of Michael Smith : > I'd prefer not to debate it either. I think that it's sufficiently > separate that when the time comes it can be relocated without > adversely affecting anything at all. I merely resent the effort > that's being put into standalone PnP-for-sound-cards-only work where > the same effort could be better spent on a generalised push. > As far as I know Luigi's PnP efforts are not tied to the sound driver and we are using the sound driver as a testbed for PnP support. Given that Luigi's sound driver is coming along nicely, the issue of PnP will be arriving on this forum shortly and from a sound driver perspective it is a *primary* requirement . Amancio From owner-freebsd-current Sun Aug 17 19:03:27 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA12062 for current-outgoing; Sun, 17 Aug 1997 19:03:27 -0700 (PDT) Received: from rah.star-gate.com (rah.star-gate.com [204.188.121.18]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA12053; Sun, 17 Aug 1997 19:03:20 -0700 (PDT) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.7/8.8.5) with ESMTP id TAA02325; Sun, 17 Aug 1997 19:01:55 -0700 (PDT) Message-Id: <199708180201.TAA02325@rah.star-gate.com> X-Mailer: exmh version 2.0gamma 1/27/96 To: Michael Smith cc: terry@lambert.org, mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Problem with my Wincast, fxtv In-reply-to: Your message of "Mon, 18 Aug 1997 11:03:24 +0930." <199708180133.LAA08460@genesis.atrad.adelaide.edu.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 17 Aug 1997 19:01:55 -0700 From: Amancio Hasty Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >From The Desk Of Michael Smith : > Ah, the light dawns. How about the next isa_dma* function Luigi has > requested? Is the sanity checking in general a major problem from your > point of view? Hi , Part of my problem (Yeah I know I have many faults 8) ) is that I have been *very* busy with the guspnp driver and the latest -current induced bug found in the bktr driver which I admit was my fault for not tracking the PCI interface --- We were really hammering out the Bt848 driver this summer and must say that I am really please with the progress and general acceptance of the driver in the multimedia group. Trust me , the communication and coordination efforts from the multimedia group will improve. >Ah, the light dawns. How about the next isa_dma* function Luigi has >requested? Is the sanity checking in general a major problem from your >point of view? My right eye begings to nervously twitch ... Just joking . I have no idea what Luigi wants to do next in the way of dma interface so him and I will have to "sit" down and iron out the functionality . I will let Luigi post the outcome of our discussion . Cheers, Amancio From owner-freebsd-current Sun Aug 17 19:23:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA13042 for current-outgoing; Sun, 17 Aug 1997 19:23:08 -0700 (PDT) Received: from genesis.atrad.adelaide.edu.au (genesis.atrad.adelaide.edu.au [129.127.96.120]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA13034; Sun, 17 Aug 1997 19:22:56 -0700 (PDT) Received: (from msmith@localhost) by genesis.atrad.adelaide.edu.au (8.8.5/8.7.3) id LAA08460; Mon, 18 Aug 1997 11:03:24 +0930 (CST) From: Michael Smith Message-Id: <199708180133.LAA08460@genesis.atrad.adelaide.edu.au> Subject: Re: Problem with my Wincast, fxtv In-Reply-To: <199708180124.SAA02184@rah.star-gate.com> from Amancio Hasty at "Aug 17, 97 06:24:05 pm" To: hasty@rah.star-gate.com (Amancio Hasty) Date: Mon, 18 Aug 1997 11:03:24 +0930 (CST) Cc: msmith@atrad.adelaide.edu.au, terry@lambert.org, mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Amancio Hasty stands accused of saying: > > > > If we can see some consensus from the consumers, perhaps? > > What needs to be track is Luigi's effort and not mine. OK. This is worth knowing. > to rewrite the sound driver. The linux sound driver 3.5 compatibility > is desired because there are Linux applications such as xquake which use it. Gotcha. > With respect to the now infamous isa_dmastatus and me going totally > ballistic with the one on -current is that I was presented with > a slightly different version for review which didn't have the > "sanity" checks . Ah, the light dawns. How about the next isa_dma* function Luigi has requested? Is the sanity checking in general a major problem from your point of view? > The next major issue with respect to the sound drivers is the > inclusion of PnP support. Perhaps we will be able to work > together... I think we would all like that very much 8) -- ]] Mike Smith, Software Engineer msmith@gsoft.com.au [[ ]] Genesis Software genesis@gsoft.com.au [[ ]] High-speed data acquisition and (GSM mobile) 0411-222-496 [[ ]] realtime instrument control. (ph) +61-8-8267-3493 [[ ]] Unix hardware collector. "Where are your PEZ?" The Tick [[ From owner-freebsd-current Sun Aug 17 19:46:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA14586 for current-outgoing; Sun, 17 Aug 1997 19:46:08 -0700 (PDT) Received: from Ilsa.StevesCafe.com (Ilsa.StevesCafe.com [205.168.119.129]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA14581; Sun, 17 Aug 1997 19:46:05 -0700 (PDT) Received: from Ilsa.StevesCafe.com (localhost [127.0.0.1]) by Ilsa.StevesCafe.com (8.8.7/8.8.5) with ESMTP id UAA09140; Sun, 17 Aug 1997 20:45:00 -0600 (MDT) Message-Id: <199708180245.UAA09140@Ilsa.StevesCafe.com> X-Mailer: exmh version 2.0gamma 1/27/96 From: Steve Passe To: Michael Smith cc: terry@lambert.org (Terry Lambert), hasty@rah.star-gate.com, mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Problem with my Wincast, fxtv In-reply-to: Your message of "Mon, 18 Aug 1997 10:39:57 +0930." <199708180109.KAA08329@genesis.atrad.adelaide.edu.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 17 Aug 1997 20:45:00 -0600 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hi, > > Hmmm. If this is true, and it's intended *solely* as a QnD, > > then why net let him have his own isa_dmastatus()? It doesn't > > hurt anything, and it's not something that will live on in > > infamy. > ... > - Idealogically : there should not be a need for a private function > that screws with the DMA hardware. If the current feature set is > ... > time as "the" sound driver. As such, we're going to be looking at a > legacy condition sometime down the track where it is expected that the > sound driver be allowed to frotz with the DMA hardware, and that is I really don't want to get into this debate, but I think its important that people realize that the days of different pieces of code accessing common hardware are over. As SMP is brought into more and more of the kernel this becomes unacceptable. Areas such as the DMA hardware will have to be encapsolated into "critical regions". No one will be allowed to have private code to access these sorts of things, not even for short testing periods. A rather large part of my work in the coming days will involve finding such areas and eliminating them, please don't create any more! -- Steve Passe | powered by smp@csn.net | Symmetric MultiProcessor FreeBSD From owner-freebsd-current Sun Aug 17 20:50:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id UAA18250 for current-outgoing; Sun, 17 Aug 1997 20:50:33 -0700 (PDT) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA18245 for ; Sun, 17 Aug 1997 20:50:27 -0700 (PDT) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id UAA29116; Sun, 17 Aug 1997 20:43:13 -0700 (PDT) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpd029114; Mon Aug 18 03:43:12 1997 Message-ID: <33F7C436.42877E5C@whistle.com> Date: Sun, 17 Aug 1997 20:40:38 -0700 From: Julian Elischer Organization: Whistle Communications X-Mailer: Mozilla 3.0Gold (X11; I; FreeBSD 2.2-CURRENT i386) MIME-Version: 1.0 To: Eric Jones CC: freebsd-current@FreeBSD.ORG Subject: Re: include Makefile - am I the only one having trouble with this? References: <33F75CCA.99CEA3A@pencom.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Eric Jones wrote: > > My make worlds stopped working a month or more ago when trying to > install osreldate.h. I figured the problwm was obvious and it would get > fixed soon, but since it hasn't I'm wondering if it's something I've > screwed > up. I needed to do something similar but I can't rememeber what it was.. I do remember that I had to add an 'all' case to some clause in a make file. The install bit was there, but it never MADE the damned thing. it's definitly broken under some cases. From owner-freebsd-current Sun Aug 17 20:51:00 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id UAA18290 for current-outgoing; Sun, 17 Aug 1997 20:51:00 -0700 (PDT) Received: from labinfo.iet.unipi.it (labinfo.iet.unipi.it [131.114.9.5]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id UAA18285; Sun, 17 Aug 1997 20:50:56 -0700 (PDT) Received: from localhost (luigi@localhost) by labinfo.iet.unipi.it (8.6.5/8.6.5) id EAA09720; Mon, 18 Aug 1997 04:41:34 +0200 From: Luigi Rizzo Message-Id: <199708180241.EAA09720@labinfo.iet.unipi.it> Subject: Re: Problem with my Wincast, fxtv To: hasty@rah.star-gate.com (Amancio Hasty) Date: Mon, 18 Aug 1997 04:41:33 +0200 (MET DST) Cc: msmith@atrad.adelaide.edu.au, terry@lambert.org, mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG In-Reply-To: <199708180201.TAA02325@rah.star-gate.com> from "Amancio Hasty" at Aug 17, 97 07:01:36 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > >Ah, the light dawns. How about the next isa_dma* function Luigi has > >requested? Is the sanity checking in general a major problem from your > >point of view? > > My right eye begings to nervously twitch ... Just joking . > > I have no idea what Luigi wants to do next in the way of dma interface > so him and I will have to "sit" down and iron out the functionality . > I will let Luigi post the outcome of our discussion . There is not much to discuss, basically I have proposed a new function, isa_dmastop(chan), which allows me to stop a DMA transfer. This _might_ be needed to implement functions such as PAUSE in a clean way (not sure the function is really necessary, since one can ni principle disable the DMA engine on the sound card and then do things as if the transfer had finished. But since I am not sure that all sound cards support disabling the DMA engine before a transfer is complete, I prefer to have an alternative way as well. The code bloat is minimum and the reason why I want it to be in isa.c rather than in the sound driver is precisely what Steve Passe said, avoid subsystem fiddle with the hardware in uncontrolled ways. Cheers Luigi From owner-freebsd-current Sun Aug 17 21:02:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA18924 for current-outgoing; Sun, 17 Aug 1997 21:02:31 -0700 (PDT) Received: from labinfo.iet.unipi.it (labinfo.iet.unipi.it [131.114.9.5]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id VAA18903; Sun, 17 Aug 1997 21:02:15 -0700 (PDT) Received: from localhost (luigi@localhost) by labinfo.iet.unipi.it (8.6.5/8.6.5) id EAA09746; Mon, 18 Aug 1997 04:52:56 +0200 From: Luigi Rizzo Message-Id: <199708180252.EAA09746@labinfo.iet.unipi.it> Subject: PnP configuration To: hasty@rah.star-gate.com (Amancio Hasty) Date: Mon, 18 Aug 1997 04:52:55 +0200 (MET DST) Cc: msmith@atrad.adelaide.edu.au, terry@lambert.org, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG In-Reply-To: <199708180144.SAA02281@rah.star-gate.com> from "Amancio Hasty" at Aug 17, 97 06:44:03 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > >From The Desk Of Michael Smith : > > I'd prefer not to debate it either. I think that it's sufficiently > > separate that when the time comes it can be relocated without > > adversely affecting anything at all. I merely resent the effort > > that's being put into standalone PnP-for-sound-cards-only work where > > the same effort could be better spent on a generalised push. > > > > As far as I know Luigi's PnP efforts are not tied to the sound > driver and we are using the sound driver as a testbed for PnP support. Right. People, if you have the time please read and comment the document on PnP configuration that is in my sound code snapshot http://www.iet.unipi.it/~luigi/snd970814.tgz (the file is sound/doc/pnp.ps.gz). I think this code could almost go into the source tree, with just a little more work (which I am doing at the moment). The PnP code does not harm if it finds a peripheral which is not supported, and it works if a peripheral is supported (yes it assumes a working PnP bios, but that problem will be overocme soon with a manual override mechanism). Cheers Luigi -----------------------------+-------------------------------------- Luigi Rizzo | Dip. di Ingegneria dell'Informazione email: luigi@iet.unipi.it | Universita' di Pisa tel: +39-50-568533 | via Diotisalvi 2, 56126 PISA (Italy) fax: +39-50-568522 | http://www.iet.unipi.it/~luigi/ _____________________________|______________________________________ From owner-freebsd-current Sun Aug 17 21:06:28 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA19281 for current-outgoing; Sun, 17 Aug 1997 21:06:28 -0700 (PDT) Received: from rah.star-gate.com (rah.star-gate.com [204.188.121.18]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA19275; Sun, 17 Aug 1997 21:06:24 -0700 (PDT) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.7/8.8.5) with ESMTP id VAA03040; Sun, 17 Aug 1997 21:05:12 -0700 (PDT) Message-Id: <199708180405.VAA03040@rah.star-gate.com> X-Mailer: exmh version 2.0gamma 1/27/96 To: Luigi Rizzo cc: msmith@atrad.adelaide.edu.au, terry@lambert.org, mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Problem with my Wincast, fxtv In-reply-to: Your message of "Mon, 18 Aug 1997 04:41:33 +0200." <199708180241.EAA09720@labinfo.iet.unipi.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 17 Aug 1997 21:05:12 -0700 From: Amancio Hasty Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Please, post proposed changes to the multimedia mailing first so at the very least the multimedia group can present a unified consesus agreement . Thank You, Amancio >From The Desk Of Luigi Rizzo : > > >Ah, the light dawns. How about the next isa_dma* function Luigi has > > >requested? Is the sanity checking in general a major problem from your > > >point of view? > > > > My right eye begings to nervously twitch ... Just joking . > > > > I have no idea what Luigi wants to do next in the way of dma interface > > so him and I will have to "sit" down and iron out the functionality . > > I will let Luigi post the outcome of our discussion . > > There is not much to discuss, basically I have proposed a new > function, isa_dmastop(chan), which allows me to stop a DMA transfer. > This _might_ be needed to implement functions such as PAUSE in a > clean way (not sure the function is really necessary, since one > can ni principle disable the DMA engine on the sound card and then > do things as if the transfer had finished. But since I am not sure > that all sound cards support disabling the DMA engine before a > transfer is complete, I prefer to have an alternative way as well. > > The code bloat is minimum and the reason why I want it to be in isa.c > rather than in the sound driver is precisely what Steve Passe said, > avoid subsystem fiddle with the hardware in uncontrolled ways. > > Cheers > Luigi From owner-freebsd-current Sun Aug 17 22:52:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id WAA27866 for current-outgoing; Sun, 17 Aug 1997 22:52:16 -0700 (PDT) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA27860 for ; Sun, 17 Aug 1997 22:52:13 -0700 (PDT) Received: from greenpeace.grondar.za (WygEjqGlesXWKM7JN/81zhM4KlOg7hiW@greenpeace.grondar.za [196.7.18.132]) by gratis.grondar.za (8.8.6/8.8.7) with ESMTP id HAA10907; Mon, 18 Aug 1997 07:52:32 +0200 (SAT) Received: from greenpeace.grondar.za (2LMmc35D3iTzMCeKP7kLHgMwg+oTol65@localhost [127.0.0.1]) by greenpeace.grondar.za (8.8.6/8.8.7) with ESMTP id HAA18854; Mon, 18 Aug 1997 07:52:05 +0200 (SAT) Message-Id: <199708180552.HAA18854@greenpeace.grondar.za> X-Mailer: exmh version 2.0zeta 7/24/97 To: Andreas Klemm cc: current@FreeBSD.ORG Subject: Re: EBONES=yes in /etc/make.conf is still a make world show-stopper Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 18 Aug 1997 07:52:04 +0200 From: Mark Murray Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hi There is a _*MAJOR*_ fix poised in the wings. Please be patient. M Andreas Klemm wrote: > test -e /usr/src/eBones/lib/libkrb/obj/../../lib/libkrb/krb_err.et || ln -s / usr > /src/eBones/lib/libkrb/../../lib/libkrb/krb_err.et /usr/src/eBones/lib/libkrb /ob > j/../../lib/libkrb > cd /usr/src/eBones/lib/libkrb/obj/../../lib/libkrb; compile_et krb_err.et > cd: can't cd to /usr/src/eBones/lib/libkrb/obj/../../lib/libkrb > *** Error code 2 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > > -- > Andreas Klemm | klemm.gtn.com - powered by > Symmetric MultiProcessor FreeBSD > http://www.freebsd.org/~fsmp/SMP/SMP.html > http://www.freebsd.org/~fsmp/SMP/benches.html -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org From owner-freebsd-current Sun Aug 17 23:27:50 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA29651 for current-outgoing; Sun, 17 Aug 1997 23:27:50 -0700 (PDT) Received: from ylana.vet.purdue.edu (vet.vet.purdue.edu [128.210.96.50]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA29645; Sun, 17 Aug 1997 23:27:41 -0700 (PDT) Received: from ylana.vet.purdue.edu (localhost.vet.purdue.edu [127.0.0.1]) by ylana.vet.purdue.edu (8.8.6/8.8.7) with ESMTP id BAA17303; Mon, 18 Aug 1997 01:27:45 -0500 (EST) Message-Id: <199708180627.BAA17303@ylana.vet.purdue.edu> X-Mailer: exmh version 2.0zeta 7/24/97 To: "Julian H. Stacey" cc: current@FreeBSD.ORG, Shimon@i-Connect.Net Subject: Re: "Content-Type: text/plain; charset=iso-8859-8" In-reply-to: Your message of "Sun, 17 Aug 1997 16:50:18 +0200." <199708171450.QAA07750@desk.jhs.no_domain> X-Face: ,iAu+D%h{(d]CWWn2pEPnxbw\z?Yo-w`Qwp+aB..i3FhoQ/$Y_QIfnj>q?Y|^(9_HX(Z{RW C%|hs/[R*TG?)p`~}IHCD1.L@qBYbGS6?$\q745_>AlAIQ}Us.CiWEK:2STh{FKhL?wy3dP#RpZ>n; i:WF#lLfVmcbQ\2V}3$Mf<7DUTW+MU41|YQ?Afg9'ol}];*;ATS*4GI;*/_A,6t?bfh;rC@*rDD&"< l%m;juVWtTbY_G6hp#8yJ4d;3*].sGR@2m_YyWo99GQJh8g|&wCSlc8'O(&C0>M2;ul Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk "Julian H. Stacey" wrote: >Each time I read a freebsd list mail item from > Simon Shapiro >(on current & stable lists) >using my EXMH 1.6.9 his mail displays in a truly horrible font, >partially thickened (like numbers on a bank cheque, hell to read) >I asked him about it, but he didn't know what I meant, so I tracked it >down, it's the > "; charset=iso-8859-8" >component of his > Content-Type: text/plain; charset=iso-8859-8 >I don't see it from anyone else. > >I'd like to know: >- Do other people see this truly horrible font ? >- is his header OK / not OK ?, >- or is it my mail reader (EXMH 1.6.9) throwing a fit ? (& why ?) > it occurs to me it might be an exmh font scaling problem, as I recall > I use a larger than standard font. > (I append my .exmh-defaults at end of mail) >- or some thing else I'v not considered ? I see it with exmh-2.0zeta, and I believe it is just that the fonts below are ugly: [snip] >My system: >xlsfonts|grep iso8859-8 >-misc-fixed-medium-r-normal--0-0-75-75-c-0-iso8859-8 >-misc-fixed-medium-r-normal--13-100-100-100-c-80-iso8859-8 >-misc-fixed-medium-r-normal--13-120-75-75-c-80-iso8859-8 >-misc-fixed-medium-r-semicondensed--0-0-75-75-c-0-iso8859-8 >-misc-fixed-medium-r-semicondensed--13-100-100-100-c-60-iso8859-8 >-misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-8 The following recommendations are pure speculation, based upon the exmh help files and the app-defaults file. I've never tried any of them myself. It seems to me that there are two options. One can either locate nicer fonts with iso8859-8 encoding, or force exmh to use the iso8859-1 fonts instead (and end up with a few miscoded characters in the e-mail). In either case, you will have to look through the app-defaults file in /usr/local/lib/exmh-(whatever), and then modify your .exmh-defaults file. Here are some interesting sections of the app-defaults file: ! For each defined character set, we need to know the registry and ! encoding used to find the fonts. ! US-ASCII is a subset of all the ISO-8859 character sets, so we can ! wildcard the encoding for it. ISO-8859-1 and ISO-8859-8 ship with ! X11r5, so they're defined here. Any addtional charsets which exist at ! your site should be defined here. *mime_us-ascii_registry: iso8859 *mime_us-ascii_encoding: * *mime_iso-8859-1_registry: iso8859 *mime_iso-8859-1_encoding: 1 *mime_iso-8859-8_registry: iso8859 *mime_iso-8859-8_encoding: 8 ! For the second option above, one might add the following line to one's .exmh-defaults file: *mime_iso-8859-8_encoding: 1 Later in the app-defaults file, there is this secion: ! For each charset, we have four differerent possible ways that the ! characters may be displayed. "plain" is how they are displayed in ! an ordinary (text/plain) message; "fixed" is how fixed face ! characters are displayed in enriched text; "proportional" is how ! proportional face characters are displayed in enriched text; and ! "title" is how part headers are displayed. ! ! The list which follows are families which provide this style for ! this character set in order of preference. If none of the familes ! are found for a particular characterset/display style, a wildcard ! is used for the family. ! These may be overridden by users. *mime_us-ascii_plain_families: fixed clean lucidatypewriter courier terminal *mime_us-ascii_fixed_families: lucidatypewriter fixed clean courier terminal *mime_us-ascii_proportional_families: times "new century schoolbook" \ lucidabright charter lucida helvetica *mime_us-ascii_title_families: times "new century schoolbook" \ lucidabright charter lucida helvetica *mime_iso-8859-1_plain_families: lucidatypewriter fixed courier terminal *mime_iso-8859-1_fixed_families: lucidatypewriter fixed courier terminal *mime_iso-8859-1_proportional_families: times "new century schoolbook" \ lucidabright charter lucida helvetica *mime_iso-8859-1_title_families: times "new century schoolbook" \ lucidabright charter lucida helvetica *mime_iso-8859-8_plain_families: fixed *mime_iso-8859-8_fixed_families: fixed *mime_iso-8859-8_proportional_families: *mime_iso-8859-8_title_families: ! If you found some nice iso8859-8 fonts, you could add some lines to .exmh-defaults to reflect that fact. Something like: *mime_iso-8859-8_plain_families: courier fixed *mime_iso-8859-8_fixed_families: courier fixed *mime_iso-8859-8_proportional_families: times helvetica *mime_iso-8859-8_title_families: times helvetica If you just want to force exmh to use the wrong encoding, you could duplicate the lines for iso-8859-1 above, and fake it for iso-8859-8 (as well as the other change): *mime_iso-8859-8_plain_families: lucidatypewriter fixed courier terminal *mime_iso-8859-8_fixed_families: lucidatypewriter fixed courier terminal *mime_iso-8859-8_proportional_families: times "new century schoolbook" \ lucidabright charter lucida helvetica *mime_iso-8859-8_title_families: times "new century schoolbook" \ lucidabright charter lucida helvetica There is an exmh-users mailing list that has been very helpful to me. Send "subscibe exmh-users" to Majordomo@sunlabs.eng.Sun.COM to subscribe. Hope this helps, -Ben -- | "I support efforts to limit the terms of members of Benjamin Lewis | Congress, especially members of the House and members bhlewis@purdue.edu | of the Senate." | -- Vice-President Dan Quayle From owner-freebsd-current Mon Aug 18 01:12:52 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id BAA06588 for current-outgoing; Mon, 18 Aug 1997 01:12:52 -0700 (PDT) Received: from shadows.aeon.net (bsdcur@shadows.aeon.net [194.100.41.1]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id BAA06581 for ; Mon, 18 Aug 1997 01:12:46 -0700 (PDT) Received: (from bsdcur@localhost) by shadows.aeon.net (8.8.7/8.8.3) id LAA10361 for current@freebsd.org; Mon, 18 Aug 1997 11:11:28 +0300 (EET DST) From: mika ruohotie Message-Id: <199708180811.LAA10361@shadows.aeon.net> Subject: sendmail? To: current@freebsd.org Date: Mon, 18 Aug 1997 11:11:28 +0300 (EET DST) X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk uh, what is wrong with my sendmail? every machine where i now run 8.8.7 tells me hash map "Alias0": unsafe map file /etc/aliases: No such file or directory Aug 18 11:08:22 moonshade sendmail[22332]: NOQUEUE: SYSERR(root): hash map "Alias0": unsafe map file /etc/aliases: No such file or directory i have /etc/aliases, i've redone it, i've recompiled /etc/sendmail.cf and sendmail, multiple times. as far as i can tell, the /etc/sendmail.cf has nothing wrong in it... and it's not just one machine, it's all those machines i run 8.8.7 on, the ones i yet have not upgraded from 8.8.6 are ok. sendmail is updated "inside" the 'make world' anyone else having this? sollutions? mickey From owner-freebsd-current Mon Aug 18 01:22:17 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id BAA06988 for current-outgoing; Mon, 18 Aug 1997 01:22:17 -0700 (PDT) Received: from shadows.aeon.net (bsdcur@shadows.aeon.net [194.100.41.1]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id BAA06983 for ; Mon, 18 Aug 1997 01:22:12 -0700 (PDT) Received: (from bsdcur@localhost) by shadows.aeon.net (8.8.7/8.8.3) id LAA10432 for current@freebsd.org; Mon, 18 Aug 1997 11:21:02 +0300 (EET DST) From: mika ruohotie Message-Id: <199708180821.LAA10432@shadows.aeon.net> Subject: forget sendmail... To: current@freebsd.org Date: Mon, 18 Aug 1997 11:21:02 +0300 (EET DST) X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk damn it, the minute i mail something, i get it fixed... :& 'sendmail -v -bi' fixed the problem i had. mickey From owner-freebsd-current Mon Aug 18 04:52:54 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id EAA16185 for current-outgoing; Mon, 18 Aug 1997 04:52:54 -0700 (PDT) Received: from labinfo.iet.unipi.it (labinfo.iet.unipi.it [131.114.9.5]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id EAA16174; Mon, 18 Aug 1997 04:52:50 -0700 (PDT) Received: from localhost (luigi@localhost) by labinfo.iet.unipi.it (8.6.5/8.6.5) id MAA10169; Mon, 18 Aug 1997 12:41:43 +0200 From: Luigi Rizzo Message-Id: <199708181041.MAA10169@labinfo.iet.unipi.it> Subject: Re: Problem with my Wincast, fxtv To: hasty@rah.star-gate.com (Amancio Hasty) Date: Mon, 18 Aug 1997 12:41:43 +0200 (MET DST) Cc: msmith@atrad.adelaide.edu.au, terry@lambert.org, mestery@winternet.com, freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG In-Reply-To: <199708180405.VAA03040@rah.star-gate.com> from "Amancio Hasty" at Aug 17, 97 09:04:53 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Please, post proposed changes to the multimedia mailing first so at > the very least the multimedia group can present a unified consesus > agreement . the code is in the README file of my last snap (and I thought I also posted it explicitly, if I didn't it was just by mistake). At any rate the code is as follows: /* * this stops the dma channel and returns the residual count * derived calling isa_dmastatus */ int isa_dmastop(int chan) { if (dma_inuse & (1 << chan) == 0) printf("isa_dmastop: channel %d not acquired\n", chan); if (dma_busy & (1 << chan) == 0) printf("isa_dmastop: channel %d not acquired\n", chan); if ((chan & 4) == 0) outb(DMA1_SMSK, (chan & 3) | 4 /* disable mask */); else outb(DMA2_SMSK, (chan & 3) | 4 /* disable mask */); return isa_dmastatus(chan); } I am not at all concerned on the presence of the checks in the first two lines (since if the channel is already disable then there is no problem anyways). CHeers Luigi From owner-freebsd-current Mon Aug 18 06:53:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA22905 for current-outgoing; Mon, 18 Aug 1997 06:53:34 -0700 (PDT) Received: from critter.dk.tfs.com ([140.145.230.252]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA22900 for ; Mon, 18 Aug 1997 06:53:28 -0700 (PDT) Received: from critter.dk.tfs.com (localhost [127.0.0.1]) by critter.dk.tfs.com (8.8.6/8.8.5) with ESMTP id PAA00232 for ; Mon, 18 Aug 1997 15:52:40 +0200 (CEST) To: current@freebsd.org Subject: big kernels no work ? From: Poul-Henning Kamp Date: Mon, 18 Aug 1997 15:52:40 +0200 Message-ID: <230.871912360@critter.dk.tfs.com> Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Has anybody noticed that big kernels fail these days ? text data bss dec hex 2256896 69632 527608 2854136 2b8cf8 /k2 2367488 90112 530996 2988596 2d9a34 /k3 k2 boots, k3 resets after printing two lines of text. The only difference that matters is the size. I've tried a lot of different combinations. To reproduce, set COPTFLAGS in /etc/make.conf to "-a -g" recompile your kernel and "strip -d kernel" before booting it. -- Poul-Henning Kamp | phk@FreeBSD.ORG FreeBSD Core-team. http://www.freebsd.org/~phk | phk@login.dknet.dk Private mailbox. whois: [PHK] | phk@tfs.com TRW Financial Systems, Inc. Future will arrive by its own means, progress not so. From owner-freebsd-current Mon Aug 18 08:22:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA27598 for current-outgoing; Mon, 18 Aug 1997 08:22:33 -0700 (PDT) Received: from sumatra.americantv.com (sumatra.americantv.com [207.170.17.37]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA27593 for ; Mon, 18 Aug 1997 08:22:29 -0700 (PDT) Received: from right.PCS (right.PCS [148.105.10.31]) by sumatra.americantv.com (8.8.5/8.8.5) with ESMTP id KAA18528; Mon, 18 Aug 1997 10:39:31 -0500 (CDT) Received: (jlemon@localhost) by right.PCS (8.6.13/8.6.4) id KAA25165; Mon, 18 Aug 1997 10:23:49 -0500 Message-ID: <19970818102348.59683@right.PCS> Date: Mon, 18 Aug 1997 10:23:48 -0500 From: Jonathan Lemon To: mika ruohotie Cc: current@FreeBSD.ORG Subject: Re: sendmail? References: <199708180811.LAA10361@shadows.aeon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.61.1 In-Reply-To: <199708180811.LAA10361@shadows.aeon.net>; from mika ruohotie on Aug 08, 1997 at 11:11:28AM +0300 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Aug 08, 1997 at 11:11:28AM +0300, mika ruohotie wrote: > uh, what is wrong with my sendmail? > > every machine where i now run 8.8.7 tells me > > hash map "Alias0": unsafe map file /etc/aliases: No such file or directory > Aug 18 11:08:22 moonshade sendmail[22332]: NOQUEUE: SYSERR(root): hash map > "Alias0": unsafe map file /etc/aliases: No such file or directory You need to run 'sendmail -bi' to rebuild the aliases.db map file. -- Jonathan From owner-freebsd-current Mon Aug 18 08:50:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA28940 for current-outgoing; Mon, 18 Aug 1997 08:50:16 -0700 (PDT) Received: from critter.dk.tfs.com (critter.phk.freebsd.dk [195.8.129.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA28933; Mon, 18 Aug 1997 08:50:08 -0700 (PDT) Received: from critter.dk.tfs.com (localhost [127.0.0.1]) by critter.dk.tfs.com (8.8.6/8.8.5) with ESMTP id RAA00223; Mon, 18 Aug 1997 17:19:52 +0200 (CEST) To: dyson@freebsd.org Cc: current@freebsd.org Subject: big kernels, part II From: Poul-Henning Kamp Date: Mon, 18 Aug 1997 17:19:52 +0200 Message-ID: <221.871917592@critter.dk.tfs.com> Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I've found the problem with big kernels. The problem is that the "PSE" code assumes that a kernel text+data+bss+symbols+misc data will always fit in one 4MB "super-page". This is obviously not always the case. To reproduce just compile a kernel with COPTFLAGS set to "-a -g" and you will see it (if your cpu supports PSE that is). Any chance you can fix this John ? -- Poul-Henning Kamp | phk@FreeBSD.ORG FreeBSD Core-team. http://www.freebsd.org/~phk | phk@login.dknet.dk Private mailbox. whois: [PHK] | phk@tfs.com TRW Financial Systems, Inc. Future will arrive by its own means, progress not so. From owner-freebsd-current Mon Aug 18 09:23:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA00456 for current-outgoing; Mon, 18 Aug 1997 09:23:04 -0700 (PDT) Received: from george.arc.nasa.gov (george.arc.nasa.gov [128.102.194.142]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id JAA00450 for ; Mon, 18 Aug 1997 09:23:00 -0700 (PDT) From: lamaster@george.arc.nasa.gov Received: (from lamaster@localhost) by george.arc.nasa.gov (8.8.7/8.8.7) id JAA22195 for current@hub.freebsd.org; Mon, 18 Aug 1997 09:20:31 -0700 (PDT) Date: Mon, 18 Aug 1997 09:20:31 -0700 (PDT) Message-Id: <199708181620.JAA22195@george.arc.nasa.gov> To: current@hub.freebsd.org Subject: Re: exmh and current.. anyone? Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Amancio Hasty wrote: |> >From The Desk Of David Nugent : |> > As someone pointed out, if the new tcl8 initialisation files were |> > moved into /usr/libdata/tcl8.0/ rather than their current location, |> > it would mitigate problems with any transition from 2.2 to -current |> > as the existing files and libraries would remain intact. I honestly |> |> Wrong , again the issue is not tcl8.xxx rather is what it ought |> to be requirement: a resonable ability to resolve technical issues. Well, I'm new to FreeBSD, but, I'm not new to Tcl/Tk, and I regret to say I have to disagree with Amancio on this one. It may be in this case there may be a failure of the system to resolve technical issues (I wasn't involved, and my only comment on the situation is that I love the ports collection, *and*, I'm running -current because I wanted access to new drivers, even though I'm probably not an ideal -current candidate). Despite all that, I have to disagree, as I said, because, for one reason and another, historically, Tcl/Tk has been far less upwardly, and downwardly, compatible than it could or should have been. Of course, every change has a good justification, and all that, but the effect is that not only do lots of things break upon upgrades, but, sometimes, you just can't seem to build a version of your app which will work across multiple Tcl/Tk versions. That must make it difficult to try to maintain a single ports collection. Just recently, I attempted to move a package up to 7.6 (you folks are talking 8.x!), and, for some reason, numerical input in a particular labelled entry window is now getting mysteriously input incorrectly. Not a big deal, but, typical, and what with one thing and another, Tcl/Tk apps break a lot more frequently than you might expect based on other languages/packages. On some Unix systems, you can still compile and link (the libraries still work!) K&R C if you need to, but, you can expect some Tck/Tk apps to break with every new version release. That is why the issue might very well be which versions of Tcl/Tk are the standard, default release. Don't get me wrong, I think Tcl/Tk is the only way to go for many apps. But, I think that to avoid a lot of wasted time needlessly thrashing with Tcl/Tk apps, a single version should be the standard, default version used by system utilities and the ports collection for a particular system release. And, hopefully, one of these days Tcl/Tk will start being truly upward-compatible. |> Yes, we need users on current however people should understand that |> is a fluid environment. No question that -current should be a fluid environment. What drives some of us to use 3.0-current instead of 2.2.2 are new drivers that don't always get back-ported to previous versions. Apologies in advance for anything ignorant or misinformed I may have said herein. -Hugh LaMaster Hugh LaMaster, M/S 258-5, ASCII Email: hlamaster@mail.arc.nasa.gov NASA Ames Research Center Or: lamaster@nas.nasa.gov Moffett Field, CA 94035-1000 No Junkmail: USC 18 section 2701 Phone: 415/604-1056 Disclaimer: Unofficial, personal *opinion*. From owner-freebsd-current Mon Aug 18 11:29:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id LAA08092 for current-outgoing; Mon, 18 Aug 1997 11:29:09 -0700 (PDT) Received: from critter.dk.tfs.com (critter.phk.freebsd.dk [195.8.129.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id LAA08081 for ; Mon, 18 Aug 1997 11:29:06 -0700 (PDT) Received: from critter.dk.tfs.com (localhost [127.0.0.1]) by critter.dk.tfs.com (8.8.6/8.8.5) with ESMTP id UAA00274 for ; Mon, 18 Aug 1997 20:28:49 +0200 (CEST) To: current@freebsd.org Subject: lockmgr panics... From: Poul-Henning Kamp Date: Mon, 18 Aug 1997 20:28:49 +0200 Message-ID: <272.871928929@critter.dk.tfs.com> Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk panic: lockmgr: called with null process syncing disks... Fatal trap 12: page fault while in kernel mode fault virtual address = 0x10 fault code = supervisor read, page not present instruction pointer = 0x8:0xf01af219 stack pointer = 0x10:0xf0357cb4 frame pointer = 0x10:0xf0357cc0 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = net tty No traceback, sorry... -- Poul-Henning Kamp | phk@FreeBSD.ORG FreeBSD Core-team. http://www.freebsd.org/~phk | phk@login.dknet.dk Private mailbox. whois: [PHK] | phk@tfs.com TRW Financial Systems, Inc. Future will arrive by its own means, progress not so. From owner-freebsd-current Mon Aug 18 11:34:21 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id LAA08527 for current-outgoing; Mon, 18 Aug 1997 11:34:21 -0700 (PDT) Received: from dyson.iquest.net (dyson.iquest.net [198.70.144.127]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id LAA08521; Mon, 18 Aug 1997 11:34:13 -0700 (PDT) Received: (from root@localhost) by dyson.iquest.net (8.8.6/8.8.5) id NAA14815; Mon, 18 Aug 1997 13:34:02 -0500 (EST) From: "John S. Dyson" Message-Id: <199708181834.NAA14815@dyson.iquest.net> Subject: Re: big kernels, part II In-Reply-To: <221.871917592@critter.dk.tfs.com> from Poul-Henning Kamp at "Aug 18, 97 05:19:52 pm" To: phk@dk.tfs.com (Poul-Henning Kamp) Date: Mon, 18 Aug 1997 13:34:02 -0500 (EST) Cc: dyson@freebsd.org, current@freebsd.org X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > > I've found the problem with big kernels. The problem is that the > "PSE" code assumes that a kernel text+data+bss+symbols+misc data will > always fit in one 4MB "super-page". > > This is obviously not always the case. > > To reproduce just compile a kernel with COPTFLAGS set to "-a -g" and you > will see it (if your cpu supports PSE that is). > > Any chance you can fix this John ? > Hmmm.... I never meant to map the entire kernel, but just the first 4MB. I'll look at it. John From owner-freebsd-current Mon Aug 18 11:45:29 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id LAA09159 for current-outgoing; Mon, 18 Aug 1997 11:45:29 -0700 (PDT) Received: from mindcrime.termfrost.org (root@mindcrime.termfrost.org [208.141.2.81]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id LAA09136; Mon, 18 Aug 1997 11:45:20 -0700 (PDT) Received: from localhost (mandrews@localhost) by mindcrime.termfrost.org (8.8.7/8.8.6/mindcrime-19970604) with SMTP id OAA01628; Mon, 18 Aug 1997 14:45:11 -0400 (EDT) Date: Mon, 18 Aug 1997 14:45:11 -0400 (EDT) From: Mike Andrews To: freebsd-current@freebsd.org, freebsd-hardware@freebsd.org Subject: HP 4020i CD-R problems Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I have to be doing something stupid here. Pentium 200 MMX, FreeBSD 2.2-STABLE, HP 4020i CD burner hanging off an NCR 53c875 card. On last month's 2.2-STABLE, I could burn CD's fine. (Unfortunately I don't know the exact date I last burned a disc.) On yesterday's, I can't -- wormcontrol just returns "device not configured" errors. Ejecting and reinserting the media doesn't help. As far as I can tell, neither worm.c in the kernel nor wormcontrol have changed since it was last working. Any ideas? mindcrime# scsi -f /dev/rworm0.ctl -c "0 0 0 0 0 0" SCIOCCOMMAND ioctl: Command accepted. return status 3 (Sense Returned)Command out (6 of 6): 00 00 00 00 00 00 No sense dump for error code 00. sense (32 of 48): 00 00 00 00 00 00 00 00 2e 00 00 00 88 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 mindcrime# wormcontrol select HP 4020i wormcontrol: open(/dev/rworm0): Device not configured Kernel config file fragments: controller ncr0 controller scbus0 device sd0 device st0 device cd0 device worm0 at scbus? dmesg fragments: ncr0 rev 3 int a irq 12 on pci0:10 ncr0 waiting for scsi devices to settle (ncr0:1:0): "SEAGATE ST15230N 0298" type 0 fixed SCSI 2 sd0(ncr0:1:0): Direct-Access sd0(ncr0:1:0): 10.0 MB/s (100 ns, offset 15) 4095MB (8386733 512 byte sectors) (ncr0:2:0): "HP C4324/C4325 1.27" type 5 removable SCSI 2 worm0(ncr0:2:0): Write-Once (ncr0:3:0): "ARCHIVE Python 27216-XXX 2.59" type 1 removable SCSI 2 st0(ncr0:3:0): Sequential-Access st0(ncr0:3:0): 5.0 MB/s (200 ns, offset 15) density code 0x13, drive empty (ncr0:4:0): "TOSHIBA CD-ROM XM-3501TA 3054" type 5 removable SCSI 2 cd0(ncr0:4:0): CD-ROM cd0(ncr0:4:0): 4.0 MB/s (250 ns, offset 16) can't get the size (ncr0:6:0): "QUANTUM FIREBALL_TM3200S 300X" type 0 fixed SCSI 2 sd1(ncr0:6:0): Direct-Access sd1(ncr0:6:0): 10.0 MB/s (100 ns, offset 15) 3067MB (6281856 512 byte sectors) -- Mike Andrews (MA12) network & systems guy, Digital Crescent, Frankfort KY -- mandrews@dcr.net -- mandrews@termfrost.org -- http://www.termfrost.org/ -- "Evil shall always prevail over good, because evil has better marketing..." -- Sick of junk e-mail? Visit http://www.cauce.org/ or http://spam.abuse.net/ From owner-freebsd-current Mon Aug 18 13:31:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA16302 for current-outgoing; Mon, 18 Aug 1997 13:31:09 -0700 (PDT) Received: from critter.dk.tfs.com (critter.phk.freebsd.dk [195.8.133.1]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA16275; Mon, 18 Aug 1997 13:30:57 -0700 (PDT) Received: from critter.dk.tfs.com (localhost [127.0.0.1]) by critter.dk.tfs.com (8.8.6/8.8.5) with ESMTP id WAA00243; Mon, 18 Aug 1997 22:30:41 +0200 (CEST) To: dyson@freebsd.org, wollman@freebsd.org Cc: current@freebsd.org Subject: further on -current panics... From: Poul-Henning Kamp Date: Mon, 18 Aug 1997 22:30:41 +0200 Message-ID: <241.871936241@critter.dk.tfs.com> Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk It seems that you two guys have something to figure out: Here is a traceback: lockmgr kmem_alloc m_mballoc m_copym tcp_output tcp_timers tcp_slowtimo pfslowtimo softclock doreti_swi -- Poul-Henning Kamp | phk@FreeBSD.ORG FreeBSD Core-team. http://www.freebsd.org/~phk | phk@login.dknet.dk Private mailbox. whois: [PHK] | phk@tfs.com TRW Financial Systems, Inc. Future will arrive by its own means, progress not so. From owner-freebsd-current Mon Aug 18 14:36:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA19732 for current-outgoing; Mon, 18 Aug 1997 14:36:58 -0700 (PDT) Received: from dyson.iquest.net (dyson.iquest.net [198.70.144.127]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA19719; Mon, 18 Aug 1997 14:36:51 -0700 (PDT) Received: (from root@localhost) by dyson.iquest.net (8.8.6/8.8.5) id QAA15332; Mon, 18 Aug 1997 16:36:43 -0500 (EST) From: "John S. Dyson" Message-Id: <199708182136.QAA15332@dyson.iquest.net> Subject: Re: further on -current panics... In-Reply-To: <241.871936241@critter.dk.tfs.com> from Poul-Henning Kamp at "Aug 18, 97 10:30:41 pm" To: phk@dk.tfs.com (Poul-Henning Kamp) Date: Mon, 18 Aug 1997 16:36:43 -0500 (EST) Cc: dyson@FreeBSD.ORG, wollman@FreeBSD.ORG, current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > It seems that you two guys have something to figure out: > > Here is a traceback: > > lockmgr > kmem_alloc > m_mballoc > m_copym > tcp_output > tcp_timers > tcp_slowtimo > pfslowtimo > softclock > doreti_swi > Could you send the lockmgr error message (with diagnostic on?) Thanks... John From owner-freebsd-current Mon Aug 18 15:08:28 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id PAA21087 for current-outgoing; Mon, 18 Aug 1997 15:08:28 -0700 (PDT) Received: from dyson.iquest.net (dyson.iquest.net [198.70.144.127]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA21077 for ; Mon, 18 Aug 1997 15:08:19 -0700 (PDT) Received: (from root@localhost) by dyson.iquest.net (8.8.6/8.8.5) id RAA15414; Mon, 18 Aug 1997 17:08:13 -0500 (EST) From: "John S. Dyson" Message-Id: <199708182208.RAA15414@dyson.iquest.net> Subject: Re: lockmgr panics... In-Reply-To: <272.871928929@critter.dk.tfs.com> from Poul-Henning Kamp at "Aug 18, 97 08:28:49 pm" To: phk@dk.tfs.com (Poul-Henning Kamp) Date: Mon, 18 Aug 1997 17:08:13 -0500 (EST) Cc: current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > panic: lockmgr: called with null process > > syncing disks... > > Fatal trap 12: page fault while in kernel mode > fault virtual address = 0x10 > fault code = supervisor read, page not present > instruction pointer = 0x8:0xf01af219 > stack pointer = 0x10:0xf0357cb4 > frame pointer = 0x10:0xf0357cc0 > code segment = base 0x0, limit 0xfffff, type 0x1b > = DPL 0, pres 1, def32 1, gran 1 > processor eflags = interrupt enabled, resume, IOPL = 0 > current process = Idle > interrupt mask = net tty > > > No traceback, sorry... > Cool... Sorry for the question that I sent to you before... I read my mail "backwards" like everything else :-). John From owner-freebsd-current Mon Aug 18 15:35:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id PAA22511 for current-outgoing; Mon, 18 Aug 1997 15:35:09 -0700 (PDT) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA22490 for ; Mon, 18 Aug 1997 15:35:02 -0700 (PDT) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.6/8.7.3) id PAA11541; Mon, 18 Aug 1997 15:34:43 -0700 (PDT) Date: Mon, 18 Aug 1997 15:34:43 -0700 (PDT) Message-Id: <199708182234.PAA11541@vader.cs.berkeley.edu> To: jwd@unx.sas.com CC: freebsd-current@freebsd.org In-reply-to: <199708150134.AA20620@iluvatar.unx.sas.com> (jwd@unx.sas.com) Subject: Re: Missing/Bad library during X install From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * Oh no... I think... lot's of tcl stuff going on... Well, I simlinked * what I thought might work: * * lrwxrwxrwx 1 root bin 17 Aug 13 11:08 libtcl.so.75.1 -> ./libtcl80.so.1.2 * * * Well, XF86Setup started to come up, and then locked... reboot time.. That is not going to work. tcl-8.0 is not compatible with tcl-7.5. One thing that *might* work is tcl-7.6. Install tcl-7.6 from the ports, and symlink it to that. No guarantees, though. Satoshi From owner-freebsd-current Mon Aug 18 16:38:38 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA25252 for current-outgoing; Mon, 18 Aug 1997 16:38:38 -0700 (PDT) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA25241 for ; Mon, 18 Aug 1997 16:38:35 -0700 (PDT) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.6/8.7.3) id QAA11703; Mon, 18 Aug 1997 16:38:19 -0700 (PDT) Date: Mon, 18 Aug 1997 16:38:19 -0700 (PDT) Message-Id: <199708182338.QAA11703@vader.cs.berkeley.edu> To: Gary.Jennejohn@munich.netsurf.de CC: freebsd-current@FreeBSD.ORG In-reply-to: <199708152231.WAA16885@peedub.gj.org> (message from Gary Jennejohn on Fri, 15 Aug 1997 22:31:19 +0000) Subject: Re: Make Broke in lkm/vm86 From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * it failed for me too until I remembered to do "make includes" in /usr/src. This should only be necessary if you don't use the "world" targets. Satoshi From owner-freebsd-current Mon Aug 18 18:38:48 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA00869 for current-outgoing; Mon, 18 Aug 1997 18:38:48 -0700 (PDT) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA00859 for ; Mon, 18 Aug 1997 18:38:43 -0700 (PDT) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.6/8.7.3) id SAA11995; Mon, 18 Aug 1997 18:37:41 -0700 (PDT) Date: Mon, 18 Aug 1997 18:37:41 -0700 (PDT) Message-Id: <199708190137.SAA11995@vader.cs.berkeley.edu> To: dima@tejblum.dnttm.rssi.ru CC: freebsd-current@freebsd.org In-reply-to: <199708161829.WAA00740@tejblum.dnttm.rssi.ru> (message from Dmitrij Tejblum on Sat, 16 Aug 1997 22:29:12 +0400) Subject: Re: make -DNOCLEAN world From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * Probably, 'make includes' should be run with SHARED=symlinks. Did it work as intended when you tried that? Satoshi From owner-freebsd-current Mon Aug 18 18:41:15 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA01021 for current-outgoing; Mon, 18 Aug 1997 18:41:15 -0700 (PDT) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA01015 for ; Mon, 18 Aug 1997 18:41:11 -0700 (PDT) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.6/8.7.3) id SAA12005; Mon, 18 Aug 1997 18:41:03 -0700 (PDT) Date: Mon, 18 Aug 1997 18:41:03 -0700 (PDT) Message-Id: <199708190141.SAA12005@vader.cs.berkeley.edu> To: andreas@klemm.gtn.com CC: current@freebsd.org In-reply-to: <19970817152321.22183@klemm.gtn.com> (message from Andreas Klemm on Sun, 17 Aug 1997 15:23:21 +0200) Subject: Re: another make world compile problem, the previous is fixed From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * Subject: Re: another make world compile problem, the previous is fixed Do you mind mentioning how you "fixed" the previous problem? Satoshi From owner-freebsd-current Mon Aug 18 18:45:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA01327 for current-outgoing; Mon, 18 Aug 1997 18:45:16 -0700 (PDT) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA01320 for ; Mon, 18 Aug 1997 18:45:13 -0700 (PDT) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.6/8.7.3) id SAA12016; Mon, 18 Aug 1997 18:45:03 -0700 (PDT) Date: Mon, 18 Aug 1997 18:45:03 -0700 (PDT) Message-Id: <199708190145.SAA12016@vader.cs.berkeley.edu> To: andreas@klemm.gtn.com CC: current@FreeBSD.org In-reply-to: <19970817230100.39614@klemm.gtn.com> (message from Andreas Klemm on Sun, 17 Aug 1997 23:01:00 +0200) Subject: Re: another make world problem From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-current@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk * cc -pipe -O -DYP -c /usr/src/usr.bin/chkey/../newkey/update.c Is this command really from "make world"? If so, there is something clearly missing here. Satoshi From owner-freebsd-current Mon Aug 18 21:45:21 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA09517 for current-outgoing; Mon, 18 Aug 1997 21:45:21 -0700 (PDT) Received: from areality.dyndns.com (26pm02.ka.net [207.51.78.85]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA09427 for ; Mon, 18 Aug 1997 21:44:22 -0700 (PDT) Received: from localhost (wangel@localhost) by areality.dyndns.com (8.8.5/8.8.5) with SMTP id AAA09282 for ; Tue, 19 Aug 1997 00:43:11 -0400 (EDT) Date: Tue, 19 Aug 1997 00:43:09 -0400 (EDT) From: Gary Roberts To: freebsd-current@freebsd.org Subject: Problems w/ libncurses ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I hate to bring this up again, but I thought it was my fault. So I deleted /usr/src/lib/libncurses and let cvsup REGET the entire directory....after I tried to run make world again, I got this: ===> lib/libncurses ".depend", line 541: Need an operator make: fatal errors encountered -- cannot continue *** Error code 1 Anyways. What's going on? I've looked @ the .depend and it's like 177 lines long....any ideas ? Thanks Gary From owner-freebsd-current Mon Aug 18 23:22:28 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA14436 for current-outgoing; Mon, 18 Aug 1997 23:22:28 -0700 (PDT) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id XAA14431 for ; Mon, 18 Aug 1997 23:22:23 -0700 (PDT) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id IAA13578; Tue, 19 Aug 1997 08:22:15 +0200 Received: (from j@localhost) by uriah.heep.sax.de (8.8.7/8.8.5) id IAA19370; Tue, 19 Aug 1997 08:05:12 +0200 (MET DST) Message-ID: <19970819080512.BK51365@uriah.heep.sax.de> Date: Tue, 19 Aug 1997 08:05:12 +0200 From: j@uriah.heep.sax.de (J Wunsch) To: freebsd-current@FreeBSD.ORG Cc: wangel@areality.dyndns.com (Gary Roberts) Subject: Re: Problems w/ libncurses ? References: X-Mailer: Mutt 0.60_p2-3,5,8-9 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: ; from Gary Roberts on Aug 19, 1997 00:43:09 -0400 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Gary Roberts wrote: > ===> lib/libncurses > ".depend", line 541: Need an operator > make: fatal errors encountered -- cannot continue > *** Error code 1 > > Anyways. What's going on? I've looked @ the .depend and it's like 177 > lines long....any ideas ? Did you look at /usr/obj/usr/src/lib/libncurses/.depend? In case of problems with .depend files, it's always a good idea to wipe them out, and re-run `make depend'. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-current Tue Aug 19 02:13:41 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA23178 for current-outgoing; Tue, 19 Aug 1997 02:13:41 -0700 (PDT) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA23173 for ; Tue, 19 Aug 1997 02:13:38 -0700 (PDT) Received: (from uucp@localhost) by news1.gtn.com (8.7.2/8.7.2) with UUCP id IAA29251; Tue, 19 Aug 1997 08:15:17 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.7/8.8.7) id HAA16688; Tue, 19 Aug 1997 07:56:03 +0200 (CEST) Message-ID: <19970819075603.39530@klemm.gtn.com> Date: Tue, 19 Aug 1997 07:56:03 +0200 From: Andreas Klemm To: Satoshi Asami Cc: current@FreeBSD.org Subject: Re: another make world compile problem, the previous is fixed References: <19970817152321.22183@klemm.gtn.com> <199708190141.SAA12005@vader.cs.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.79 In-Reply-To: <199708190141.SAA12005@vader.cs.berkeley.edu>; from Satoshi Asami on Mon, Aug 18, 1997 at 06:41:03PM -0700 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-freebsd-current@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk On Mon, Aug 18, 1997 at 06:41:03PM -0700, Satoshi Asami wrote: > * Subject: Re: another make world compile problem, the previous is fixed > > Do you mind mentioning how you "fixed" the previous problem? Dunno exactly anymore Satoshi ... There were ar least 2 or 3. First I only wanted to report, then I deceided to fix. Please read my commit messages ;-) -- Andreas Klemm | klemm.gtn.com - powered by Symmetric MultiProcessor FreeBSD http://www.freebsd.org/~fsmp/SMP/SMP.html http://www.freebsd.org/~fsmp/SMP/benches.html From owner-freebsd-current Tue Aug 19 02:40:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA24137 for current-outgoing; Tue, 19 Aug 1997 02:40:34 -0700 (PDT) Received: from silvia.HIP.Berkeley.EDU (ala-ca17-23.ix.netcom.com [204.32.168.183]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA24132 for ; Tue, 19 Aug 1997 02:40:31 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.7/8.6.9) id CAA20038; Tue, 19 Aug 1997 02:40:16 -0700 (PDT) Date: Tue, 19 Aug 1997 02:40:16 -0700 (PDT) Message-Id: <199708190940.CAA20038@silvia.HIP.Berkeley.EDU> To: andreas@klemm.gtn.com CC: current@FreeBSD.org In-reply-to: <19970819075603.39530@klemm.gtn.com> (message from Andreas Klemm on Tue, 19 Aug 1997 07:56:03 +0200) Subject: Re: another make world compile problem, the previous is fixed From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-current@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk * Dunno exactly anymore Satoshi ... There were ar least 2 or 3. * First I only wanted to report, then I deceided to fix. * * Please read my commit messages ;-) No, you don't need to report if you fixed it in the repository. I was just wondering if it was one of those "make includes" or "rm -rf /usr/obj/*" hacks that people advocate all the time (but doesn't fix the real problem). Satoshi From owner-freebsd-current Tue Aug 19 03:15:11 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA25798 for current-outgoing; Tue, 19 Aug 1997 03:15:11 -0700 (PDT) Received: from silvia.HIP.Berkeley.EDU (ala-ca17-23.ix.netcom.com [204.32.168.183]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA25793 for ; Tue, 19 Aug 1997 03:15:05 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.7/8.6.9) id DAA20187; Tue, 19 Aug 1997 03:13:18 -0700 (PDT) Date: Tue, 19 Aug 1997 03:13:18 -0700 (PDT) Message-Id: <199708191013.DAA20187@silvia.HIP.Berkeley.EDU> To: itojun@itojun.org CC: andreas@klemm.gtn.com, current@freebsd.org In-reply-to: <639.871826920@itojun.csl.sony.co.jp> Subject: Re: another make world compile problem, the previous is fixed From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * I'm not familiar with /usr/src/usr.bin/vi policy, but... * is it really necessery to compile in tcl interpreter into * /usr/bin/vi? * (I'm familiar with nvi itself) IMO, no (regardless of NOTCL setting). If people want a bloated vi with tcl/tk/perl/whatever support built in, they can use the ports. Satoshi From owner-freebsd-current Tue Aug 19 03:27:41 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA26402 for current-outgoing; Tue, 19 Aug 1997 03:27:41 -0700 (PDT) Received: from mail12.digital.com (mail12.digital.com [192.208.46.20]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA26396 for ; Tue, 19 Aug 1997 03:27:34 -0700 (PDT) From: garyj@frt.dec.com Received: from cssmuc.frt.dec.com (cssmuc.frt.dec.com [16.186.96.161]) by mail12.digital.com (8.7.5/UNX 1.5/1.0/WV) with SMTP id GAA10283 for ; Tue, 19 Aug 1997 06:24:45 -0400 (EDT) Received: from localhost by cssmuc.frt.dec.com; (5.65v3.2/1.1.8.2/14Nov95-0232PM) id AA20780; Tue, 19 Aug 1997 12:24:44 +0200 Message-Id: <9708191024.AA20780@cssmuc.frt.dec.com> X-Mailer: exmh version 1.6.4 10/10/95 To: current@freebsd.org In-Reply-To: Message from asami@cs.berkeley.edu (Satoshi Asami) of Mon, 18 Aug 97 16:38:19 PDT. Reply-To: gjennejohn@frt.dec.com Subject: Re: Make Broke in lkm/vm86 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 19 Aug 97 12:24:44 +0200 X-Mts: smtp Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk asami@cs.berkeley.edu writes: > * it failed for me too until I remembered to do "make includes" in /usr/src. > > This should only be necessary if you don't use the "world" targets. > but that was exactly the issue. The original poster just went into /usr/src/lkm/vm86 and tried to make the LKM. I just reproduced the reported error condition. --- Gary Jennejohn (work) gjennejohn@frt.dec.com (home) garyj@muc.de (play) gj@freebsd.org From owner-freebsd-current Tue Aug 19 04:17:24 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id EAA28438 for current-outgoing; Tue, 19 Aug 1997 04:17:24 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA28405; Tue, 19 Aug 1997 04:17:13 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id VAA08058; Tue, 19 Aug 1997 21:10:41 +1000 Date: Tue, 19 Aug 1997 21:10:41 +1000 From: Bruce Evans Message-Id: <199708191110.VAA08058@godzilla.zeta.org.au> To: hasty@rah.star-gate.com, luigi@labinfo.iet.unipi.it Subject: Re: Problem with my Wincast, fxtv Cc: current@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG, mestery@winternet.com, msmith@atrad.adelaide.edu.au, terry@lambert.org Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >the code is in the README file of my last snap (and I thought I also >posted it explicitly, if I didn't it was just by mistake). > >At any rate the code is as follows: > >/* > * this stops the dma channel and returns the residual count > * derived calling isa_dmastatus > */ >int isa_dmastop(int chan) >{ > if (dma_inuse & (1 << chan) == 0) ( ) > printf("isa_dmastop: channel %d not acquired\n", chan); > if (dma_busy & (1 << chan) == 0) ( ) > printf("isa_dmastop: channel %d not acquired\n", chan); This is missing necessary parentheses, like the original committed version. Bruce From owner-freebsd-current Tue Aug 19 04:35:47 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id EAA29704 for current-outgoing; Tue, 19 Aug 1997 04:35:47 -0700 (PDT) Received: from critter.dk.tfs.com ([140.145.230.252]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA29699 for ; Tue, 19 Aug 1997 04:35:44 -0700 (PDT) Received: from critter.dk.tfs.com (localhost [127.0.0.1]) by critter.dk.tfs.com (8.8.6/8.8.5) with ESMTP id NAA04411 for ; Tue, 19 Aug 1997 13:35:00 +0200 (CEST) To: current@freebsd.org Subject: make world failure From: Poul-Henning Kamp Date: Tue, 19 Aug 1997 13:34:59 +0200 Message-ID: <4409.871990499@critter.dk.tfs.com> Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Straight make world... -current as of this morning. ---------------------------------------------------------------------------- rpcgen -C -c /usr/obj/usr/src/tmp/usr/include/rpcsvc/spray.x -o spray_xdr.c rpcgen -C -c /usr/obj/usr/src/tmp/usr/include/rpcsvc/yppasswd.x -o yppasswd_xdr.c rpcgen -C -c /usr/obj/usr/src/tmp/usr/include/rpcsvc/ypxfrd.x -o ypxfrd_xdr.c rpcgen -C -c /usr/obj/usr/src/tmp/usr/include/rpcsvc/ypupdate_prot.x -o ypupdate_prot_xdr.c rm -f .depend mkdep -f .depend -a -DYP -I/usr/obj/usr/src/tmp/usr/include/rpcsvc -I/usr/obj/usr/src/tmp/usr/include -I/usr/obj/usr/src/tmp/usr/include klm_prot_xdr.c mount_xdr.c nfs_prot_xdr.c nlm_prot_xdr.c rex_xdr.c rnusers_xdr.c rquota_xdr.c rstat_xdr.c rwall_xdr.c sm_inter_xdr.c spray_xdr.c yppasswd_xdr.c ypxfrd_xdr.c ypupdate_prot_xdr.c /usr/src/lib/librpcsvc/rnusers.c /usr/src/lib/librpcsvc/rstat.c /usr/src/lib/librpcsvc/rwall.c /usr/src/lib/librpcsvc/yp_passwd.c /usr/src/lib/librpcsvc/yp_update.c /usr/src/lib/librpcsvc/publickey.c /usr/src/lib/librpcsvc/secretkey.c /usr/src/lib/librpcsvc/xcrypt.c klm_prot_xdr.c:6: klm_prot.h: No such file or directory mount_xdr.c:6: mount.h: No such file or directory nfs_prot_xdr.c:6: nfs_prot.h: No such file or directory nlm_prot_xdr.c:6: nlm_prot.h: No such file or directory rex_xdr.c:6: rex.h: No such file or directory rnusers_xdr.c:6: rnusers.h: No such file or directory rquota_xdr.c:6: rquota.h: No such file or directory rstat_xdr.c:6: rstat.h: No such file or directory rwall_xdr.c:6: rwall.h: No such file or directory sm_inter_xdr.c:6: sm_inter.h: No such file or directory spray_xdr.c:6: spray.h: No such file or directory yppasswd_xdr.c:6: yppasswd.h: No such file or directory ypxfrd_xdr.c:6: ypxfrd.h: No such file or directory ypupdate_prot_xdr.c:6: ypupdate_prot.h: No such file or directory mkdep: compile failed *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. critter# ---------------------------------------------------------------------------- -- Poul-Henning Kamp | phk@FreeBSD.ORG FreeBSD Core-team. http://www.freebsd.org/~phk | phk@login.dknet.dk Private mailbox. whois: [PHK] | phk@tfs.com TRW Financial Systems, Inc. Future will arrive by its own means, progress not so. From owner-freebsd-current Tue Aug 19 05:18:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA01450 for current-outgoing; Tue, 19 Aug 1997 05:18:06 -0700 (PDT) Received: from plaut.de (ns.plaut.de [194.39.177.166]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id FAA01442 for ; Tue, 19 Aug 1997 05:18:00 -0700 (PDT) Received: from totum.plaut.de (totum.plaut.de [194.39.177.9]) by plaut.de (8.6.12/8.6.12) with ESMTP id OAA08643 for ; Tue, 19 Aug 1997 14:17:57 +0200 Received: from localhost (root@localhost) by totum.plaut.de (8.8.5/8.7.3) with SMTP id OAA13805 for ; Tue, 19 Aug 1997 14:17:57 +0200 (MET DST) Date: Tue, 19 Aug 1997 14:17:56 +0200 (MET DST) From: Michael Reifenberger To: FreeBSD-Current Subject: make world failure Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi, make buildworld, current source... (Last make world was Mai 26'th) ... /a/BSD/src/lib/libc/../libc/rpc/auth_des.c:47: rpcsvc/nis.h: No such file or directory /a/BSD/src/lib/libc/../libc/rpc/auth_time.c:46: rpcsvc/nis.h: No such file or directory /a/BSD/src/lib/libc/../libc/rpc/crypt_client.c:39: rpcsvc/crypt.h: No such file or directory mkdep: compile failed ... Bye! ---- Michael Reifenberger Plaut Software GmbH, R/3 Basis From owner-freebsd-current Tue Aug 19 05:21:50 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA01647 for current-outgoing; Tue, 19 Aug 1997 05:21:50 -0700 (PDT) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA01642 for ; Tue, 19 Aug 1997 05:21:48 -0700 (PDT) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.6/8.6.9) with ESMTP id FAA24472; Tue, 19 Aug 1997 05:21:42 -0700 (PDT) To: asami@cs.berkeley.edu (Satoshi Asami) cc: itojun@itojun.org, andreas@klemm.gtn.com, current@FreeBSD.ORG Subject: Re: another make world compile problem, the previous is fixed In-reply-to: Your message of "Tue, 19 Aug 1997 03:13:18 PDT." <199708191013.DAA20187@silvia.HIP.Berkeley.EDU> Date: Tue, 19 Aug 1997 05:21:40 -0700 Message-ID: <24468.871993300@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > * I'm not familiar with /usr/src/usr.bin/vi policy, but... > * is it really necessery to compile in tcl interpreter into > * /usr/bin/vi? > * (I'm familiar with nvi itself) > > IMO, no (regardless of NOTCL setting). If people want a bloated vi > with tcl/tk/perl/whatever support built in, they can use the ports. Though once Peter removes TCL 7.5 from RELENG_2_2, this keyword will be a no-op in all but -current. Just to note it. :) Jordan From owner-freebsd-current Tue Aug 19 06:32:57 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA05436 for current-outgoing; Tue, 19 Aug 1997 06:32:57 -0700 (PDT) Received: from skynet.ctr.columbia.edu (skynet.ctr.columbia.edu [128.59.64.70]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id GAA05429 for ; Tue, 19 Aug 1997 06:32:50 -0700 (PDT) Received: (from wpaul@localhost) by skynet.ctr.columbia.edu (8.6.12/8.6.9) id JAA21017; Tue, 19 Aug 1997 09:32:51 -0400 From: Bill Paul Message-Id: <199708191332.JAA21017@skynet.ctr.columbia.edu> Subject: Re: another make world problem To: asami@cs.berkeley.edu (Satoshi Asami) Date: Tue, 19 Aug 1997 09:32:49 -0400 (EDT) Cc: andreas@klemm.gtn.com, current@freebsd.org In-Reply-To: <199708190145.SAA12016@vader.cs.berkeley.edu> from "Satoshi Asami" at Aug 18, 97 06:45:03 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Of all the gin joints in all the towns in all the world, Satoshi Asami had to walk into mine and say: > * cc -pipe -O -DYP -c /usr/src/usr.bin/chkey/../newkey/update.c > > Is this command really from "make world"? If so, there is something > clearly missing here. > > Satoshi No. The chkey and newkey commands use the same update.c module since they both submit changes to the publickey database the same way (via yp_update() using Secure RPC). Both programs need the same code, but having two copies of update.c is wasteful, so chkey grabs newkey's copy with PATH:. There isn't enough of this common code to justify making a library out of it, and it doesn't belong src/libc/rpc, so this was the best way I could think of to do it. -Bill -- ============================================================================= -Bill Paul (212) 854-6020 | System Manager, Master of Unix-Fu Work: wpaul@ctr.columbia.edu | Center for Telecommunications Research Home: wpaul@skynet.ctr.columbia.edu | Columbia University, New York City ============================================================================= "It is not I who am crazy; it is I who am mad!" - Ren Hoek, "Space Madness" ============================================================================= From owner-freebsd-current Tue Aug 19 06:37:52 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA05679 for current-outgoing; Tue, 19 Aug 1997 06:37:52 -0700 (PDT) Received: from skynet.ctr.columbia.edu (skynet.ctr.columbia.edu [128.59.64.70]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id GAA05672 for ; Tue, 19 Aug 1997 06:37:45 -0700 (PDT) Received: (from wpaul@localhost) by skynet.ctr.columbia.edu (8.6.12/8.6.9) id JAA21029; Tue, 19 Aug 1997 09:37:49 -0400 From: Bill Paul Message-Id: <199708191337.JAA21029@skynet.ctr.columbia.edu> Subject: Re: make world failure To: phk@dk.tfs.com (Poul-Henning Kamp) Date: Tue, 19 Aug 1997 09:37:48 -0400 (EDT) Cc: current@freebsd.org In-Reply-To: <4409.871990499@critter.dk.tfs.com> from "Poul-Henning Kamp" at Aug 19, 97 01:34:59 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Of all the gin joints in all the towns in all the world, Poul-Henning Kamp had to walk into mine and say: > > Straight make world... -current as of this morning. > > ---------------------------------------------------------------------------- > rpcgen -C -c /usr/obj/usr/src/tmp/usr/include/rpcsvc/spray.x -o spray_xdr.c > rpcgen -C -c /usr/obj/usr/src/tmp/usr/include/rpcsvc/yppasswd.x -o yppasswd_xdr.c > rpcgen -C -c /usr/obj/usr/src/tmp/usr/include/rpcsvc/ypxfrd.x -o ypxfrd_xdr.c > rpcgen -C -c /usr/obj/usr/src/tmp/usr/include/rpcsvc/ypupdate_prot.x -o ypupdate_prot_xdr.c > rm -f .depend > mkdep -f .depend -a -DYP -I/usr/obj/usr/src/tmp/usr/include/rpcsvc -I/usr/obj/usr/src/tmp/usr/include -I/usr/obj/usr/src/tmp/usr/include klm_prot_xdr.c mount_xdr.c nfs_prot_xdr.c nlm_prot_xdr.c rex_xdr.c rnusers_xdr.c rquota_xdr.c rstat_xdr.c rwall_xd r.c sm_inter_xdr.c spray_xdr.c yppasswd_xdr.c ypxfrd_xdr.c ypupdate_prot_xdr.c /usr/src/lib/librpcsvc/rnusers.c /usr/src/lib/librpcsvc/rstat.c /usr/src/lib/librpcsvc/rwall.c /usr/src/lib/librpcsvc/yp_passwd.c /usr/src/lib/librpcsvc/yp_update.c /usr/src/li b/librpcsvc/publickey.c /usr/src/lib/librpcsvc/secretkey.c /usr/src/lib/librpcsvc/xcrypt.c > klm_prot_xdr.c:6: klm_prot.h: No such file or directory > mount_xdr.c:6: mount.h: No such file or directory [chop] Argh... the rpcgen-erated RPC header files should be installed before librpcsvc is built. It looks like they weren't. I could swear they were supposed to be built and installed as part of the includes target. -Bill -- ============================================================================= -Bill Paul (212) 854-6020 | System Manager, Master of Unix-Fu Work: wpaul@ctr.columbia.edu | Center for Telecommunications Research Home: wpaul@skynet.ctr.columbia.edu | Columbia University, New York City ============================================================================= "It is not I who am crazy; it is I who am mad!" - Ren Hoek, "Space Madness" ============================================================================= From owner-freebsd-current Tue Aug 19 06:55:14 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA06481 for current-outgoing; Tue, 19 Aug 1997 06:55:14 -0700 (PDT) Received: from mail.wup.de (ns.wup.de [149.237.200.7]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA06470 for ; Tue, 19 Aug 1997 06:55:09 -0700 (PDT) Received: (from andreas@localhost) by mail.wup.de (8.8.6/8.8.7) id OAA05375; Tue, 19 Aug 1997 14:36:41 +0200 (CEST) Message-ID: <19970819143641.59371@wup.de> Date: Tue, 19 Aug 1997 14:36:41 +0200 From: Andreas Klemm To: Satoshi Asami Cc: andreas@klemm.gtn.com, current@FreeBSD.ORG Subject: Re: another make world compile problem, the previous is fixed References: <19970819075603.39530@klemm.gtn.com> <199708190940.CAA20038@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.79 In-Reply-To: <199708190940.CAA20038@silvia.HIP.Berkeley.EDU>; from Satoshi Asami on Tue, Aug 19, 1997 at 02:40:16AM -0700 X-phone: Wiechers & Partner +49 2173 3964 161 X-fax: Wiechers & Partner +49 2173 3964 222 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Tue, Aug 19, 1997 at 02:40:16AM -0700, Satoshi Asami wrote: > * Dunno exactly anymore Satoshi ... There were ar least 2 or 3. > * First I only wanted to report, then I deceided to fix. > * > * Please read my commit messages ;-) > > No, you don't need to report if you fixed it in the repository. I was > just wondering if it was one of those "make includes" or "rm -rf > /usr/obj/*" hacks that people advocate all the time (but doesn't fix > the real problem). No there was simply an -I/usr/include/tcl missin'. -- Wiechers & Partner Datentechnik GmbH phone: +49 2173 3964 161 Support Unix - Andreas Klemm fax: +49 2173 3964 222 An der alten Ziegelei 2 mail1: andreas.klemm@wup.de D-40789 Monheim mail2: andreas@FreeBSD.ORG From owner-freebsd-current Tue Aug 19 07:03:36 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id HAA06952 for current-outgoing; Tue, 19 Aug 1997 07:03:36 -0700 (PDT) Received: from mail.wup.de (ns.wup.de [149.237.200.7]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA06860 for ; Tue, 19 Aug 1997 07:02:30 -0700 (PDT) Received: (from andreas@localhost) by mail.wup.de (8.8.6/8.8.7) id OAA05477; Tue, 19 Aug 1997 14:41:30 +0200 (CEST) Message-ID: <19970819144130.08010@wup.de> Date: Tue, 19 Aug 1997 14:41:30 +0200 From: Andreas Klemm To: Satoshi Asami Cc: itojun@itojun.org, andreas@klemm.gtn.com, current@FreeBSD.ORG Subject: Re: another make world compile problem, the previous is fixed References: <639.871826920@itojun.csl.sony.co.jp> <199708191013.DAA20187@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.79 In-Reply-To: <199708191013.DAA20187@silvia.HIP.Berkeley.EDU>; from Satoshi Asami on Tue, Aug 19, 1997 at 03:13:18AM -0700 X-phone: Wiechers & Partner +49 2173 3964 161 X-fax: Wiechers & Partner +49 2173 3964 222 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Tue, Aug 19, 1997 at 03:13:18AM -0700, Satoshi Asami wrote: > * I'm not familiar with /usr/src/usr.bin/vi policy, but... > * is it really necessery to compile in tcl interpreter into > * /usr/bin/vi? > * (I'm familiar with nvi itself) > > IMO, no (regardless of NOTCL setting). If people want a bloated vi > with tcl/tk/perl/whatever support built in, they can use the ports. To second that: Isn't there a vi on the fixit floppy ? I think, if tcl support get's compiled into the standard vi then there could arise space problems or am I wrong ? -- Wiechers & Partner Datentechnik GmbH phone: +49 2173 3964 161 Support Unix - Andreas Klemm fax: +49 2173 3964 222 An der alten Ziegelei 2 mail1: andreas.klemm@wup.de D-40789 Monheim mail2: andreas@FreeBSD.ORG From owner-freebsd-current Tue Aug 19 07:42:21 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id HAA10174 for current-outgoing; Tue, 19 Aug 1997 07:42:21 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA10166 for ; Tue, 19 Aug 1997 07:42:16 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id AAA16151; Wed, 20 Aug 1997 00:36:55 +1000 Date: Wed, 20 Aug 1997 00:36:55 +1000 From: Bruce Evans Message-Id: <199708191436.AAA16151@godzilla.zeta.org.au> To: phk@dk.tfs.com, wpaul@skynet.ctr.columbia.edu Subject: Re: make world failure Cc: current@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Argh... the rpcgen-erated RPC header files should be installed before >librpcsvc is built. It looks like they weren't. I could swear they were >supposed to be built and installed as part of the includes target. They are supposed to be, but are no longer installed as part of the includes target, since `installhdrs' doesn't support SUBDIR'. Related bogons: - `make beforeinstall' is (ab)used to install includes. This worked right everywhere except in include/Makefile and lib/libtcl/Makefile. It is still broken in lib/libtcl/Makefile. Something like installhdrs should be used everywhere. - `installhdrs' should be named `includeinstall' to match `maninstall'. Bruce From owner-freebsd-current Tue Aug 19 09:23:29 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA16624 for current-outgoing; Tue, 19 Aug 1997 09:23:29 -0700 (PDT) Received: from colonelk.puffin.org (colonelk.puffin.org [194.159.247.36]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id JAA16596 for ; Tue, 19 Aug 1997 09:23:13 -0700 (PDT) Received: (from apw@localhost) by colonelk.puffin.org (8.8.5/8.8.5) id RAA03187 for freebsd-current@FreeBSD.ORG; Tue, 19 Aug 1997 17:23:25 +0100 (BST) From: Ade Wilkinson Message-Id: <199708191623.RAA03187@colonelk.puffin.org> Subject: subscribe To: freebsd-current@FreeBSD.ORG Date: Tue, 19 Aug 1997 17:23:24 +0100 (BST) X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk subscribe quit -- Ade Wilkinson | "We took 70ml of ordinary tap water and placed it Systems Administrator | inside this beaker. We then took 70ml of rain -----------------------| water taken from the labratory roof and placed it http://www.puffin.org/ | in this beaker ... don't ask me why, we just did." From owner-freebsd-current Tue Aug 19 22:49:28 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id WAA01117 for current-outgoing; Tue, 19 Aug 1997 22:49:28 -0700 (PDT) Received: from Ilsa.StevesCafe.com (Ilsa.StevesCafe.com [205.168.119.129]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA01110; Tue, 19 Aug 1997 22:49:19 -0700 (PDT) Received: from Ilsa.StevesCafe.com (localhost [127.0.0.1]) by Ilsa.StevesCafe.com (8.8.7/8.8.5) with ESMTP id XAA18105; Tue, 19 Aug 1997 23:49:18 -0600 (MDT) Message-Id: <199708200549.XAA18105@Ilsa.StevesCafe.com> X-Mailer: exmh version 2.0gamma 1/27/96 From: Steve Passe To: smp@freebsd.org cc: current@freebsd.org Subject: HEADS UP: new FAST_INTR() code. Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 19 Aug 1997 23:49:18 -0600 Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi, I just committed a bunch o' code that does several new things. - re-organization in preparation for making spl/cpl MP-safe. - 2 new variations in FAST_INTR() ISRs: - skip the check of ipending and cpl, I can't see a good reason for it and its absense makes life simpler in SMP. This might go back in if it doesn't work out... - the "giant lock" is no longer used, FAST_INTR routines can enter the kernel while other ISRs or traps are active. A simplelock is used to serialize FAST_INTR()s, but that may also go away someday. Let me know how sio code "feels", any improvements? or is it worse? silo overflows? If you get a system freeze, try to get to ddb via CNTL-PRINTSCREEN and get me a trace. I ran the system for 2-3 hours with a continuous 115200 stream in/out COM1 while rebuilding a kernel in another xterm with '-j12' and top in a 3rd xterm, all xterms on a remote machine. Ie. a good mix of sio/scsi/net INTs and syscalls. No signs of any problems. -- Steve Passe | powered by smp@csn.net | Symmetric MultiProcessor FreeBSD From owner-freebsd-current Tue Aug 19 23:34:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA02840 for current-outgoing; Tue, 19 Aug 1997 23:34:30 -0700 (PDT) Received: from server.local.sunyit.edu (A-T34.rh.sunyit.edu [150.156.210.241]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA02835; Tue, 19 Aug 1997 23:34:23 -0700 (PDT) Received: from localhost (perlsta@localhost) by server.local.sunyit.edu (8.8.5/8.8.5) with SMTP id BAA12335; Wed, 20 Aug 1997 01:39:41 GMT X-Authentication-Warning: server.local.sunyit.edu: perlsta owned process doing -bs Date: Wed, 20 Aug 1997 01:39:41 +0000 (GMT) From: Alfred Perlstein X-Sender: perlsta@server.local.sunyit.edu To: Steve Passe cc: smp@FreeBSD.ORG, current@FreeBSD.ORG Subject: SMP in a "production system" In-Reply-To: <199708200549.XAA18105@Ilsa.StevesCafe.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk a LOT of people told me that the SMP kernel/system is VERY stable, so far are many things broken or is everything ok? I'm thinking about getting together an SMP system and was wondering how the SMP system holds out against heavy load and other factors. ._________________________________________ __ _ |Alfred Perlstein - Programming & SysAdmin for hire... |perlsta@sunyit.edu |http://www.cs.sunyit.edu/~perlsta : ---"Have you seen my FreeBSD tatoo?" ' ---"who was that masked admin?" From owner-freebsd-current Tue Aug 19 23:48:35 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA03506 for current-outgoing; Tue, 19 Aug 1997 23:48:35 -0700 (PDT) Received: from sendero-ppp.i-connect.net (sendero-ppp.i-Connect.Net [206.190.143.100]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id XAA03496 for ; Tue, 19 Aug 1997 23:48:30 -0700 (PDT) Received: (qmail 19637 invoked by uid 1000); 20 Aug 1997 06:48:46 -0000 Message-ID: X-Mailer: XFMail 1.2-alpha [p0] on FreeBSD Content-Type: text/plain; charset=iso-8859-8 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199708180627.BAA17303@ylana.vet.purdue.edu> Date: Tue, 19 Aug 1997 23:48:46 -0700 (PDT) Organization: Atlas Telecom From: Simon Shapiro To: Benjamin Lewis Subject: Re: "Content-Type: text/plain; charset=iso-8859-8" Cc: current@FreeBSD.ORG, "Julian H. Stacey" Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hi Benjamin Lewis; On 18-Aug-97 you wrote: ... [ Complaint about innocent Simon deleted ] ... > I see it with exmh-2.0zeta, and I believe it is just that the fonts > below are ugly: > > [snip] > > >My system: > >xlsfonts|grep iso8859-8 > >-misc-fixed-medium-r-normal--0-0-75-75-c-0-iso8859-8 > >-misc-fixed-medium-r-normal--13-100-100-100-c-80-iso8859-8 > >-misc-fixed-medium-r-normal--13-120-75-75-c-80-iso8859-8 > >-misc-fixed-medium-r-semicondensed--0-0-75-75-c-0-iso8859-8 > >-misc-fixed-medium-r-semicondensed--13-100-100-100-c-60-iso8859-8 > >-misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-8 ... So, have I done something gross, obscene and disgusting or not? I just picked up xfmail, compiled and ran. Done so for the longest time. Should I stop, so as not to offend this honorable quorum? Humbly and still XF-Mailing, Simon, the ugly font. P.S. My response is supposed to be humorous. Please smile... From owner-freebsd-current Wed Aug 20 00:52:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id AAA06652 for current-outgoing; Wed, 20 Aug 1997 00:52:20 -0700 (PDT) Received: from ki1.chemie.fu-berlin.de (ki1.chemie.fu-berlin.de [160.45.24.21]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id AAA06642 for ; Wed, 20 Aug 1997 00:52:14 -0700 (PDT) Received: by ki1.chemie.fu-berlin.de (Smail3.1.28.1) from mail.hanse.de (193.174.9.9) with smtp id ; Wed, 20 Aug 97 09:52 MEST Received: from wavehh.UUCP by mail.hanse.de with UUCP for freebsd-current@freebsd.org id ; Wed, 20 Aug 97 09:52 MET DST Received: by wavehh.hanse.de (4.1/SMI-4.1) id AA00534; Wed, 20 Aug 97 09:41:23 +0200 Date: Wed, 20 Aug 97 09:41:23 +0200 From: cracauer@wavehh.hanse.de (Martin Cracauer) Message-Id: <9708200741.AA00534@wavehh.hanse.de> To: freebsd-current@freebsd.org Subject: Re: Multiple FreeBSD Systems on a Single Disk Newsgroups: hanse-ml.freebsd.current References: <199707290502.PAA18490@godzilla.zeta.org.au> Reply-To: cracauer@wavehh.hanse.de Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk For what its worth, I have a single SCSI disk to boot multiple FreeBSD versions, 3.0-current on this first slice, 2.2 on the second. I boot the first slice's FreeBSD as usual with sd(0,a)kernel You don't need a specially configured kernel for this version/partition. The second one is booted like this sd(0,s2a)/kernel-2.2 -r This FreeBSD version has a kernel configured with "root on sd0s2a" as "/kernel-2.2" on partition sd0s2a AND on the same name on sd0a with is the same as sd0s1a for me. The kernel is always loaded from sd0a/sd0s1a, but you need a copy of it in sd0s2a as well for userland programs that need to read to read the kernel image. You need "-r" to use a root partition that is not the one the booted kernel lives in. booteasy will ask you for a slice to boot from, it doesn't matter what you choose, since kernels are loaded from the first BSD slice in any case. Hope this helps, let me know if not. I missed the original posting and don't have the CC: line, could someone please forward this to whoever had the original problem? Thanks. Martin -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%% Martin_Cracauer@wavehh.hanse.de http://cracauer.cons.org %%%%%%%%%%% %% %% "Perhaps it IS a good day to Die! I say we ship it!" %% %% If you want me to read your usenet messages, don't crosspost to more %% than 2 groups (automatic filtering). And no signatures > 4 lines :-) %% %% Unwanted commercial email will be billed at $250. You agree by sending. From owner-freebsd-current Thu Aug 21 03:30:47 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA11407 for current-outgoing; Thu, 21 Aug 1997 03:30:47 -0700 (PDT) Received: from hydrogen.nike.efn.org (resnet.uoregon.edu [128.223.170.28]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA11402; Thu, 21 Aug 1997 03:30:37 -0700 (PDT) Received: (from jmg@localhost) by hydrogen.nike.efn.org (8.8.5/8.8.5) id DAA10754; Thu, 21 Aug 1997 03:30:52 -0700 (PDT) Message-ID: <19970821033052.29918@hydrogen.nike.efn.org> Date: Thu, 21 Aug 1997 03:30:52 -0700 From: John-Mark Gurney To: current@freebsd.org, darrenr@freebsd.org Subject: major problem with Copyright of contrib/ipfilter... Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 2.2.1-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk well.. I was about to fix a problem with contrib/ipfilter/man/Makefile, but I read the copyright message at the top: # (C)opyright 1993, 1994, 1995 by Darren Reed. # # This code may be freely distributed as long as it retains this notice # and is not changed in any way. The author accepts no responsibility # for the use of this software. I hate legaleese, don't you ? I'm sorry, but anything that we can't fix SHOULD NEVER be imported into the tree... I'm going to rewrite the makefile for now... but can we get all the copyright messages changed to the BSD copyright?? or at least allow us to make modifications?? heck, all I was about to do was to replace root and wheel with MANOWN and MANGRP, but this copyright doesn't allow it... ttyl.. -- John-Mark Gurney Modem/FAX: +1 541 683 6954 Cu Networking Live in Peace, destroy Micro$oft, support free software, run FreeBSD From owner-freebsd-current Thu Aug 21 05:04:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA16009 for current-outgoing; Thu, 21 Aug 1997 05:04:07 -0700 (PDT) Received: from mail11.digital.com (mail11.digital.com [192.208.46.10]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA16002 for ; Thu, 21 Aug 1997 05:04:02 -0700 (PDT) From: garyj@frt.dec.com Received: from cssmuc.frt.dec.com (cssmuc.frt.dec.com [16.186.96.161]) by mail11.digital.com (8.7.5/UNX 1.5/1.0/WV) with SMTP id HAA28626; Thu, 21 Aug 1997 07:54:00 -0400 (EDT) Received: from localhost by cssmuc.frt.dec.com; (5.65v3.2/1.1.8.2/14Nov95-0232PM) id AA25446; Thu, 21 Aug 1997 13:53:49 +0200 Message-Id: <9708211153.AA25446@cssmuc.frt.dec.com> X-Mailer: exmh version 1.6.4 10/10/95 To: John-Mark Gurney Cc: current@freebsd.org In-Reply-To: Message from John-Mark Gurney of Thu, 21 Aug 97 03:30:52 PDT. Reply-To: gjennejohn@frt.dec.com Subject: Re: major problem with Copyright of contrib/ipfilter... Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 21 Aug 97 13:53:49 +0200 X-Mts: smtp Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk gurney_j@efn.org writes: > well.. I was about to fix a problem with contrib/ipfilter/man/Makefile, > but I read the copyright message at the top: > # (C)opyright 1993, 1994, 1995 by Darren Reed. > # > # This code may be freely distributed as long as it retains this notice > # and is not changed in any way. The author accepts no responsibility > # for the use of this software. I hate legaleese, don't you ? > > I'm sorry, but anything that we can't fix SHOULD NEVER be imported into > the tree... I'm going to rewrite the makefile for now... but can we > get all the copyright messages changed to the BSD copyright?? or at > least allow us to make modifications?? > > heck, all I was about to do was to replace root and wheel with MANOWN > and MANGRP, but this copyright doesn't allow it... > don't change it in contrib, do it in /usr/src/usr/sbin/. I think that's where the ipfilter stuff lives. --- Gary Jennejohn (work) gjennejohn@frt.dec.com (home) garyj@muc.de (play) gj@freebsd.org From owner-freebsd-current Thu Aug 21 05:06:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA16225 for current-outgoing; Thu, 21 Aug 1997 05:06:31 -0700 (PDT) Received: from atena.eurocontrol.fr (atena.uneec.eurocontrol.fr [147.196.69.10]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id FAA16208 for ; Thu, 21 Aug 1997 05:06:25 -0700 (PDT) Received: by atena.eurocontrol.fr; (5.65v3.2/1.3/10May95) id AA27786; Thu, 21 Aug 1997 14:06:18 +0200 Received: (from roberto@localhost) by caerdonn.eurocontrol.fr (8.8.7.Beta2/caerdonn-1.3/nospam) id OAA25931; Thu, 21 Aug 1997 14:06:14 +0200 (CEST) Message-Id: <19970821140614.26212@caerdonn.eurocontrol.fr> Date: Thu, 21 Aug 1997 14:06:14 +0200 From: Ollivier Robert To: current@freebsd.org Subject: "make world" broken ? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.76 X-Operating-System: FreeBSD 3.0-CURRENT Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I've been a bit out of touch with current (3 weeks of holidays) but with today's current (CVSup-ed less than two hours ago) and a clean /usr/obj I get this: mkdep -f .depend -a -DYP -I/usr/obj/src/src/tmp/usr/include/rpcsvc -I/usr/obj/src/src/tmp/usr/include -I/usr/obj/src/src/tmp/usr/include klm_prot_xdr.c mount_xdr.c nfs_prot_xdr.c nlm_prot_xdr.c rex_xdr.c rnusers_xdr.c rquota_xdr.c rstat_xdr.c rwall_xdr.c sm_inter_xdr.c spray_xdr.c yppasswd_xdr.c ypxfrd_xdr.c ypupdate_prot_xdr.c /src/src/lib/librpcsvc/rnusers.c /src/src/lib/librpcsvc/rstat.c /src/src/lib/librpcsvc/rwall.c /src/src/lib/librpcsvc/yp_passwd.c /src/src/lib/librpcsvc/yp_update.c /src/src/lib/l ibrpcsvc/publickey.c /src/src/lib/librpcsvc/secretkey.c /src/src/lib/librpcsvc/xcrypt.c klm_prot_xdr.c:6: klm_prot.h: No such file or directory mount_xdr.c:6: mount.h: No such file or directory nfs_prot_xdr.c:6: nfs_prot.h: No such file or directory nlm_prot_xdr.c:6: nlm_prot.h: No such file or directory rex_xdr.c:6: rex.h: No such file or directory rnusers_xdr.c:6: rnusers.h: No such file or directory rquota_xdr.c:6: rquota.h: No such file or directory rstat_xdr.c:6: rstat.h: No such file or directory rwall_xdr.c:6: rwall.h: No such file or directory sm_inter_xdr.c:6: sm_inter.h: No such file or directory spray_xdr.c:6: spray.h: No such file or directory yppasswd_xdr.c:6: yppasswd.h: No such file or directory ypxfrd_xdr.c:6: ypxfrd.h: No such file or directory ypupdate_prot_xdr.c:6: ypupdate_prot.h: No such file or directory mkdep: compile failed *** Error code 1 What did I miss (apart from a few hundred messages in freebsd-current) ? -- Ollivier ROBERT -=- Eurocontrol EEC/TS -=- Ollivier.Robert@eurocontrol.fr FreeBSD caerdonn.eurocontrol.fr 3.0-CURRENT #5: Tue Apr 22 14:57:00 CEST 1997 roberto@caerdonn.eurocontrol.fr:/src/src/sys/compile/CAERDONN2 i386 From owner-freebsd-current Thu Aug 21 05:16:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA16789 for current-outgoing; Thu, 21 Aug 1997 05:16:23 -0700 (PDT) Received: from cabri.obs-besancon.fr (cabri.obs-besancon.fr [193.52.184.3]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id FAA16784 for ; Thu, 21 Aug 1997 05:16:21 -0700 (PDT) Received: by cabri.obs-besancon.fr (5.57/Ultrix3.0-C) id AA29183; Thu, 21 Aug 97 13:14:04 +0100 Date: Thu, 21 Aug 97 13:14:04 +0100 Message-Id: <9708211214.AA29183@cabri.obs-besancon.fr> From: Jean-Marc Zucconi To: freebsd-current@freebsd.org Subject: PANIC: lockmgr: called with null process X-Mailer: Emacs Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi, This is with a kernel from today. And unfortunately this is the only info I have (I have not enough space to get a crash dump). Jean-Marc _____________________________________________________________________________ Jean-Marc Zucconi Observatoire de Besancon F 25010 Besancon cedex PGP Key: finger jmz@cabri.obs-besancon.fr From owner-freebsd-current Thu Aug 21 05:56:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA18794 for current-outgoing; Thu, 21 Aug 1997 05:56:16 -0700 (PDT) Received: from hydrogen.nike.efn.org (resnet.uoregon.edu [128.223.170.28]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA18789 for ; Thu, 21 Aug 1997 05:56:12 -0700 (PDT) Received: (from jmg@localhost) by hydrogen.nike.efn.org (8.8.5/8.8.5) id FAA07543; Thu, 21 Aug 1997 05:56:05 -0700 (PDT) Message-ID: <19970821055604.38680@hydrogen.nike.efn.org> Date: Thu, 21 Aug 1997 05:56:04 -0700 From: John-Mark Gurney To: Ollivier Robert Cc: current@FreeBSD.ORG Subject: Re: "make world" broken ? References: <19970821140614.26212@caerdonn.eurocontrol.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: <19970821140614.26212@caerdonn.eurocontrol.fr>; from Ollivier Robert on Thu, Aug 21, 1997 at 02:06:14PM +0200 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 2.2.1-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Ollivier Robert scribbled this message on Aug 21: > I've been a bit out of touch with current (3 weeks of holidays) but with > today's current (CVSup-ed less than two hours ago) and a clean /usr/obj I > get this: [...] > What did I miss (apart from a few hundred messages in freebsd-current) ? do you have the new src/include/Makefile and src/include/rpcsvc/Makefile that I committed earlier today (about 2:30PDT)? -- John-Mark Gurney Modem/FAX: +1 541 683 6954 Cu Networking Live in Peace, destroy Micro$oft, support free software, run FreeBSD From owner-freebsd-current Thu Aug 21 06:06:13 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA19156 for current-outgoing; Thu, 21 Aug 1997 06:06:13 -0700 (PDT) Received: from atena.eurocontrol.fr (atena.uneec.eurocontrol.fr [147.196.69.10]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id GAA19146 for ; Thu, 21 Aug 1997 06:05:59 -0700 (PDT) Received: by atena.eurocontrol.fr; (5.65v3.2/1.3/10May95) id AA28431; Thu, 21 Aug 1997 15:05:54 +0200 Received: (from roberto@localhost) by caerdonn.eurocontrol.fr (8.8.7.Beta2/caerdonn-1.3/nospam) id PAA25387; Thu, 21 Aug 1997 15:05:53 +0200 (CEST) Message-Id: <19970821150553.61915@caerdonn.eurocontrol.fr> Date: Thu, 21 Aug 1997 15:05:53 +0200 From: Ollivier Robert To: John-Mark Gurney Cc: current@FreeBSD.ORG Subject: Re: "make world" broken ? References: <19970821140614.26212@caerdonn.eurocontrol.fr> <19970821055604.38680@hydrogen.nike.efn.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.76 In-Reply-To: <19970821055604.38680@hydrogen.nike.efn.org>; from John-Mark Gurney on Thu, Aug 21, 1997 at 05:56:04AM -0700 X-Operating-System: FreeBSD 3.0-CURRENT Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk According to John-Mark Gurney: > do you have the new src/include/Makefile and src/include/rpcsvc/Makefile > that I committed earlier today (about 2:30PDT)? This is what I have: Working revision: 1.61 Thu Aug 21 10:28:20 1997 Repository revision: 1.61 /home/ncvs/src/include/Makefile,v Working revision: 1.10 Mon Jun 9 12:07:51 1997 Repository revision: 1.10 /home/ncvs/src/lib/librpcsvc/Makefile,v So I guess the answer is no for the second file. I'll run another cvsup. -- Ollivier ROBERT -=- Eurocontrol EEC/TS -=- Ollivier.Robert@eurocontrol.fr FreeBSD caerdonn.eurocontrol.fr 3.0-CURRENT #5: Tue Apr 22 14:57:00 CEST 1997 roberto@caerdonn.eurocontrol.fr:/src/src/sys/compile/CAERDONN2 i386 From owner-freebsd-current Thu Aug 21 07:50:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id HAA24393 for current-outgoing; Thu, 21 Aug 1997 07:50:33 -0700 (PDT) Received: from sumatra.americantv.com (sumatra.americantv.com [207.170.17.37]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA24383; Thu, 21 Aug 1997 07:50:26 -0700 (PDT) Received: from right.PCS (right.PCS [148.105.10.31]) by sumatra.americantv.com (8.8.5/8.8.5) with ESMTP id KAA25505; Thu, 21 Aug 1997 10:09:02 -0500 (CDT) Received: (jlemon@localhost) by right.PCS (8.6.13/8.6.4) id JAA01022; Thu, 21 Aug 1997 09:51:23 -0500 Message-ID: <19970821095122.33711@right.PCS> Date: Thu, 21 Aug 1997 09:51:22 -0500 From: Jonathan Lemon To: John-Mark Gurney Cc: current@FreeBSD.ORG, darrenr@FreeBSD.ORG Subject: Re: major problem with Copyright of contrib/ipfilter... References: <19970821033052.29918@hydrogen.nike.efn.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.61.1 In-Reply-To: <19970821033052.29918@hydrogen.nike.efn.org>; from John-Mark Gurney on Aug 08, 1997 at 03:30:52AM -0700 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Aug 08, 1997 at 03:30:52AM -0700, John-Mark Gurney wrote: > well.. I was about to fix a problem with contrib/ipfilter/man/Makefile, > but I read the copyright message at the top: > # (C)opyright 1993, 1994, 1995 by Darren Reed. > # > # This code may be freely distributed as long as it retains this notice > # and is not changed in any way. The author accepts no responsibility > # for the use of this software. I hate legaleese, don't you ? > > I'm sorry, but anything that we can't fix SHOULD NEVER be imported into > the tree... I'm going to rewrite the makefile for now... but can we > get all the copyright messages changed to the BSD copyright?? or at > least allow us to make modifications?? I think the wording is just vague. The way I read it; you aren't allowed to change the _notice_ in any way, not the code. Perhaps Darren can clarify? -- Jonathan From owner-freebsd-current Thu Aug 21 08:55:26 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA29313 for current-outgoing; Thu, 21 Aug 1997 08:55:26 -0700 (PDT) Received: from sanjuan.cs.washington.edu (sanjuan.cs.washington.edu [128.95.8.118]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA29305; Thu, 21 Aug 1997 08:55:21 -0700 (PDT) Received: from localhost (ulbright@localhost) by sanjuan.cs.washington.edu (8.8.5+CS/7.2ws+) with SMTP id IAA31931; Thu, 21 Aug 1997 08:53:44 -0700 (PDT) Date: Thu, 21 Aug 1997 08:53:44 -0700 (PDT) From: Christopher Ulbright To: Terry Lambert cc: Alfred Perlstein , smp@csn.net, smp@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: SMP in a "production system" In-Reply-To: <199708202348.QAA21286@phaeton.artisoft.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Terry, > Depends on yhow you load it. If you load it via threading, it's not > much of a win, unless you use John's experimental stuff (this is hearsay, > but it was heard from John, so it's probably "on good authority" 8-)). How can I find out more about "John's experimental stuff"? -Chris Ulbright SPIN OS Group University of Wasington -------------------- From owner-freebsd-current Thu Aug 21 09:14:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA00699 for current-outgoing; Thu, 21 Aug 1997 09:14:12 -0700 (PDT) Received: from phaeton.artisoft.com (phaeton.Artisoft.COM [198.17.250.50]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id JAA00692; Thu, 21 Aug 1997 09:14:08 -0700 (PDT) Received: (from terry@localhost) by phaeton.artisoft.com (8.6.11/8.6.9) id JAA23501; Thu, 21 Aug 1997 09:05:52 -0700 From: Terry Lambert Message-Id: <199708211605.JAA23501@phaeton.artisoft.com> Subject: Re: SMP in a "production system" To: ulbright@cs.washington.edu (Christopher Ulbright) Date: Thu, 21 Aug 1997 09:05:51 -0700 (MST) Cc: terry@lambert.org, perlsta@sunyit.edu, smp@csn.net, smp@FreeBSD.ORG, current@FreeBSD.ORG In-Reply-To: from "Christopher Ulbright" at Aug 21, 97 08:53:44 am X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > Depends on yhow you load it. If you load it via threading, it's not > > much of a win, unless you use John's experimental stuff (this is > hearsay, > > but it was heard from John, so it's probably "on good authority" 8-)). > > How can I find out more about "John's experimental stuff"? Ask John to mail it to you, like he suggested in his posting of two days ago? dyson@greebsd.org. Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers. From owner-freebsd-current Thu Aug 21 09:34:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA02201 for current-outgoing; Thu, 21 Aug 1997 09:34:30 -0700 (PDT) Received: from easynet.fr (qmailr@mail.easynet.fr [195.114.64.207]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id JAA02084 for ; Thu, 21 Aug 1997 09:33:22 -0700 (PDT) Received: (qmail 3855 invoked from network); 21 Aug 1997 18:34:56 +0200 Received: from casimir.easynet.fr (195.114.64.17) by mail.easynet.fr with SMTP; 21 Aug 1997 18:34:56 +0200 Date: Thu, 21 Aug 1997 16:31:49 +0000 (GMT) From: David Ramahefason To: Christopher Ulbright cc: Terry Lambert , Alfred Perlstein , smp@csn.net, smp@FreeBSD.ORG, current@FreeBSD.ORG Subject: Need Help on installing SMP on SNAP 3.0 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hi, We've just bought a bi-pentium card: -ASUS P/I-P65UP5 -ASUS C-P55T2D The UP boot works fine... the compilation for an SMP kernel works fine... but when I try to boot it, it hangs just before the disk stuff... and nothing occurs... Did someone already tested these cards ??? Could someone tell me the good options to set up in the Kernel config.... thanks for answering /David Ramahefason Administrateur Systeme/Reseau/ /rama@easynet.fr Easynet France SA / /mobile: 0611647281 0144545333 / From owner-freebsd-current Thu Aug 21 10:21:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA05213 for current-outgoing; Thu, 21 Aug 1997 10:21:12 -0700 (PDT) Received: from dyson.iquest.net (dyson.iquest.net [198.70.144.127]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id KAA05202 for ; Thu, 21 Aug 1997 10:21:08 -0700 (PDT) Received: (from root@localhost) by dyson.iquest.net (8.8.6/8.8.5) id MAA01836; Thu, 21 Aug 1997 12:20:55 -0500 (EST) From: "John S. Dyson" Message-Id: <199708211720.MAA01836@dyson.iquest.net> Subject: Re: PANIC: lockmgr: called with null process In-Reply-To: <9708211214.AA29183@cabri.obs-besancon.fr> from Jean-Marc Zucconi at "Aug 21, 97 01:14:04 pm" To: jmz@cabri.obs-besancon.fr (Jean-Marc Zucconi) Date: Thu, 21 Aug 1997 12:20:55 -0500 (EST) Cc: freebsd-current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Hi, > > This is with a kernel from today. And unfortunately this is the only > info I have (I have not enough space to get a crash dump). > That message no longer exists in -current (I hope.) Re-sup, and try again!!! :-). John From owner-freebsd-current Thu Aug 21 11:54:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id LAA12262 for current-outgoing; Thu, 21 Aug 1997 11:54:10 -0700 (PDT) Received: from Symbion.srrc.usda.gov (glenn@[199.78.118.118]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id LAA12248 for ; Thu, 21 Aug 1997 11:53:59 -0700 (PDT) Received: from localhost (glenn@localhost) by Symbion.srrc.usda.gov (8.8.6/8.8.6) with SMTP id NAA00376 for ; Thu, 21 Aug 1997 13:51:55 -0500 X-Authentication-Warning: Symbion.srrc.usda.gov: glenn owned process doing -bs Date: Thu, 21 Aug 1997 13:51:55 -0500 (CDT) From: Glenn Johnson Reply-To: Glenn Johnson To: freebsd-current@freebsd.org Subject: NCR SCSI will not boot Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I can not boot my NCR SCSI equipped computer. I tried 3.0 snapshots of 8-7-97 and 8-15-97. In each case I get to the following point upon bootup: ncr0: rev 0x11 int a irq 11 on pci0.14.0 ncr0: minsync=25, maxsync=206, maxoffs=8, 128 dwords burst, large dma fifo It then hangs at this point. I then tried a 2.2.2 release floppy and it booted fine. So it is just a problem on -current, which I need for SMP. Here is some hardware info: Motherboard: Tyan Titan Pro AT, dual 200-MHz PPro processors installed. SCSI board: ? S1365 Hard disk: Quantum XP34300W; Rev - L912 CD-ROM: Toshiba CD-ROM XM-3701TA; Rev - 0236 Is there an option that can be added to the kernel config to work around this? Thanks. Glenn Johnson USDA-ARS-SRRC Phone: (504) 286-4252 FAX: (504) 286-4217 gjohnson@nola.srrc.usda.gov From owner-freebsd-current Thu Aug 21 12:27:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id MAA14105 for current-outgoing; Thu, 21 Aug 1997 12:27:06 -0700 (PDT) Received: from earth.mat.net (root@earth.mat.net [206.246.122.2]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id MAA14054 for ; Thu, 21 Aug 1997 12:26:30 -0700 (PDT) Received: from Journey2.mat.net (journey2.mat.net [206.246.122.116]) by earth.mat.net (8.6.12/8.6.12) with SMTP id PAA05440; Thu, 21 Aug 1997 15:25:26 -0400 Date: Thu, 21 Aug 1997 15:25:25 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@Journey2.mat.net Reply-To: Chuck Robey To: Glenn Johnson cc: freebsd-current@FreeBSD.ORG Subject: Re: NCR SCSI will not boot In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Thu, 21 Aug 1997, Glenn Johnson wrote: > I can not boot my NCR SCSI equipped computer. I tried 3.0 snapshots of > 8-7-97 and 8-15-97. In each case I get to the following point upon bootup: > > ncr0: rev 0x11 int a irq 11 on pci0.14.0 > ncr0: minsync=25, maxsync=206, maxoffs=8, 128 dwords burst, large dma fifo > > It then hangs at this point. I then tried a 2.2.2 release floppy and it > booted fine. So it is just a problem on -current, which I need for > SMP. Here is some hardware info: > > Motherboard: Tyan Titan Pro AT, dual 200-MHz PPro processors installed. > SCSI board: ? S1365 > Hard disk: Quantum XP34300W; Rev - L912 > CD-ROM: Toshiba CD-ROM XM-3701TA; Rev - 0236 > > Is there an option that can be added to the kernel config to work around > this? Thanks. I had the same experience, and worked with Stefan to figure it out. He told me to take the flags in ncr.c line 3329 (the ones defined for the 825A) and remove them one by one to see what the trouble was. Many builds and reboots later, I told him it was the FE_RAM flag. He said that was highly unlikely, and to see if I could swap out the 825a for another one. I did, and he was right, swapping it out fixed it. I think I may be close to you ... if we can work it out so I'm out of service a real minimum amount of time, I'd swap with you.... see, I'm doing some very heavy development, and wouldn't think of it if we weren't in driving distance. You see my address/phone below. Let me know if you want to do this. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-current Thu Aug 21 14:10:14 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA19626 for current-outgoing; Thu, 21 Aug 1997 14:10:14 -0700 (PDT) Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA19605 for ; Thu, 21 Aug 1997 14:10:01 -0700 (PDT) Received: (from uucp@localhost) by frmug.org (8.8.5/8.8.5/frmug-2.0) with UUCP id XAA26514 for current@FreeBSD.org; Thu, 21 Aug 1997 23:09:55 +0200 (CEST) Received: (from charnier@localhost) by xp11.frmug.org (8.8.7/8.8.7/xp11-uucp-1.1) id XAA05054; Thu, 21 Aug 1997 23:00:09 +0200 (CEST) Date: Thu, 21 Aug 1997 23:00:09 +0200 (CEST) Message-Id: <199708212100.XAA05054@xp11.frmug.org> From: Philippe Charnier MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: current@FreeBSD.org Subject: Can not run rc.shutdown ! X-Mailer: VM 6.31 under Emacs 19.34.1 Reply-To: charnier@xp11.frmug.org Sender: owner-freebsd-current@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Hello, How to run rc.shutdown? It doesn't work when running reboot nor shutdown, it is only run when a SIGTERM is send to init (see death()). When running reboot, a SIGTSTP is sent to init, then a SIGTERM is sent to my processes including innd (argh!). -- ------ ------ Philippe Charnier charnier@lirmm.fr (smtp) charnier@xp11.frmug.org (uucp) ``a PC not running FreeBSD is like a venusian with no tentacles'' ------------------------------------------------------------------------ From owner-freebsd-current Thu Aug 21 14:24:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA20247 for current-outgoing; Thu, 21 Aug 1997 14:24:03 -0700 (PDT) Received: from egyptian.microxp.com (randy@egyptian.microxp.com [207.227.65.14]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA20233 for ; Thu, 21 Aug 1997 14:23:59 -0700 (PDT) From: randy@egyptian.microxp.com Received: from localhost (randy@localhost) by egyptian.microxp.com (8.8.5/8.8.5) with SMTP id QAA00458 for ; Thu, 21 Aug 1997 16:27:39 -0500 (CDT) Date: Thu, 21 Aug 1997 16:27:39 -0500 (CDT) To: current@freebsd.org Subject: abnormal interrupt msg, deX driver Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Greetings, Since Monday, I've been getting the message: de0: abnormal interrupt transmit underflow The interface then stops working. I can bring it back up with ifconfig but it won't stay up for long. It's in a machine that dual-boots -current and NT 4.0. The NT installation seems to behave normally with the interface. Is there anything that would have broken the driver in the last couple of weeks? The card I'm using is a D-Link 530 (pci 21041 card) and I've tried moving the ints around forcing it to use different ones. The only other cards I have on hand right now are NE-2000 ISA clones so I can't really test another DEC based unit. Just wondering Thanks! Randy From owner-freebsd-current Thu Aug 21 14:32:01 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA20599 for current-outgoing; Thu, 21 Aug 1997 14:32:01 -0700 (PDT) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.fr [193.56.58.253]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA20583 for ; Thu, 21 Aug 1997 14:31:56 -0700 (PDT) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.fr [193.56.58.33]) by mexico.brainstorm.eu.org (8.8.4/8.8.4) with ESMTP id XAA28745 for ; Thu, 21 Aug 1997 23:31:34 +0200 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.8.6/brasil-1.2) with UUCP id XAA20961 for freebsd-current@FreeBSD.ORG; Thu, 21 Aug 1997 23:30:58 +0200 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.6/keltia-uucp-2.9) id TAA15434; Thu, 21 Aug 1997 19:35:06 +0200 (CEST) Message-ID: <19970821193506.57823@keltia.freenix.fr> Date: Thu, 21 Aug 1997 19:35:06 +0200 From: Ollivier Robert To: freebsd-current@FreeBSD.ORG Subject: Re: make -DNOCLEAN world References: <199708171247.WAA16866@godzilla.zeta.org.au> <199708171455.SAA01403@tejblum.dnttm.rssi.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.76 In-Reply-To: <199708171455.SAA01403@tejblum.dnttm.rssi.ru>; from Dmitrij Tejblum on Sun, Aug 17, 1997 at 06:55:02PM +0400 X-Operating-System: FreeBSD 3.0-CURRENT ctm#3481 AMD-K6 MMX @ 208 MHz Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk According to Dmitrij Tejblum: > -C Copy the file, as if the -c option is specified, except if the > target file already exists and the files are the same, then don't > change the modification time of the target. The way I read it (and the way it works) is that if the file previously exist (from a previous make world) but hasn't been changed, then you'll keep the same time as before, and the dependancies will work. I have "INSTALL= install -C" into /etc/make.conf... -- Ollivier ROBERT -=- FreeBSD: There are no limits -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #23: Sun Jul 20 18:10:34 CEST 1997 From owner-freebsd-current Thu Aug 21 16:01:37 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA25598 for current-outgoing; Thu, 21 Aug 1997 16:01:37 -0700 (PDT) Received: from plum.cyber.com.au (plum.cyber.com.au [203.7.155.24]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id QAA25584; Thu, 21 Aug 1997 16:01:29 -0700 (PDT) Received: (from darrenr@localhost) by plum.cyber.com.au (8.6.12/8.6.6) id JAA08856; Fri, 22 Aug 1997 09:01:07 +1000 From: Darren Reed Message-Id: <199708212301.JAA08856@plum.cyber.com.au> Subject: Re: major problem with Copyright of contrib/ipfilter... To: jlemon@americantv.com (Jonathan Lemon) Date: Fri, 22 Aug 1997 09:01:07 +1000 (EST) Cc: gurney_j@resnet.uoregon.edu, current@FreeBSD.ORG, darrenr@FreeBSD.ORG In-Reply-To: <19970821095122.33711@right.PCS> from "Jonathan Lemon" at Aug 21, 97 09:51:22 am X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk In some mail I received from Jonathan Lemon, sie wrote > > On Aug 08, 1997 at 03:30:52AM -0700, John-Mark Gurney wrote: > > well.. I was about to fix a problem with contrib/ipfilter/man/Makefile, > > but I read the copyright message at the top: > > # (C)opyright 1993, 1994, 1995 by Darren Reed. > > # > > # This code may be freely distributed as long as it retains this notice > > # and is not changed in any way. The author accepts no responsibility > > # for the use of this software. I hate legaleese, don't you ? > > > > I'm sorry, but anything that we can't fix SHOULD NEVER be imported into > > the tree... I'm going to rewrite the makefile for now... but can we > > get all the copyright messages changed to the BSD copyright?? or at > > least allow us to make modifications?? > > I think the wording is just vague. The way I read it; you aren't > allowed to change the _notice_ in any way, not the code. Perhaps > Darren can clarify? There are inconsistancies which I was unaware of until recently (I rarely pay any heed to what others put there for copyrgiht, never mind my own!). If you go back and look at the original License file for the package, it doesn't say the same as above. I fixed a large bunch of those copyright things in the latest beta for IP Filter and obviously have more to attend to. I assume this was the reason John replaced the Makefile (re. CVS commit). Darren From owner-freebsd-current Thu Aug 21 17:10:48 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA02516 for current-outgoing; Thu, 21 Aug 1997 17:10:48 -0700 (PDT) Received: from hydrogen.nike.efn.org (resnet.uoregon.edu [128.223.170.28]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA02510 for ; Thu, 21 Aug 1997 17:10:44 -0700 (PDT) Received: (from jmg@localhost) by hydrogen.nike.efn.org (8.8.5/8.8.5) id RAA03913; Thu, 21 Aug 1997 17:10:43 -0700 (PDT) Message-ID: <19970821171042.20733@hydrogen.nike.efn.org> Date: Thu, 21 Aug 1997 17:10:42 -0700 From: John-Mark Gurney To: Darren Reed Cc: Jonathan Lemon , current@FreeBSD.ORG Subject: Re: major problem with Copyright of contrib/ipfilter... References: <19970821095122.33711@right.PCS> <199708212301.JAA08856@plum.cyber.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: <199708212301.JAA08856@plum.cyber.com.au>; from Darren Reed on Fri, Aug 22, 1997 at 09:01:07AM +1000 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 2.2.1-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Darren Reed scribbled this message on Aug 22: > In some mail I received from Jonathan Lemon, sie wrote > > > > On Aug 08, 1997 at 03:30:52AM -0700, John-Mark Gurney wrote: > > > well.. I was about to fix a problem with contrib/ipfilter/man/Makefile, > > > but I read the copyright message at the top: > > > # (C)opyright 1993, 1994, 1995 by Darren Reed. > > > # > > > # This code may be freely distributed as long as it retains this notice > > > # and is not changed in any way. The author accepts no responsibility > > > # for the use of this software. I hate legaleese, don't you ? > > > > > > I'm sorry, but anything that we can't fix SHOULD NEVER be imported into > > > the tree... I'm going to rewrite the makefile for now... but can we > > > get all the copyright messages changed to the BSD copyright?? or at > > > least allow us to make modifications?? > > > > I think the wording is just vague. The way I read it; you aren't > > allowed to change the _notice_ in any way, not the code. Perhaps > > Darren can clarify? > > There are inconsistancies which I was unaware of until recently (I rarely > pay any heed to what others put there for copyrgiht, never mind my own!). > If you go back and look at the original License file for the package, it > doesn't say the same as above. yes... I know, but that doesn't mean that all code is subjected to the license of the package.. the license attached to the file is the final word on what goes... you are the author, you get to decide exactly what happens with the code (and some parts of a packge may want to have a more restricted license)... > I fixed a large bunch of those copyright things in the latest beta for > IP Filter and obviously have more to attend to. > > I assume this was the reason John replaced the Makefile (re. CVS commit). yes... but that wasn't the proper approch (as Peter Wemm pointed out to me)... where does the build of the ipfilter take place?? or are you forced to build the utils manually if you want to use 'em?? thanks for the info though.. ttyl. -- John-Mark Gurney Modem/FAX: +1 541 683 6954 Cu Networking Live in Peace, destroy Micro$oft, support free software, run FreeBSD From owner-freebsd-current Thu Aug 21 22:29:22 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id WAA16481 for current-outgoing; Thu, 21 Aug 1997 22:29:22 -0700 (PDT) Received: from watcher.isl.net (ppp18-uunet.infopet.com [208.210.103.20]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA16475 for ; Thu, 21 Aug 1997 22:29:19 -0700 (PDT) Received: (from ortmann@localhost) by watcher.isl.net (8.8.7/8.8.5) id AAA02516 for current@freebsd.org; Fri, 22 Aug 1997 00:25:45 -0500 (CDT) From: Daniel Ortmann Message-Id: <199708220525.AAA02516@watcher.isl.net> Subject: sgml doc format To: current@freebsd.org Date: Fri, 22 Aug 1997 00:25:42 -0500 (CDT) X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Some of our documents are generated by sgmlfmt via bsd.sgml.mk, but where is in the source tree? I have the following older copies under /usr/bin: -r-xr-xr-x 1 bin bin 135168 Jul 20 04:23 /usr/bin/sgmls* -r-xr-xr-x 1 bin bin 19166 Jul 20 04:23 /usr/bin/sgmlfmt* -r-xr-xr-x 1 bin bin 20480 Sep 8 1996 /usr/bin/sgmlsasp* ... but I was surprised that I couldn't find it under the source tree. Finally I found sgmlformat under the ports tree. What is the plan for sgmlfmt? -- Daniel Ortmann 507.288.7732 (h) ortmann@isl.net 2414 30 av NW, #D 507.253.6795 (w) ortmann@vnet.ibm.com Rochester, MN 55901 "PERL: The Swiss Army Chainsaw" From owner-freebsd-current Thu Aug 21 23:00:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA17859 for current-outgoing; Thu, 21 Aug 1997 23:00:23 -0700 (PDT) Received: from mantar.slip.netcom.com (mantar.slip.netcom.com [192.187.167.134]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA17853 for ; Thu, 21 Aug 1997 23:00:20 -0700 (PDT) Received: from localhost (root@localhost) by mantar.slip.netcom.com (8.8.7/8.8.7) with SMTP id XAA00337 for ; Thu, 21 Aug 1997 23:00:15 -0700 (PDT) Date: Thu, 21 Aug 1997 23:00:15 -0700 (PDT) From: Manfred Antar To: current@freebsd.org Subject: Can't start X with new kernel Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I can not start up an xsession with current kernel. xdm starts alright but when i login the login screen resets itself after a few seconds.if i disable xdm and run xinit no problem.I'm using the newest release of XFree86 (3.3.1). A kernel built Monday of this week works fine. -r-xr-xr-x 1 root wheel 1358774 Aug 21 19:55 kernel-from-monday O.K. -r-xr-xr-x 1 root wheel 1354328 Aug 21 22:40 kernel-from-today N.G. i get these errors in .xsession-errors: Xlib: connection to ":0.0" refused by server^M Xlib: Client is not authorized to connect to Server^M xrdb: Can't open display ':0' Xlib: connection to ":0.0" refused by server^M Xlib: Client is not authorized to connect to Server^M xrdb: Can't open display ':0' Xlib: connection to ":0.0" refused by server^M Xlib: Client is not authorized to connect to Server^M xset: unable to open display ":0" Xlib: connection to ":0.0" refused by server^M Xlib: Client is not authorized to connect to Server^M Fvwm-95: in function main: <> can't open display :0 Xlib: connection to ":0.0" refused by server^M Xlib: Client is not authorized to connect to Server^M Error: Can't open display: :0 Xlib: connection to ":0.0" refused by server^M Xlib: Client is not authorized to connect to Server^M Error: Can't open display: :0 I have tried different window managers (olvwm) no difference. Any help appreciated. Thanks Manfred ============================== || mantar@netcom.com || || Ph. (415) 647-4843 || ============================== From owner-freebsd-current Fri Aug 22 01:46:47 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id BAA26245 for current-outgoing; Fri, 22 Aug 1997 01:46:47 -0700 (PDT) Received: from sendero-ppp.i-connect.net (sendero-ppp.i-Connect.Net [206.190.143.100]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id BAA26240 for ; Fri, 22 Aug 1997 01:46:44 -0700 (PDT) Received: (qmail 7287 invoked by uid 1000); 22 Aug 1997 08:47:02 -0000 Message-ID: X-Mailer: XFMail 1.2-alpha [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-8 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Fri, 22 Aug 1997 01:47:02 -0700 (PDT) Organization: Atlas Telecom From: Simon Shapiro To: freebsd-current@freebsd.org Subject: Kernel compilation on Current as of tonight Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Ignore and forgive if already known... cc -c -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -nostdinc -I- -I. -I../.. -I../../../include -DEXT2FS -DFAILSAFE -DDPT_INTR_CHECK_SOFTC -DSAFETY -DUMAPFS_DIAGNOSTIC -DKERNFS_DIAGNOSTIC -DNULLFS_DIAGNOSTIC -DDEVFS -DNFS -DFFS -DTCPDEBUG -DIPDIVERT -DINET -DCOMPAT_43 -DKERNEL -include opt_global.h ../../netinet/ip_divert.c ../../netinet/ip_divert.c: In function `div_bind': ../../netinet/ip_divert.c:327: warning: passing arg 2 of `in_pcbbind' from incompatible pointer type ../../netinet/ip_divert.c: At top level: ../../netinet/ip_divert.c:356: warning: initialization from incompatible pointer type ../../netinet/ip_divert.c:359: warning: initialization from incompatible pointer type cc -c -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -nostdinc -I- -I. -I../.. -I../../../include -DEXT2FS -DFAILSAFE -DDPT_INTR_CHECK_SOFTC -DSAFETY -DUMAPFS_DIAGNOSTIC -DKERNFS_DIAGNOSTIC -DNULLFS_DIAGNOSTIC -DDEVFS -DNFS -DFFS -DTCPDEBUG -DIPDIVERT -DINET -DCOMPAT_43 -DKERNEL -include opt_global.h ../../pci/pci_compat.c ../../pci/pci_compat.c: In function `pci_map_int': ../../pci/pci_compat.c:172: warning: passing arg 3 of `intr_create' from incompatible pointer type cc -c -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -nostdinc -I- -I. -I../.. -I../../../include -DEXT2FS -DFAILSAFE -DDPT_INTR_CHECK_SOFTC -DSAFETY -DUMAPFS_DIAGNOSTIC -DKERNFS_DIAGNOSTIC -DNULLFS_DIAGNOSTIC -DDEVFS -DNFS -DFFS -DTCPDEBUG -DIPDIVERT -DINET -DCOMPAT_43 -DKERNEL -include opt_global.h ../../i386/i386/userconfig.c ../../i386/i386/userconfig.c: In function `introfunc': ../../i386/i386/userconfig.c:2902: warning: control reaches end of non-void function cc -c -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -nostdinc -I- -I. -I../.. -I../../../include -DEXT2FS -DFAILSAFE -DDPT_INTR_CHECK_SOFTC -DSAFETY -DUMAPFS_DIAGNOSTIC -DKERNFS_DIAGNOSTIC -DNULLFS_DIAGNOSTIC -DDEVFS -DNFS -DFFS -DTCPDEBUG -DIPDIVERT -DINET -DCOMPAT_43 -DKERNEL -include opt_global.h ../../i386/isa/sound/soundcard.c ../../i386/isa/sound/soundcard.c:101: warning: no previous prototype for `adintr' The rest are mine :-) From owner-freebsd-current Fri Aug 22 01:48:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id BAA26328 for current-outgoing; Fri, 22 Aug 1997 01:48:10 -0700 (PDT) Received: from critter.dk.tfs.com (critter.phk.freebsd.dk [195.8.129.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id BAA26321 for ; Fri, 22 Aug 1997 01:48:07 -0700 (PDT) Received: from critter.dk.tfs.com (localhost [127.0.0.1]) by critter.dk.tfs.com (8.8.7/8.8.5) with ESMTP id KAA01558 for ; Fri, 22 Aug 1997 10:47:44 +0200 (CEST) To: current@freebsd.org Subject: LINT compile failure... From: Poul-Henning Kamp Date: Fri, 22 Aug 1997 10:47:43 +0200 Message-ID: <1556.872239663@critter.dk.tfs.com> Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk cc -c -a -g -pipe -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -nostdinc -I- -I. -I../.. -I../../../include -DSPX_HACK -DSIMPLELOCK_DEBUG -DSI_DEBUG -DSCSI_2_DEF -DNPX_DEBUG -DLOCKF_DEBUG -DEXT2FS -DDEBUG -DCLUSTERDEBUG -DBOOTP_COMPAT -DBOOTP_NFSV3 -DBOOTP_NFSROOT -DBOOTP -DPOWERFAIL_NMI -DNATM -DLINT_PCCARD_HACK -DFDSEEKWAIT=16 -DNSWAPDEV=20 -DMFS_AUTOLOAD -DMFS_ROOT=10 -DDEVFS -DMSDOSFS -DMFS -DLFS -DNQNFS -DNFS -DFFS -DTCPDEBUG -DIPDIVERT -DTCP_COMPAT_42 -DNETATALK -DIPTUNNEL -DIPXIP -DIPX -DINET -DDIAGNOSTIC -DMD5 -DCOMPAT_43 -DFAILSAFE -DKERNEL -include opt_global.h ../../dev/ppbus/nlpt.c ../../dev/ppbus/nlpt.c: In function `nlptattach': ../../dev/ppbus/nlpt.c:370: `sc' undeclared (first use this function) ../../dev/ppbus/nlpt.c:370: (Each undeclared identifier is reported only once ../../dev/ppbus/nlpt.c:370: for each function it appears in.) ../../dev/ppbus/nlpt.c:371: `unit' undeclared (first use this function) *** Error code 1 (continuing) `kernel' not remade because of errors. -- Poul-Henning Kamp | phk@FreeBSD.ORG FreeBSD Core-team. http://www.freebsd.org/~phk | phk@login.dknet.dk Private mailbox. whois: [PHK] | phk@tfs.com TRW Financial Systems, Inc. Future will arrive by its own means, progress not so. From owner-freebsd-current Fri Aug 22 02:31:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA28041 for current-outgoing; Fri, 22 Aug 1997 02:31:58 -0700 (PDT) Received: from helios.dnttm.ru (root@dnttm.wave.ras.ru [194.85.104.197]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA28033 for ; Fri, 22 Aug 1997 02:31:48 -0700 (PDT) Received: (from uucp@localhost) by helios.dnttm.ru (8.8.5/8.8.5/IP-3) with UUCP id NAA13513; Fri, 22 Aug 1997 13:28:58 +0400 Received: from tejblum.dnttm.rssi.ru (localhost [127.0.0.1]) by tejblum.dnttm.rssi.ru (8.8.7/8.8.5) with ESMTP id NAA00692; Fri, 22 Aug 1997 13:31:57 +0400 (MSD) Message-Id: <199708220931.NAA00692@tejblum.dnttm.rssi.ru> X-Mailer: exmh version 2.0gamma 1/27/96 To: Manfred Antar Cc: freebsd-current@FreeBSD.ORG Subject: Re: Can't start X with new kernel In-reply-to: Your message of "Thu, 21 Aug 1997 23:00:15 PDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 22 Aug 1997 13:31:56 +0400 From: Dmitrij Tejblum Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > I can not start up an xsession with current kernel. > xdm starts alright but when i login the login screen resets itself after > a few seconds.if i disable xdm and run xinit no problem.I'm using the > newest release of XFree86 (3.3.1). A kernel built Monday of this week > works fine. > > -r-xr-xr-x 1 root wheel 1358774 Aug 21 19:55 kernel-from-monday O.K. > -r-xr-xr-x 1 root wheel 1354328 Aug 21 22:40 kernel-from-today N.G. > > i get these errors in .xsession-errors: > > Xlib: connection to ":0.0" refused by server^M > Xlib: Client is not authorized to connect to Server^M [...] Same here. It is because xdm failed to write file .Xauthority. It always have zero length with new kernel. I am still using XFree86 3.2. Dima From owner-freebsd-current Fri Aug 22 02:47:52 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA28497 for current-outgoing; Fri, 22 Aug 1997 02:47:52 -0700 (PDT) Received: from word.smith.net.au (word.smith.net.au [202.0.75.3]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA28491 for ; Fri, 22 Aug 1997 02:47:41 -0700 (PDT) Received: from word.smith.net.au (localhost.smith.net.au [127.0.0.1]) by word.smith.net.au (8.8.7/8.8.5) with ESMTP id TAA01034; Fri, 22 Aug 1997 19:14:59 +0930 (CST) Message-Id: <199708220944.TAA01034@word.smith.net.au> X-Mailer: exmh version 2.0zeta 7/24/97 To: Poul-Henning Kamp cc: current@FreeBSD.ORG Subject: Re: LINT compile failure... In-reply-to: Your message of "Fri, 22 Aug 1997 10:47:43 +0200." <1556.872239663@critter.dk.tfs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 22 Aug 1997 19:14:59 +0930 From: Mike Smith Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > .../../dev/ppbus/nlpt.c:370: `sc' undeclared (first use this function) > .../../dev/ppbus/nlpt.c:370: (Each undeclared identifier is reported only once > .../../dev/ppbus/nlpt.c:370: for each function it appears in.) > .../../dev/ppbus/nlpt.c:371: `unit' undeclared (first use this function) > *** Error code 1 (continuing) > `kernel' not remade because of errors. The CVS repo is undergoing open-heart bypass surgery. Here's a diff; if you don't hit it, I will tomorrow : --- nlpt.c.old Fri Aug 22 19:12:58 1997 +++ nlpt.c Fri Aug 22 19:13:32 1997 @@ -367,10 +367,10 @@ #ifdef DEVFS /* XXX what to do about the flags in the minor number? */ - sc->devfs_token = devfs_add_devswf(&nlpt_cdevsw, + lpt->devfs_token = devfs_add_devswf(&nlpt_cdevsw, unit, DV_CHR, UID_ROOT, GID_WHEEL, 0600, "nlpt%d", unit); - sc->devfs_token_ctl = devfs_add_devswf(&nlpt_cdevsw, + lpt->devfs_token_ctl = devfs_add_devswf(&nlpt_cdevsw, unit | LP_BYPASS, DV_CHR, UID_ROOT, GID_WHEEL, 0600, "lpctl%d", unit); #endif mike From owner-freebsd-current Fri Aug 22 04:13:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id EAA02418 for current-outgoing; Fri, 22 Aug 1997 04:13:23 -0700 (PDT) Received: from lsd.relcom.eu.net (ache@lsd.relcom.eu.net [193.124.23.23]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA02409 for ; Fri, 22 Aug 1997 04:12:58 -0700 (PDT) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.7/8.8.7) id PAA14353; Fri, 22 Aug 1997 15:12:45 +0400 (MSD) Date: Fri, 22 Aug 1997 15:12:44 +0400 (MSD) From: =?KOI8-R?B?4c7E0sXKIP7F0s7P1w==?= X-Sender: ache@lsd.relcom.eu.net To: FreeBSD-current Subject: I don't see promised /var/forward on freefall, please fix Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Subj. says all -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ From owner-freebsd-current Fri Aug 22 05:28:15 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA05521 for current-outgoing; Fri, 22 Aug 1997 05:28:15 -0700 (PDT) Received: from friley02.res.iastate.edu (friley02.res.iastate.edu [129.186.189.2]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA05516 for ; Fri, 22 Aug 1997 05:28:13 -0700 (PDT) Received: from friley02.res.iastate.edu (loopback [127.0.0.1]) by friley02.res.iastate.edu (8.8.7/8.8.5) with ESMTP id HAA00559 for ; Fri, 22 Aug 1997 07:28:12 -0500 (CDT) Message-Id: <199708221228.HAA00559@friley02.res.iastate.edu> Reply-To: mystify@iastate.edu To: current@freebsd.org Subject: Zero-length mail messages Date: Fri, 22 Aug 1997 07:28:12 -0500 From: Patrick Hartling Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As of rebuilding last night (cvsup at 11 p.m. CDT), I am having a very troubling problem. xdm does not work as discussed in a couple of previous messages, but the real problem is that all incoming mail is zero-length. :\ I am using MH mail and slocal to automatically sort all messages that arrive. I would greatly appreciate any help I can get on this problem. There may be other things like this arising that I haven't noticed yet, but this is the most obvious problem so far. And of course since I can't read any new mail, someone may have already pointed out a similar problem. Please direct responses to mystify@iastate.edu since I won't be able to read it otherwise. Thanks. -Patrick Patrick L. Hartling | System Administrator mystify@friley02.res.iastate.edu | GIS Facility - 218 Durham Center http://www.public.iastate.edu/~oz | (515)294-2279 http://www.cs.iastate.edu/~ph | http://www.gis.iastate.edu From owner-freebsd-current Fri Aug 22 05:37:45 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA06003 for current-outgoing; Fri, 22 Aug 1997 05:37:45 -0700 (PDT) Received: from hydrogen.nike.efn.org (resnet.uoregon.edu [128.223.170.28]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA05997; Fri, 22 Aug 1997 05:37:40 -0700 (PDT) Received: (from jmg@localhost) by hydrogen.nike.efn.org (8.8.5/8.8.5) id FAA02845; Fri, 22 Aug 1997 05:37:38 -0700 (PDT) Message-ID: <19970822053737.64659@hydrogen.nike.efn.org> Date: Fri, 22 Aug 1997 05:37:37 -0700 From: John-Mark Gurney To: current@freebsd.org Cc: Bruce Evans Subject: does buildworld really use old libs?? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 2.2.1-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk well.. I was watching buildworld build.. and I noticed something: cc -nostdinc -O2 -pipe -I/usr/obj/a/home/johng/FreeBSD-checkout/current/src/tm p/usr/include -o rain rain.o -ltermcap -lcompat acording to this line, we are still using the old libraries... shouldn't we add -nostdlib -L${.OBJDIR}/tmp/usr/lib or something similar so that we actually link against the libs that are part of the install set?? -- John-Mark Gurney Modem/FAX: +1 541 683 6954 Cu Networking Live in Peace, destroy Micro$oft, support free software, run FreeBSD From owner-freebsd-current Fri Aug 22 06:03:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA07220 for current-outgoing; Fri, 22 Aug 1997 06:03:34 -0700 (PDT) Received: from critter.dk.tfs.com (critter.phk.freebsd.dk [195.8.129.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA07194 for ; Fri, 22 Aug 1997 06:03:28 -0700 (PDT) Received: from critter.dk.tfs.com (localhost [127.0.0.1]) by critter.dk.tfs.com (8.8.7/8.8.5) with ESMTP id PAA02141; Fri, 22 Aug 1997 15:02:53 +0200 (CEST) To: mystify@iastate.edu cc: current@FreeBSD.ORG Subject: Re: Zero-length mail messages In-reply-to: Your message of "Fri, 22 Aug 1997 07:28:12 CDT." <199708221228.HAA00559@friley02.res.iastate.edu> Date: Fri, 22 Aug 1997 15:02:53 +0200 Message-ID: <2139.872254973@critter.dk.tfs.com> From: Poul-Henning Kamp Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk try backing out John Dysons changes to the kernel, they are the most likely culprit... Poul-Henning In message <199708221228.HAA00559@friley02.res.iastate.edu>, Patrick Hartling w rites: >As of rebuilding last night (cvsup at 11 p.m. CDT), I am having a very >troubling problem. xdm does not work as discussed in a couple of previous >messages, but the real problem is that all incoming mail is zero-length. :\ >I am using MH mail and slocal to automatically sort all messages that >arrive. I would greatly appreciate any help I can get on this problem. >There may be other things like this arising that I haven't noticed yet, but >this is the most obvious problem so far. And of course since I can't read >any new mail, someone may have already pointed out a similar problem. > >Please direct responses to mystify@iastate.edu since I won't be able to >read it otherwise. Thanks. > > -Patrick > > >Patrick L. Hartling | System Administrator >mystify@friley02.res.iastate.edu | GIS Facility - 218 Durham Center >http://www.public.iastate.edu/~oz | (515)294-2279 >http://www.cs.iastate.edu/~ph | http://www.gis.iastate.edu -- Poul-Henning Kamp | phk@FreeBSD.ORG FreeBSD Core-team. http://www.freebsd.org/~phk | phk@login.dknet.dk Private mailbox. whois: [PHK] | phk@tfs.com TRW Financial Systems, Inc. Power and ignorance is a disgusting cocktail. From owner-freebsd-current Fri Aug 22 06:04:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA07284 for current-outgoing; Fri, 22 Aug 1997 06:04:04 -0700 (PDT) Received: from critter.dk.tfs.com (critter.phk.freebsd.dk [195.8.129.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA07194 for ; Fri, 22 Aug 1997 06:03:28 -0700 (PDT) Received: from critter.dk.tfs.com (localhost [127.0.0.1]) by critter.dk.tfs.com (8.8.7/8.8.5) with ESMTP id PAA02141; Fri, 22 Aug 1997 15:02:53 +0200 (CEST) To: mystify@iastate.edu cc: current@FreeBSD.ORG Subject: Re: Zero-length mail messages In-reply-to: Your message of "Fri, 22 Aug 1997 07:28:12 CDT." <199708221228.HAA00559@friley02.res.iastate.edu> Date: Fri, 22 Aug 1997 15:02:53 +0200 Message-ID: <2139.872254973@critter.dk.tfs.com> From: Poul-Henning Kamp Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk try backing out John Dysons changes to the kernel, they are the most likely culprit... Poul-Henning In message <199708221228.HAA00559@friley02.res.iastate.edu>, Patrick Hartling w rites: >As of rebuilding last night (cvsup at 11 p.m. CDT), I am having a very >troubling problem. xdm does not work as discussed in a couple of previous >messages, but the real problem is that all incoming mail is zero-length. :\ >I am using MH mail and slocal to automatically sort all messages that >arrive. I would greatly appreciate any help I can get on this problem. >There may be other things like this arising that I haven't noticed yet, but >this is the most obvious problem so far. And of course since I can't read >any new mail, someone may have already pointed out a similar problem. > >Please direct responses to mystify@iastate.edu since I won't be able to >read it otherwise. Thanks. > > -Patrick > > >Patrick L. Hartling | System Administrator >mystify@friley02.res.iastate.edu | GIS Facility - 218 Durham Center >http://www.public.iastate.edu/~oz | (515)294-2279 >http://www.cs.iastate.edu/~ph | http://www.gis.iastate.edu -- Poul-Henning Kamp | phk@FreeBSD.ORG FreeBSD Core-team. http://www.freebsd.org/~phk | phk@login.dknet.dk Private mailbox. whois: [PHK] | phk@tfs.com TRW Financial Systems, Inc. Power and ignorance is a disgusting cocktail. From owner-freebsd-current Fri Aug 22 06:10:59 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA07675 for current-outgoing; Fri, 22 Aug 1997 06:10:59 -0700 (PDT) Received: from azores.gis.iastate.edu (azores.gis.iastate.edu [129.186.142.120]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id GAA07659 for ; Fri, 22 Aug 1997 06:10:46 -0700 (PDT) Received: by azores.gis.iastate.edu with SMTP with sendmail-5.65v3.2 id ; Fri, 22 Aug 1997 08:09:07 -0500 Message-Id: <9708221309.AA04007@azores.gis.iastate.edu> Reply-To: mystify@iastate.edu To: Poul-Henning Kamp Cc: current@freebsd.org Subject: Re: Zero-length mail messages In-Reply-To: Message from Poul-Henning Kamp of "Fri, 22 Aug 1997 15:02:53 +0200." <2139.872254973@critter.dk.tfs.com> Date: Fri, 22 Aug 1997 08:09:07 CDT From: Patrick Hartling Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Poul-Henning Kamp wrote: } try backing out John Dysons changes to the kernel, they are the most } likely culprit... Thank you. I will try that. -Patrick Patrick L. Hartling | System Administrator mystify@iastate.edu | GIS Facility - 218 Durham Center http://www.public.iastate.edu/~oz | (515)294-2279 http://www.cs.iastate.edu/~ph | http://www.gis.iastate.edu From owner-freebsd-current Fri Aug 22 06:17:15 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA07948 for current-outgoing; Fri, 22 Aug 1997 06:17:15 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA07943 for ; Fri, 22 Aug 1997 06:17:12 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id XAA25491; Fri, 22 Aug 1997 23:12:47 +1000 Date: Fri, 22 Aug 1997 23:12:47 +1000 From: Bruce Evans Message-Id: <199708221312.XAA25491@godzilla.zeta.org.au> To: mike@smith.net.au, phk@dk.tfs.com Subject: Re: LINT compile failure... Cc: current@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >The CVS repo is undergoing open-heart bypass surgery. Here's a diff; if >you don't hit it, I will tomorrow : > >--- nlpt.c.old Fri Aug 22 19:12:58 1997 >+++ nlpt.c Fri Aug 22 19:13:32 1997 >@@ -367,10 +367,10 @@ > > #ifdef DEVFS > /* XXX what to do about the flags in the minor number? */ >- sc->devfs_token = devfs_add_devswf(&nlpt_cdevsw, >+ lpt->devfs_token = devfs_add_devswf(&nlpt_cdevsw, > unit, DV_CHR, > UID_ROOT, GID_WHEEL, 0600, "nlpt%d", unit); >- sc->devfs_token_ctl = devfs_add_devswf(&nlpt_cdevsw, >+ lpt->devfs_token_ctl = devfs_add_devswf(&nlpt_cdevsw, > unit | LP_BYPASS, DV_CHR, > UID_ROOT, GID_WHEEL, 0600, "lpctl%d", unit); > #endif It still fails to compile here, due to bogus timeout_func_t casts. It is apparently based on an ancient version of lpt.c (before lpt.c was staticized). The renaming of sc to lpt guarantees that patches for lpt.c usually don't apply :-(. NetBSD seems to name pointers to the main driver data struct as `sc' for most drivers. This should simplify cloning of drivers even for dissimilar drivers. E.g., you wouldn't have had to change anything except maybe "lpt" to "nlpt" when you cut and pasted the above DEVFS support. Other bugs: 1. "lpctl" should be "nlpctl" in the above. 2. "[n]lpctl" is a stupid name (it doesn't contain the full "lpt" prefix). 3. The device name should not occur literally more than once in each driver. Bruce From owner-freebsd-current Fri Aug 22 06:29:54 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA08507 for current-outgoing; Fri, 22 Aug 1997 06:29:54 -0700 (PDT) Received: from cabri.obs-besancon.fr (cabri.obs-besancon.fr [193.52.184.3]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id GAA08491 for ; Fri, 22 Aug 1997 06:29:38 -0700 (PDT) Received: by cabri.obs-besancon.fr (5.57/Ultrix3.0-C) id AA07572; Fri, 22 Aug 97 15:29:32 +0100 Date: Fri, 22 Aug 97 15:29:32 +0100 Message-Id: <9708221429.AA07572@cabri.obs-besancon.fr> From: Jean-Marc Zucconi To: dima@tejblum.dnttm.rssi.ru Cc: root@mantar.slip.netcom.com, freebsd-current@freebsd.org In-Reply-To: <199708220931.NAA00692@tejblum.dnttm.rssi.ru> (message from Dmitrij Tejblum on Fri, 22 Aug 1997 13:31:56 +0400) Subject: Re: Can't start X with new kernel X-Mailer: Emacs Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk This seems to be caused by the last change in ufs_vnops.c: revision 1.53 date: 1997/08/21 01:42:47; author: dyson; state: Exp; lines: +7 -1 Performance improvment to minimize delayed write output of files that have been deleted. Submitted by: Peter M. Chen I reverted to rev. 1.52 and X starts again. >>>>> Dmitrij Tejblum writes: >> I can not start up an xsession with current kernel. >> xdm starts alright but when i login the login screen resets itself after >> a few seconds.if i disable xdm and run xinit no problem.I'm using the >> newest release of XFree86 (3.3.1). A kernel built Monday of this week >> works fine. >> >> -r-xr-xr-x 1 root wheel 1358774 Aug 21 19:55 kernel-from-monday O.K. >> -r-xr-xr-x 1 root wheel 1354328 Aug 21 22:40 kernel-from-today N.G. >> >> i get these errors in .xsession-errors: >> >> Xlib: connection to ":0.0" refused by server^M >> Xlib: Client is not authorized to connect to Server^M > [...] > Same here. It is because xdm failed to write file .Xauthority. It always have > zero length with new kernel. > I am still using XFree86 3.2. > Dima Jean-Marc _____________________________________________________________________________ Jean-Marc Zucconi Observatoire de Besancon F 25010 Besancon cedex PGP Key: finger jmz@cabri.obs-besancon.fr From owner-freebsd-current Fri Aug 22 08:14:39 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA13205 for current-outgoing; Fri, 22 Aug 1997 08:14:39 -0700 (PDT) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA13194 for ; Fri, 22 Aug 1997 08:14:37 -0700 (PDT) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.8.5/8.8.5) with SMTP id KAA01566; Fri, 22 Aug 1997 10:13:46 -0500 (EST) Date: Fri, 22 Aug 1997 10:13:45 -0500 (EST) From: John Fieber To: Daniel Ortmann cc: current@FreeBSD.ORG Subject: Re: sgml doc format In-Reply-To: <199708220525.AAA02516@watcher.isl.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Fri, 22 Aug 1997, Daniel Ortmann wrote: > Some of our documents are generated by sgmlfmt via bsd.sgml.mk, [snip] > ... but I was surprised that I couldn't find it under the source > tree. Finally I found sgmlformat under the ports tree. > > What is the plan for sgmlfmt? The tools have been moved to the ports collection. For an equivalent setup, install: textproc/iso8879 (ISO character entities) textproc/linuxdoc (linuxdoc DTDs) textproc/docbook (DocBook DTDs) textproc/jade (SGML parser and DSSSL processor) textproc/sgmlformat (the old sgmlfmt command and instant(1)) Then you can zap /usr/bin/(sgmlfmt|sgmls|instant) and /usr/share/sgml/* to avoid confusion. bsd.sgml.mk lingers because I have not expended the five minutes necessary to rewrite the Makefiles for the handbook and FAO. Once I do that, bsd.sgml.mk will vanish. BUT...if people are still using bsd.sgml.mk for their own projects...hmm...how best to deal with this? -john From owner-freebsd-current Fri Aug 22 08:36:46 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA14448 for current-outgoing; Fri, 22 Aug 1997 08:36:46 -0700 (PDT) Received: from dyson.iquest.net (dyson.iquest.net [198.70.144.127]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA14443 for ; Fri, 22 Aug 1997 08:36:43 -0700 (PDT) Received: (from root@localhost) by dyson.iquest.net (8.8.6/8.8.5) id KAA02500; Fri, 22 Aug 1997 10:33:03 -0500 (EST) From: "John S. Dyson" Message-Id: <199708221533.KAA02500@dyson.iquest.net> Subject: Re: Can't start X with new kernel In-Reply-To: <9708221429.AA07572@cabri.obs-besancon.fr> from Jean-Marc Zucconi at "Aug 22, 97 03:29:32 pm" To: jmz@cabri.obs-besancon.fr (Jean-Marc Zucconi) Date: Fri, 22 Aug 1997 10:33:03 -0500 (EST) Cc: dima@tejblum.dnttm.rssi.ru, root@mantar.slip.netcom.com, freebsd-current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > This seems to be caused by the last change in ufs_vnops.c: > revision 1.53 > date: 1997/08/21 01:42:47; author: dyson; state: Exp; lines: +7 -1 > Performance improvment to minimize delayed write output of files > that have been deleted. > Submitted by: Peter M. Chen > > I reverted to rev. 1.52 and X starts again. > Hmmm... That is an interesting problem. I'll revert the code in the repository until I can fix it. John From owner-freebsd-current Fri Aug 22 08:37:25 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA14511 for current-outgoing; Fri, 22 Aug 1997 08:37:25 -0700 (PDT) Received: from mailbox.uq.edu.au (zzshocki.slip.cc.uq.edu.au [130.102.221.173]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA14395 for ; Fri, 22 Aug 1997 08:35:57 -0700 (PDT) Received: from bloop.craftncomp.com (localhost.craftncomp.com [127.0.0.1]) by mailbox.uq.edu.au (8.8.7/8.6.12) with ESMTP id BAA11192; Sat, 23 Aug 1997 01:40:44 +1000 (EST) Message-Id: <199708221540.BAA11192@mailbox.uq.edu.au> X-Mailer: exmh version 2.0zeta 7/24/97 To: current@freebsd.org cc: toor@dyson.iquest.net Subject: Files being truncated left, right & centre. Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 23 Aug 1997 01:40:43 +1000 From: Stephen Hocking Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I've seen the trimmed .Xauthority a previous user mentioned, and now ordinary text files (such as mh's dot files) are being clobbered. John, what's going on? Stephen From owner-freebsd-current Fri Aug 22 11:00:57 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA22652 for current-outgoing; Fri, 22 Aug 1997 11:00:57 -0700 (PDT) Received: from sendero-ppp.i-connect.net (sendero-ppp.i-Connect.Net [206.190.143.100]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id LAA22635 for ; Fri, 22 Aug 1997 11:00:51 -0700 (PDT) Received: (qmail 3811 invoked by uid 1000); 22 Aug 1997 18:01:05 -0000 Message-ID: X-Mailer: XFMail 1.2-alpha [p0] on FreeBSD X-Priority: 3 (Normal) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="_=XFMail.1.2-alpha.p0.FreeBSD:970822030152:362=_" Date: Fri, 22 Aug 1997 11:01:05 -0700 (PDT) Organization: Atlas Telecom From: Simon Shapiro To: FreeBSD-Current@freebsd.org Subject: Current Kernel Configuration Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk This message is in MIME format --_=XFMail.1.2-alpha.p0.FreeBSD:970822030152:362=_ Content-Type: text/plain; charset=iso-8859-8 Hi Y'all, Attached is a kernel config file which boots and runs just fine when compiled under recent 2.2. This very same config file compiles a 3.0 kernel very well, but at boot time, instead of handing things over to init, it just sits in default_halt(). Any clue is welcome. Simon --_=XFMail.1.2-alpha.p0.FreeBSD:970822030152:362=_ Content-Disposition: attachment; filename="DPT" Content-Transfer-Encoding: 7bit Content-Description: DPT Content-Type: text/plain; charset=us-ascii; name=DPT; SizeOnDisk=11101 # # SENDERO -- Sendero configuration # # $Id: DPT,v 1.21 1997/08/22 05:00:03 ShimonR Exp ShimonR $ machine "i386" cpu "I686_CPU" cpu "I586_CPU" ident SENDERO maxusers 64 options CHILD_MAX=128 options OPEN_MAX=128 options "MAXDSIZ=(64*1024*1024)" options "DFLDSIZ=(16*1024*1024)" config kernel root on wd0a # ... dumps on sd0s2b options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] options USER_LDT #allow user-level control of i386 ldt options SYSVSHM options SYSVSEM options SYSVMSG options DDB options DDB_UNATTENDED options KTRACE #kernel tracing options PERFMON options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options USERCONFIG_BOOT #imply -c and parse info area #options VISUAL_USERCONFIG #visual boot -c editor options INET #InterNETworking pseudo-device ether pseudo-device fddi pseudo-device sppp pseudo-device loop pseudo-device ppp 4 pseudo-device bpfilter 16 pseudo-device disc pseudo-device tun 4 options MROUTING # Multicast routing options IPDIVERT #divert sockets options TCPDEBUG options FFS #Berkeley Fast Filesystem options NFS #Network Filesystem options "CD9660" #ISO 9660 Filesystem options PROCFS #Process filesystem options DEVFS #devices filesystem options KERNFS #kernel interfaces filesystem #options NULLFS # Will not even compile options QUOTA #enable disk quotas options NULLFS_DIAGNOSTIC options KERNFS_DIAGNOSTIC options UMAPFS_DIAGNOSTIC options SAFETY controller pci0 device ch0 #SCSI media changers device sd0 #SCSI disks device st0 #SCSI tapes device cd0 #SCSI CD-ROMs device od0 #SCSI optical disk options SCSI_DELAY=5 # Don't be too pessimistic about SCSI device # Disk Addressing Guidelines: # We assume wide SCSI, not FCAL, with this release. # There is never a target 7, nor target 15; They are reserved for initiators! # Each ADAPTER takes 4 busses but uses only busses 0-2. # Each bus consumes 16 addresses, but uses no more than 13 devices per bus. # Devices with no LUNs have only LUN 0. Lun != 0 means secondary LUNS 1-7 # Non-zero LUNs have the same ID as LUN 0 but bit 7 is set on (64 + target) controller dpt0 controller dpt1 controller scbus0 at dpt0 bus 0 controller scbus1 at dpt0 bus 1 controller scbus2 at dpt0 bus 2 controller scbus4 at dpt1 bus 0 controller scbus5 at dpt1 bus 1 controller scbus6 at dpt1 bus 2 options DPT_USE_SINTR=1 # Use software interrupts (crucial) options DPT_MEASURE_PERFORMANCE # Lose ~0.1% performance but measure it options DPT_TRACK_CCB_STATES # Diagnostic value only. @ Simon's direction options DPT_HANDLE_TIMEOUTS # Leave on if things hang options DPT_COMMAND_SPLHIGH # Experimental, briefly locks eata ports options DPT_INTR_CHECK_SOFTC # Experimental; checks soft structs is valid # First DPT starts here device worm0 at scbus0 target 4 unit 0 tape st0 at scbus0 target 5 unit 0 device cd0 at scbus0 target 6 unit 0 disk sd0 at scbus0 target 0 unit 0 disk sd1 at scbus0 target 1 unit 0 disk sd2 at scbus0 target 2 unit 0 disk sd3 at scbus0 target 3 unit 0 disk sd4 at scbus0 target 4 unit 0 disk sd5 at scbus0 target 5 unit 0 disk sd6 at scbus0 target 6 unit 0 disk sd8 at scbus0 target 8 unit 0 disk sd9 at scbus0 target 9 unit 0 disk sd10 at scbus0 target 10 unit 0 disk sd11 at scbus0 target 11 unit 0 disk sd12 at scbus0 target 12 unit 0 disk sd13 at scbus0 target 13 unit 0 disk sd14 at scbus0 target 14 unit 0 device worm1 at scbus1 target 4 unit 0 tape st1 at scbus1 target 5 unit 0 device cd1 at scbus1 target 6 unit 0 disk sd16 at scbus1 target 0 unit 0 disk sd17 at scbus1 target 1 unit 0 disk sd18 at scbus1 target 2 unit 0 disk sd19 at scbus1 target 3 unit 0 disk sd20 at scbus1 target 4 unit 0 disk sd21 at scbus1 target 5 unit 0 disk sd22 at scbus1 target 6 unit 0 disk sd24 at scbus1 target 8 unit 0 disk sd25 at scbus1 target 9 unit 0 disk sd26 at scbus1 target 10 unit 0 disk sd27 at scbus1 target 11 unit 0 disk sd28 at scbus1 target 12 unit 0 disk sd29 at scbus1 target 13 unit 0 disk sd30 at scbus1 target 14 unit 0 device worm2 at scbus2 target 4 unit 0 tape st2 at scbus2 target 5 unit 0 device cd2 at scbus2 target 6 unit 0 disk sd32 at scbus2 target 0 unit 0 disk sd33 at scbus2 target 1 unit 0 disk sd34 at scbus2 target 2 unit 0 disk sd35 at scbus2 target 3 unit 0 disk sd36 at scbus2 target 4 unit 0 disk sd37 at scbus2 target 5 unit 0 disk sd38 at scbus2 target 6 unit 0 disk sd41 at scbus2 target 9 unit 0 disk sd42 at scbus2 target 10 unit 0 disk sd43 at scbus2 target 11 unit 0 disk sd44 at scbus2 target 12 unit 0 disk sd45 at scbus2 target 13 unit 0 disk sd46 at scbus2 target 14 unit 0 # Second DPT starts here device worm3 at scbus4 target 4 unit 0 tape st3 at scbus4 target 5 unit 0 device cd3 at scbus4 target 6 unit 0 disk sd64 at scbus4 target 0 unit 0 disk sd65 at scbus4 target 1 unit 0 disk sd66 at scbus4 target 2 unit 0 disk sd67 at scbus4 target 3 unit 0 disk sd68 at scbus4 target 4 unit 0 disk sd69 at scbus4 target 5 unit 0 disk sd70 at scbus4 target 6 unit 0 disk sd72 at scbus4 target 8 unit 0 disk sd73 at scbus4 target 9 unit 0 disk sd74 at scbus4 target 10 unit 0 disk sd75 at scbus4 target 11 unit 0 disk sd76 at scbus4 target 12 unit 0 disk sd77 at scbus4 target 13 unit 0 disk sd78 at scbus4 target 14 unit 0 disk sd79 at scbus4 target 15 unit 0 device worm4 at scbus5 target 4 unit 0 tape st4 at scbus5 target 5 unit 0 device cd4 at scbus5 target 6 unit 0 disk sd80 at scbus5 target 0 unit 0 disk sd81 at scbus5 target 1 unit 0 disk sd82 at scbus5 target 2 unit 0 disk sd83 at scbus5 target 3 unit 0 disk sd84 at scbus5 target 4 unit 0 disk sd85 at scbus5 target 5 unit 0 disk sd86 at scbus5 target 6 unit 0 disk sd88 at scbus5 target 8 unit 0 disk sd89 at scbus5 target 9 unit 0 disk sd90 at scbus5 target 10 unit 0 disk sd91 at scbus5 target 11 unit 0 disk sd92 at scbus5 target 12 unit 0 disk sd93 at scbus5 target 13 unit 0 disk sd94 at scbus5 target 14 unit 0 disk sd95 at scbus5 target 15 unit 0 device worm5 at scbus6 target 4 unit 0 tape st5 at scbus6 target 5 unit 0 device cd5 at scbus6 target 6 unit 0 disk sd96 at scbus6 target 0 unit 0 disk sd97 at scbus6 target 1 unit 0 disk sd98 at scbus6 target 2 unit 0 disk sd99 at scbus6 target 3 unit 0 disk sd100 at scbus6 target 4 unit 0 disk sd101 at scbus6 target 5 unit 0 disk sd102 at scbus6 target 6 unit 0 disk sd104 at scbus6 target 8 unit 0 disk sd105 at scbus6 target 9 unit 0 disk sd106 at scbus6 target 10 unit 0 disk sd107 at scbus6 target 11 unit 0 disk sd108 at scbus6 target 12 unit 0 disk sd109 at scbus6 target 13 unit 0 disk sd110 at scbus6 target 14 unit 0 disk sd111 at scbus6 target 15 unit 0 controller ahc0 options AHC_TAGENABLE options AHC_SCBPAGING_ENABLE options AHC_ALLOW_MEMIO controller scbus8 at ahc0 disk sd128 at scbus8 target 0 unit 0 disk sd129 at scbus8 target 1 unit 0 disk sd130 at scbus8 target 2 unit 0 disk sd131 at scbus8 target 3 unit 0 disk sd132 at scbus8 target 4 unit 0 disk sd133 at scbus8 target 5 unit 0 disk sd134 at scbus8 target 6 unit 0 disk sd136 at scbus8 target 8 unit 0 disk sd137 at scbus8 target 9 unit 0 disk sd138 at scbus8 target 10 unit 0 disk sd139 at scbus8 target 11 unit 0 disk sd140 at scbus8 target 12 unit 0 disk sd141 at scbus8 target 13 unit 0 disk sd142 at scbus8 target 14 unit 0 disk sd143 at scbus8 target 15 unit 0 pseudo-device pty 128 pseudo-device speaker #Play IBM BASIC-style noises out your speaker pseudo-device log pseudo-device gzip # Exec gzipped a.out's pseudo-device vn #Vnode driver (turns a file into a device) pseudo-device snp 3 #Snoop device - to look at pty/vty/etc.. pseudo-device ccd 64 #Concatenated disk driver options FAILSAFE #Be conservative controller isa0 options "AUTO_EOI_1" options "AUTO_EOI_2" options BOUNCE_BUFFERS #include support for DMA bounce buffers options "MAXMEM=(128*1024)" # 128M, no autodetect over 64M :-( #device vt0 at isa? port "IO_KBD" tty irq 1 vector pcrint #options PCVT_FREEBSD=210 # pcvt running on FreeBSD >= 2.0.5 options XSERVER # include code for XFree86 #options FAT_CURSOR # start with block cursor device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr options MAXCONS=12 # number of virtual consoles device npx0 at isa? port "IO_NPX" irq 13 vector npxintr controller wdc0 at isa? port "IO_WD1" bio irq 14 vector wdintr disk wd0 at wdc0 drive 0 disk wd1 at wdc0 drive 1 controller wdc1 at isa? port "IO_WD2" bio irq 15 vector wdintr disk wd2 at wdc1 drive 0 disk wd3 at wdc1 drive 1 options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM device wcd0 #IDE CD-ROM controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr disk fd0 at fdc0 drive 0 disk fd1 at fdc0 drive 1 device sio0 at isa? port "IO_COM1" tty irq 4 vector siointr device sio1 at isa? port "IO_COM2" tty irq 3 vector siointr device sio2 at isa? port "IO_COM3" tty irq 5 vector siointr device ed0 at isa? port 0x300 net irq 10 iomem 0xd8000 vector edintr controller snd0 device sb0 at isa? port 0x220 irq 7 drq 1 vector sbintr device sbxvi0 at isa? drq 5 device sbmidi0 at isa? port 0x300 device opl0 at isa? port 0x388 #device apm0 at isa? # Advanced Power Management #options APM_BROKEN_STATCLOCK #options APM_IDLE_CPU # Tell APM to idle rather than halt'ing the cpu device de0 device fxp0 device fpa0 options COMPAT_LINUX options "EXT2FS" options "IBCS2" options SHOW_BUSYBUFS # List buffers that prevent root unmount --_=XFMail.1.2-alpha.p0.FreeBSD:970822030152:362=_-- End of MIME message From owner-freebsd-current Fri Aug 22 11:40:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA25021 for current-outgoing; Fri, 22 Aug 1997 11:40:12 -0700 (PDT) Received: from mercury.Sun.COM (mercury.Sun.COM [192.9.25.1]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id LAA24974 for ; Fri, 22 Aug 1997 11:40:06 -0700 (PDT) Received: from East.Sun.COM ([129.148.1.241]) by mercury.Sun.COM (SMI-8.6/mail.byaddr) with SMTP id LAA28234 for ; Fri, 22 Aug 1997 11:39:32 -0700 Received: from suneast.East.Sun.COM by East.Sun.COM (SMI-8.6/SMI-5.3) id OAA04862; Fri, 22 Aug 1997 14:39:29 -0400 Received: from compound.east.sun.com by suneast.East.Sun.COM (SMI-8.6/SMI-SVR4) id OAA24495; Fri, 22 Aug 1997 14:39:28 -0400 Received: (from alk@localhost) by compound.east.sun.com (8.8.6/8.7.3) id NAA15056; Fri, 22 Aug 1997 13:41:49 -0500 (CDT) Date: Fri, 22 Aug 1997 13:41:49 -0500 (CDT) Reply-To: Anthony.Kimball@East.Sun.COM Message-Id: <199708221841.NAA15056@compound.east.sun.com> From: Tony Kimball MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: current@freebsd.org Subject: excessive verbosity X-Face: O9M"E%K;(f-Go/XDxL+pCxI5*gr[=FN@Y`cl1.Tn Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Do we really need console messages like this? cd0: NOT READY asc:3a,0 Medium not present cd0: error code 0 I think they are a security hole, if nothing else. From owner-freebsd-current Fri Aug 22 13:49:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA01239 for current-outgoing; Fri, 22 Aug 1997 13:49:02 -0700 (PDT) Received: from dyson.iquest.net (dyson.iquest.net [198.70.144.127]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id NAA01234 for ; Fri, 22 Aug 1997 13:48:55 -0700 (PDT) Received: (from root@localhost) by dyson.iquest.net (8.8.6/8.8.5) id PAA03407; Fri, 22 Aug 1997 15:48:08 -0500 (EST) From: "John S. Dyson" Message-Id: <199708222048.PAA03407@dyson.iquest.net> Subject: Re: Files being truncated left, right & centre. In-Reply-To: <199708221540.BAA11192@mailbox.uq.edu.au> from Stephen Hocking at "Aug 23, 97 01:40:43 am" To: shocking@mailbox.uq.edu.au (Stephen Hocking) Date: Fri, 22 Aug 1997 15:48:08 -0500 (EST) Cc: current@FreeBSD.ORG, toor@dyson.iquest.net X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > I've seen the trimmed .Xauthority a previous user mentioned, and now ordinary > text files (such as mh's dot files) are being clobbered. John, what's going on? > > I totally screwed things up. Please try the latest -current. (BTW, I had absolutely no such problems, and had been running this code for 3-4 days.) I am really sorry about this one, and I'll be on the computer for the next 8-10Hrs, responding if the problem persists. Again, I apologize for this. I had intended to pass the code out for review, but was so confident (erroneously) that I had bypassed the step. John From owner-freebsd-current Fri Aug 22 14:28:11 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA03126 for current-outgoing; Fri, 22 Aug 1997 14:28:11 -0700 (PDT) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id OAA03120; Fri, 22 Aug 1997 14:28:05 -0700 (PDT) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.6/8.7.3) id OAA11160; Fri, 22 Aug 1997 14:27:31 -0700 (PDT) Date: Fri, 22 Aug 1997 14:27:31 -0700 (PDT) Message-Id: <199708222127.OAA11160@vader.cs.berkeley.edu> To: gurney_j@resnet.uoregon.edu CC: current@FreeBSD.ORG, bde@FreeBSD.ORG In-reply-to: <19970822053737.64659@hydrogen.nike.efn.org> (message from John-Mark Gurney on Fri, 22 Aug 1997 05:37:37 -0700) Subject: Re: does buildworld really use old libs?? From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * well.. I was watching buildworld build.. and I noticed something: * cc -nostdinc -O2 -pipe -I/usr/obj/a/home/johng/FreeBSD-checkout/current/src/tm * p/usr/include -o rain rain.o -ltermcap -lcompat * * acording to this line, we are still using the old libraries... shouldn't Have you tried to move /usr/lib/libtermcap.* out of the way and see if it works? :) * we add -nostdlib -L${.OBJDIR}/tmp/usr/lib or something similar so that * we actually link against the libs that are part of the install set?? The library paths (and some others) are handled by environment variables. See COMPILER_ENV. Satoshi From owner-freebsd-current Fri Aug 22 14:31:11 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA03300 for current-outgoing; Fri, 22 Aug 1997 14:31:11 -0700 (PDT) Received: from r33h141.res.gatech.edu (r33h141.res.gatech.edu [128.61.33.141]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id OAA03288 for ; Fri, 22 Aug 1997 14:31:02 -0700 (PDT) Received: (from jason@localhost) by r33h141.res.gatech.edu (8.8.5/8.7.3) id RAA18355; Fri, 22 Aug 1997 17:31:24 -0400 (EDT) Message-ID: <19970822173124.02940@res.gatech.edu> Date: Fri, 22 Aug 1997 17:31:24 -0400 From: Jason Bennett To: current@freebsd.org Subject: make world failure Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.76 Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk -------------------------------------------------------------- Making hierarchy -------------------------------------------------------------- cd /usr/src && PATH=/usr/obj/usr/src/tmp/sbin:/usr/obj/usr/src/tmp/usr/sbin:/usr/obj/usr/src/tmp/bin:/usr/obj/usr/src/tmp/usr/bin:/usr/X11R6/bin:/sbin:/usr/sbin :/bin:/usr/bin:/usr/local/bin:/usr/local/sbin: BISON_SIMPLE=/usr/obj/usr/src/tmp /usr/share/misc/bison.simple COMPILER_PATH=/usr/obj/usr/src/tmp/usr/libexec:/us r/obj/usr/src/tmp/usr/bin GCC_EXEC_PREFIX=/usr/obj/usr/src/tmp/usr/lib/ LD_LIB RARY_PATH=/usr/obj/usr/src/tmp/usr/lib LIBRARY_PATH=/usr/obj/usr/src/tmp/usr/li b:/usr/obj/usr/src/tmp/usr/lib NOEXTRADEPEND=t /usr/obj/usr/src/tmp/usr/bin/make DESTDIR=/usr/obj/usr/src/tmp hierarchy cd /usr/src/etc && /usr/obj/usr/src/tmp/usr/bin/make distrib-dirs mtree -deU -f /usr/src/etc/mtree/BSD.root.dist -p /usr/obj/usr/src/tmp/ .: gid (0, 7, modified) usr: gid (0, 7, modified) missing: ./bin (created) missing: ./dev (created) missing: ./dev/fd (created) missing: ./etc (created) missing: ./etc/periodic (created) missing: ./etc/periodic/daily (created) missing: ./etc/periodic/weekly (created) missing: ./etc/periodic/monthly (created) missing: ./etc/gnats (created) missing: ./etc/kerberosIV (created) missing: ./etc/mtree (created) missing: ./etc/namedb (created) missing: ./etc/ppp (created) missing: ./etc/skel (created) missing: ./etc/uucp (created) missing: ./lkm (created) missing: ./mnt (created) missing: ./proc (created) missing: ./root (created) missing: ./sbin (created) missing: ./tmp (created) missing: ./var (created) mtree -deU -f /usr/src/etc/mtree/BSD.var.dist -p /usr/obj/usr/src/tmp/var mtree: unknown group mail mtree: failed at line 37 of the specification *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. -- Jason Bennett, jbennett@cc.gatech.edu | Member, Team OS/2! CS Major, Georgia Institute of Technology | Head TA, CS 1501! Believer in Jesus Christ as Savior and Lord | BSU VP Emeratus http://bsu.gt.ed.net/~jason/ | finger for PGP key! From owner-freebsd-current Fri Aug 22 14:46:24 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA04025 for current-outgoing; Fri, 22 Aug 1997 14:46:24 -0700 (PDT) Received: from earth.mat.net (earth.mat.net [206.246.122.2]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id OAA04018 for ; Fri, 22 Aug 1997 14:46:20 -0700 (PDT) Received: from Journey2.mat.net (journey2.mat.net [206.246.122.116]) by earth.mat.net (8.6.12/8.6.12) with SMTP id RAA01663; Fri, 22 Aug 1997 17:44:14 -0400 Date: Fri, 22 Aug 1997 17:44:12 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@Journey2.mat.net To: Jason Bennett cc: current@FreeBSD.ORG Subject: Re: make world failure In-Reply-To: <19970822173124.02940@res.gatech.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Fri, 22 Aug 1997, Jason Bennett wrote: > missing: ./tmp (created) > missing: ./var (created) > mtree -deU -f /usr/src/etc/mtree/BSD.var.dist -p /usr/obj/usr/src/tmp/var > mtree: unknown group mail > mtree: failed at line 37 of the specification > *** Error code 1 I would think the solution to be obvious ... go add group mail to /etc/group. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-current Fri Aug 22 15:09:27 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA06092 for current-outgoing; Fri, 22 Aug 1997 15:09:27 -0700 (PDT) Received: from shell.uniserve.com (tom@shell.uniserve.com [204.244.210.252]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id PAA06075 for ; Fri, 22 Aug 1997 15:09:22 -0700 (PDT) Received: from localhost (tom@localhost) by shell.uniserve.com (8.8.5/8.8.5) with SMTP id PAA20571; Fri, 22 Aug 1997 15:03:59 -0700 (PDT) X-Authentication-Warning: shell.uniserve.com: tom owned process doing -bs Date: Fri, 22 Aug 1997 15:03:59 -0700 (PDT) From: Tom To: Jason Bennett cc: current@FreeBSD.ORG Subject: Re: make world failure In-Reply-To: <19970822173124.02940@res.gatech.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Fri, 22 Aug 1997, Jason Bennett wrote: > mtree: unknown group mail You need to have a group mail to do that. > > -- > Jason Bennett, jbennett@cc.gatech.edu | Member, Team OS/2! > CS Major, Georgia Institute of Technology | Head TA, CS 1501! > Believer in Jesus Christ as Savior and Lord | BSU VP Emeratus > http://bsu.gt.ed.net/~jason/ | finger for PGP key! > Tom From owner-freebsd-current Fri Aug 22 17:28:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA12286 for current-outgoing; Fri, 22 Aug 1997 17:28:12 -0700 (PDT) Received: from mail.cdsnet.net (mail.cdsnet.net [204.118.244.5]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id RAA12235; Fri, 22 Aug 1997 17:27:34 -0700 (PDT) Received: from mail.cdsnet.net (mail.cdsnet.net [204.118.244.5]) by mail.cdsnet.net (8.8.6/8.8.6) with SMTP id RAA22446; Fri, 22 Aug 1997 17:27:32 -0700 (PDT) Date: Fri, 22 Aug 1997 17:27:32 -0700 (PDT) From: Jaye Mathisen To: current@freebsd.org cc: smp@freebsd.org Subject: SMP problem. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Being relatively new to FreeBSD vs SMP, I will plead ignorance, but not lack of exuberance... :) Digital ZX6000, P6-200, 2CPU's, 256MB RAM, FreeBSD 3.0 cvsup'd from 8/20. I built the SMP-GENERIC kernel with the 1.2.1 DPT patches. System boots OK, makes it to "changing root to sd0a". Then prints: APIC_IO: routing 8254 via pin 2 de0: enabling 100baseTX port And then nada. Locked up tight. Booting the UNI kernel works fine. I can't get into DDB or anything. Tips appreciated. I am installing the latest BIOS now, (I was 1 rev behind), but would be skeptical of that actually helping. The box ran Solaris 2.5.1 SMP just fine, albeit with a Mylex instead of DPT. So I'm hoping it's something simple. From owner-freebsd-current Fri Aug 22 19:17:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA15869 for current-outgoing; Fri, 22 Aug 1997 19:17:58 -0700 (PDT) Received: from dfw-ix4.ix.netcom.com (dfw-ix4.ix.netcom.com [206.214.98.4]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA15814; Fri, 22 Aug 1997 19:17:11 -0700 (PDT) Received: (from smap@localhost) by dfw-ix4.ix.netcom.com (8.8.4/8.8.4) id VAA20947; Fri, 22 Aug 1997 21:16:07 -0500 (CDT) Received: from sil-wa2-01.ix.netcom.com(206.214.137.33) by dfw-ix4.ix.netcom.com via smap (V1.3) id sma020933; Fri Aug 22 21:15:55 1997 Message-ID: <33FE47D4.3F54BC7E@ix.netcom.com> Date: Fri, 22 Aug 1997 19:15:48 -0700 From: "Thomas D. Dean" X-Mailer: Mozilla 3.01 (X11; U; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: Jaye Mathisen CC: current@FreeBSD.ORG, smp@FreeBSD.ORG Subject: Re: SMP problem. References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I assume you booted -c and disabled all the unused devices. My Celebris XL hangs, unless I disable some of the probed devces. From owner-freebsd-current Fri Aug 22 22:39:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA23791 for current-outgoing; Fri, 22 Aug 1997 22:39:07 -0700 (PDT) Received: from sendero-ppp.i-connect.net (sendero-ppp.i-Connect.Net [206.190.143.100]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id WAA23786 for ; Fri, 22 Aug 1997 22:39:05 -0700 (PDT) Received: (qmail 13537 invoked by uid 1000); 23 Aug 1997 05:39:15 -0000 Message-ID: X-Mailer: XFMail 1.2-alpha [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit MIME-Version: 1.0 In-Reply-To: Date: Fri, 22 Aug 1997 22:39:15 -0700 (PDT) Organization: Atlas Telecom From: Simon Shapiro To: Jaye Mathisen Subject: RE: SMP problem. Cc: smp@FreeBSD.ORG, current@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hi Jaye Mathisen; On 23-Aug-97 you wrote: > > > Being relatively new to FreeBSD vs SMP, I will plead ignorance, but not > lack of exuberance... :) > > Digital ZX6000, P6-200, 2CPU's, 256MB RAM, FreeBSD 3.0 cvsup'd from > 8/20. > > I built the SMP-GENERIC kernel with the 1.2.1 DPT patches. > > System boots OK, makes it to "changing root to sd0a". > > Then prints: > > APIC_IO: routing 8254 via pin 2 > de0: enabling 100baseTX port > > And then nada. Locked up tight. Booting the UNI kernel works fine. > I can't get into DDB or anything. Now this is a first. Are you sure ctl-alt-esc did nothing? I am running, albeit with some problems (none like what you describe) with the same setup on a P6DNH and soon on an Intel PR440FX. > Tips appreciated. > > I am installing the latest BIOS now, (I was 1 rev behind), but would be > skeptical of that actually helping. > > The box ran Solaris 2.5.1 SMP just fine, albeit with a Mylex instead of > DPT. So I'm hoping it's something simple. Simon From owner-freebsd-current Sat Aug 23 00:19:59 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA27377 for current-outgoing; Sat, 23 Aug 1997 00:19:59 -0700 (PDT) Received: from scanner.worldgate.com (scanner.worldgate.com [198.161.84.3]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA27371; Sat, 23 Aug 1997 00:19:53 -0700 (PDT) Received: from znep.com (uucp@localhost) by scanner.worldgate.com (8.8.5/8.8.5) with UUCP id BAA14729; Sat, 23 Aug 1997 01:19:44 -0600 (MDT) Received: from localhost (marcs@localhost) by alive.znep.com (8.7.5/8.7.3) with SMTP id BAA07684; Sat, 23 Aug 1997 01:19:46 -0600 (MDT) Date: Sat, 23 Aug 1997 01:19:45 -0600 (MDT) From: Marc Slemko To: Sean Eric Fagan cc: julian@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: I've broken ping In-Reply-To: <199707120707.AAA23391@kithrup.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sat, 12 Jul 1997, Sean Eric Fagan wrote: > >(or if sean can post the patch someone else can check it in) > >(to 2.2 and 3.0) (don;t you have commit privs sean?) > > Yeah, I have patches, but I was hoping you'd be able to test it more > extensively than I could :). > > I can check it in tomorrow, otherwise. > > For the curious, the patches are below. I'm going to bed now :). Running under 2.2-stable from a week or two ago, both the 2.2 and -current ping are still broken. I am seeing it hang in pr_addr if the reverse isn't resolvable; ^C wont kill it because it appears like a function call is being restarted. I am confused about why this is happening. ISTR some changes in FreeBSD WRT this that I haven't had time to follow. Changing the sigaction() back to a signal() fixes this particular case. The signal() man page says function calls will be restarted, but the sigaction() man page implies they won't without SA_RESTART. That follows with what I am aware that recent BSD code does. It doesn't seem to fit with what I am seeing. > > Index: ping.c > =================================================================== > RCS file: /home/ncvs/src/sbin/ping/ping.c,v > retrieving revision 1.23 > diff -u -r1.23 ping.c > --- ping.c 1997/07/09 20:33:58 1.23 > +++ ping.c 1997/07/12 03:55:41 > @@ -423,8 +423,19 @@ > else > (void)printf("PING %s: %d data bytes\n", hostname, datalen); > > - (void)signal(SIGINT, stopit); > - (void)signal(SIGALRM, catcher); > + si_sa.sa_handler = stopit; > + sigemptyset(&si_sa.sa_mask); > + si_sa.sa_flags = 0; > + if (sigaction(SIGINT, &si_sa, 0) == -1) { > + err(EX_OSERR, "sigaction SIGINT"); > + } > + > + si_sa.sa_handler = catcher; > + sigemptyset(&si_sa.sa_mask); > + si_sa.sa_flags = 0; > + if (sigaction(SIGALRM, &si_sa, 0) == -1) { > + err(EX_OSERR, "sigaction SIGALRM"); > + } > > /* > * Use sigaction instead of signal() to get unambiguous semantics > @@ -508,9 +519,17 @@ > catcher(int sig) > { > int waittime; > + struct sigaction si_sa; > > pinger(); > - (void)signal(SIGALRM, catcher); > + > + si_sa.sa_handler = catcher; > + sigemptyset(&si_sa.sa_mask); > + si_sa.sa_flags = 0; > + if (sigaction(SIGALRM, &si_sa, 0) == -1) { > + err(EX_OSERR, "sigaction"); > + } > + > if (!npackets || ntransmitted < npackets) > alarm((u_int)interval); > else { > @@ -520,7 +539,9 @@ > waittime = 1; > } else > waittime = MAXWAIT; > - (void)signal(SIGALRM, stopit); > + finish_up = 1; > + si_sa.sa_handler = stopit; > + (void)sigaction(SIGALRM, &si_sa, 0); > (void)alarm((u_int)waittime); > } > } > From owner-freebsd-current Sat Aug 23 02:49:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA01587 for current-outgoing; Sat, 23 Aug 1997 02:49:07 -0700 (PDT) Received: from palrel1.hp.com (palrel1.hp.com [156.153.255.235]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA01582 for ; Sat, 23 Aug 1997 02:49:04 -0700 (PDT) Received: from postbox.india.hp.com (postbox.india.hp.com [15.10.45.1]) by palrel1.hp.com (8.8.6/8.8.5) with ESMTP id CAA06849 for ; Sat, 23 Aug 1997 02:48:58 -0700 (PDT) Message-Id: <199708230948.CAA06849@palrel1.hp.com> Received: from localhost by postbox.india.hp.com with ESMTP (1.39.111.2/16.2) id AA124559576; Sat, 23 Aug 1997 15:16:16 +0530 To: freebsd-current@freebsd.org Subject: Build failure: DOSCMD uses -Bstatic -lX11 Date: Sat, 23 Aug 1997 15:16:16 +0530 From: A Joseph Koshy Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Running -current as of a day back: DOSCMD used -Bstatic for its compiles, and tries to link with -lX11 if ${X11BASE} is present. By default the XFree86 lib/ directory contains only shared libraries (the static versions of the libraries are packaged in the programmers bundle X33prog.tgz). This is an added dependency to the build process. Why do we need -lX11 to build the doscmd kernel? Koshy My Personal Opinions Only. From owner-freebsd-current Sat Aug 23 03:49:19 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA05879 for current-outgoing; Sat, 23 Aug 1997 03:49:19 -0700 (PDT) Received: from Octopussy.MI.Uni-Koeln.DE (Octopussy.MI.Uni-Koeln.DE [134.95.166.20]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id DAA05841 for ; Sat, 23 Aug 1997 03:49:11 -0700 (PDT) Received: from x14.mi.uni-koeln.de ([134.95.219.124]) by Octopussy.MI.Uni-Koeln.DE with SMTP id AA19597 (5.67b/IDA-1.5 for ); Sat, 23 Aug 1997 12:49:05 +0200 Received: (from se@localhost) by x14.mi.uni-koeln.de (8.8.7/8.6.9) id KAA00536; Sat, 23 Aug 1997 10:00:18 +0200 (CEST) X-Face: " Date: Sat, 23 Aug 1997 10:00:18 +0200 From: Stefan Esser To: Chuck Robey Cc: Glenn Johnson , freebsd-current@FreeBSD.ORG Subject: Re: NCR SCSI will not boot References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.74 In-Reply-To: ; from Chuck Robey on Thu, Aug 21, 1997 at 03:25:25PM -0400 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Aug 21, Chuck Robey wrote: > On Thu, 21 Aug 1997, Glenn Johnson wrote: > > > ncr0: rev 0x11 int a irq 11 on pci0.14.0 > > ncr0: minsync=25, maxsync=206, maxoffs=8, 128 dwords burst, large dma fifo A rev. 0x11 chip ? Well, looking at a message Chuck sent before: > ncr0: rev 0x11 int a irq 10 on pci0.20.0 I need to make sure, that there is not a problem with that particular revision of the chip. Does the driver work with rev 0x11 somewhere, or is it only 0x10 or (don't know if it exists) 0x12, that works ??? Regards, STefan From owner-freebsd-current Sat Aug 23 06:09:50 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA12009 for current-outgoing; Sat, 23 Aug 1997 06:09:50 -0700 (PDT) Received: from mail.cs.tu-berlin.de (root@mail.cs.tu-berlin.de [130.149.17.13]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA12003 for ; Sat, 23 Aug 1997 06:09:44 -0700 (PDT) Received: from panke.panke.de (anonymous218.ppp.cs.tu-berlin.de [130.149.17.218]) by mail.cs.tu-berlin.de (8.8.6/8.8.6) with ESMTP id PAA14843; Sat, 23 Aug 1997 15:01:39 +0200 (MET DST) Received: (from wosch@localhost) by panke.panke.de (8.8.5/8.6.12) id OAA00602; Sat, 23 Aug 1997 14:23:40 +0200 (MET DST) To: =?KOI8-R?B?4c7E0sXKIP7F0s7P1w==?= Cc: FreeBSD-current Subject: Re: I don't see promised /var/forward on freefall, please fix References: From: Wolfram Schneider Date: 23 Aug 1997 14:23:38 +0200 In-Reply-To: =?KOI8-R?B?4c7E0sXKIP7F0s7P1w==?='s message of Fri, 22 Aug 1997 15:12:44 +0400 (MSD) Message-ID: Lines: 9 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk =?KOI8-R?B?4c7E0sXKIP7F0s7P1w==?= writes: > Subj. says all You don't have a mailbox at freefall. Why do you want a forward? freefall has a mx record which point to hub.freebsd.org. All mails to freefall.freebsd.org are handled by hub. -- Wolfram Schneider http://www.freebsd.org/~wosch/ From owner-freebsd-current Sat Aug 23 10:24:37 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA04997 for current-outgoing; Sat, 23 Aug 1997 10:24:37 -0700 (PDT) Received: from Ilsa.StevesCafe.com (Ilsa.StevesCafe.com [205.168.119.129]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA04707; Sat, 23 Aug 1997 10:21:36 -0700 (PDT) Received: from Ilsa.StevesCafe.com (localhost [127.0.0.1]) by Ilsa.StevesCafe.com (8.8.7/8.8.5) with ESMTP id LAA07412; Sat, 23 Aug 1997 11:21:26 -0600 (MDT) Message-Id: <199708231721.LAA07412@Ilsa.StevesCafe.com> X-Mailer: exmh version 2.0gamma 1/27/96 From: Steve Passe To: Jaye Mathisen cc: current@FreeBSD.ORG, smp@FreeBSD.ORG Subject: Re: SMP problem. In-reply-to: Your message of "Fri, 22 Aug 1997 17:27:32 PDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 23 Aug 1997 11:21:26 -0600 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hi, > Digital ZX6000, P6-200, 2CPU's, 256MB RAM, FreeBSD 3.0 cvsup'd from 8/20. > > I built the SMP-GENERIC kernel with the 1.2.1 DPT patches. > > System boots OK, makes it to "changing root to sd0a". > > Then prints: > > APIC_IO: routing 8254 via pin 2 > de0: enabling 100baseTX port > > And then nada. Locked up tight. Booting the UNI kernel works fine. > I can't get into DDB or anything. Since there are 2 unknowns here, the ZX6000, and the DPT patches, you need to seperate them. Idealy, you want to boot with a completely original SMP-generic and 'standard' scsi or ide card/disk. We need the output of "mptable -dmesg > file" run from the UP kernel. Start the UP kernel with the verbose (-v) switch, then run mptable as soon as logged in. I'm not sure about 8/20, it works here, but it has some not well tested stuff in it. From the web page: The 970815-SNAP is considered the most recent 'stable' snapshot. Past this date experimental work on lock pushdown is in progress. If you have NOT used FreeBSD SMP on your hardware before, start with the 970815 SNAP. After verifying that SMP works on your system you are encouraged to cvsup to the latest code and help exercise the lock changes. -- Steve Passe | powered by smp@csn.net | Symmetric MultiProcessor FreeBSD From owner-freebsd-current Sat Aug 23 10:52:56 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA06757 for current-outgoing; Sat, 23 Aug 1997 10:52:56 -0700 (PDT) Received: from earth.mat.net (root@earth.mat.net [206.246.122.2]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id KAA06748; Sat, 23 Aug 1997 10:52:48 -0700 (PDT) Received: from Journey2.mat.net (journey2.mat.net [206.246.122.116]) by earth.mat.net (8.6.12/8.6.12) with SMTP id NAA07061; Sat, 23 Aug 1997 13:52:39 -0400 Date: Sat, 23 Aug 1997 13:52:40 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@Journey2.mat.net To: Stefan Esser cc: Glenn Johnson , freebsd-current@FreeBSD.ORG Subject: Re: NCR SCSI will not boot In-Reply-To: <19970823100018.53031@mi.uni-koeln.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sat, 23 Aug 1997, Stefan Esser wrote: > On Aug 21, Chuck Robey wrote: > > On Thu, 21 Aug 1997, Glenn Johnson wrote: > > > > > ncr0: rev 0x11 int a irq 11 on pci0.14.0 > > > ncr0: minsync=25, maxsync=206, maxoffs=8, 128 dwords burst, large dma fifo > > A rev. 0x11 chip ? > > Well, looking at a message Chuck sent before: > > > ncr0: rev 0x11 int a irq 10 on pci0.20.0 > > I need to make sure, that there is not a problem > with that particular revision of the chip. Does > the driver work with rev 0x11 somewhere, or is it > only 0x10 or (don't know if it exists) 0x12, that > works ??? That's interesting, Stefan. The board I swapped in that works is a rev 13 board, according to dmesg: ncr0: rev 0x13 int a irq 10 on pci0.20.0 The rev 11 board was the original one. > > Regards, STefan > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-current Sat Aug 23 10:56:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA07042 for current-outgoing; Sat, 23 Aug 1997 10:56:44 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA07010; Sat, 23 Aug 1997 10:56:34 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id DAA15973; Sun, 24 Aug 1997 03:51:13 +1000 Date: Sun, 24 Aug 1997 03:51:13 +1000 From: Bruce Evans Message-Id: <199708231751.DAA15973@godzilla.zeta.org.au> To: current@freebsd.org Subject: old applications broken by issetugid() in libtermcap Cc: ache@freebsd.org Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk libtermcap.so should have a new version number now that it calls issetugid(). Some of my old applications (linked to libc.so.2.2 and libtermcap.so.2.1) are broken because issetugid() isn't in libc.so.2.2. Bruce From owner-freebsd-current Sat Aug 23 13:17:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA12416 for current-outgoing; Sat, 23 Aug 1997 13:17:33 -0700 (PDT) Received: from Octopussy.MI.Uni-Koeln.DE (Octopussy.MI.Uni-Koeln.DE [134.95.166.20]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id NAA12411 for ; Sat, 23 Aug 1997 13:17:30 -0700 (PDT) Received: from x14.mi.uni-koeln.de ([134.95.219.124]) by Octopussy.MI.Uni-Koeln.DE with SMTP id AA26673 (5.67b/IDA-1.5 for ); Sat, 23 Aug 1997 22:17:16 +0200 Received: (from se@localhost) by x14.mi.uni-koeln.de (8.8.7/8.6.9) id WAA00618; Sat, 23 Aug 1997 22:17:11 +0200 (CEST) X-Face: " Date: Sat, 23 Aug 1997 22:17:08 +0200 From: Stefan Esser To: Chuck Robey Cc: Glenn Johnson , freebsd-current@FreeBSD.ORG Subject: Re: NCR SCSI will not boot References: <19970823100018.53031@mi.uni-koeln.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.74 In-Reply-To: ; from Chuck Robey on Sat, Aug 23, 1997 at 01:52:40PM -0400 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Aug 23, Chuck Robey wrote: > That's interesting, Stefan. The board I swapped in that works is a rev 13 > board, according to dmesg: > > ncr0: rev 0x13 int a irq 10 on pci0.20.0 > > The rev 11 board was the original one. Ok. I'll make the 825a rev 0x13 and up use the on-chip SRAM, and will disable that feature for earlier revisions ... Thanks for the information ! Regards, STefan From owner-freebsd-current Sat Aug 23 14:02:55 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA13811 for current-outgoing; Sat, 23 Aug 1997 14:02:55 -0700 (PDT) Received: from sumatra.americantv.com (sumatra.americantv.com [207.170.17.37]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id OAA13806 for ; Sat, 23 Aug 1997 14:02:52 -0700 (PDT) Received: from right.PCS (right.PCS [148.105.10.31]) by sumatra.americantv.com (8.8.5/8.8.5) with ESMTP id QAA00614; Sat, 23 Aug 1997 16:23:20 -0500 (CDT) Received: (jlemon@localhost) by right.PCS (8.6.13/8.6.4) id QAA13331; Sat, 23 Aug 1997 16:04:11 -0500 Message-ID: <19970823160411.14726@right.PCS> Date: Sat, 23 Aug 1997 16:04:11 -0500 From: Jonathan Lemon To: A Joseph Koshy Cc: freebsd-current@FreeBSD.ORG Subject: Re: Build failure: DOSCMD uses -Bstatic -lX11 References: <199708230948.CAA06849@palrel1.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.61.1 In-Reply-To: <199708230948.CAA06849@palrel1.hp.com>; from A Joseph Koshy on Aug 08, 1997 at 03:16:16PM +0530 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Aug 08, 1997 at 03:16:16PM +0530, A Joseph Koshy wrote: > > Running -current as of a day back: > > DOSCMD used -Bstatic for its compiles, and tries to link with -lX11 > if ${X11BASE} is present. > > By default the XFree86 lib/ directory contains only shared libraries > (the static versions of the libraries are packaged in the programmers > bundle X33prog.tgz). > > This is an added dependency to the build process. Why do we need -lX11 > to build the doscmd kernel? It doesn't require X11 to be built, per se. However, X11 support is a compile-time option, so I tried to get smart, and automatically compile in X11 support if ${X11BASE} was present. The other option would be to always compile it without X, which I dislike. Perhaps I should make the X11 compile option dependent on the existence of both ${X11BASE}/lib/libX11.a, and ${X11BASE}/include? -- Jonathan From owner-freebsd-current Sat Aug 23 16:05:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA19441 for current-outgoing; Sat, 23 Aug 1997 16:05:03 -0700 (PDT) Received: from mail.cdsnet.net (mail.cdsnet.net [204.118.244.5]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id QAA19323; Sat, 23 Aug 1997 16:03:06 -0700 (PDT) Received: from mail.cdsnet.net (mail.cdsnet.net [204.118.244.5]) by mail.cdsnet.net (8.8.6/8.8.6) with SMTP id QAA28983; Sat, 23 Aug 1997 16:03:04 -0700 (PDT) Date: Sat, 23 Aug 1997 16:03:04 -0700 (PDT) From: Jaye Mathisen To: "Thomas D. Dean" cc: current@FreeBSD.ORG, smp@FreeBSD.ORG Subject: Re: SMP problem. In-Reply-To: <33FE47D4.3F54BC7E@ix.netcom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Yes, my kernel had only my devices. I'll try a couple other suggestions. On Fri, 22 Aug 1997, Thomas D. Dean wrote: > I assume you booted -c and disabled all the unused devices. > > My Celebris XL hangs, unless I disable some of the probed > devces. > From owner-freebsd-current Sat Aug 23 16:22:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA20233 for current-outgoing; Sat, 23 Aug 1997 16:22:04 -0700 (PDT) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id QAA20227 for ; Sat, 23 Aug 1997 16:21:59 -0700 (PDT) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id BAA25611 for freebsd-current@FreeBSD.ORG; Sun, 24 Aug 1997 01:21:58 +0200 Received: (from j@localhost) by uriah.heep.sax.de (8.8.7/8.8.5) id AAA14708; Sun, 24 Aug 1997 00:59:20 +0200 (MET DST) Message-ID: <19970824005920.HA61511@uriah.heep.sax.de> Date: Sun, 24 Aug 1997 00:59:20 +0200 From: j@uriah.heep.sax.de (J Wunsch) To: freebsd-current@FreeBSD.ORG Subject: Re: Build failure: DOSCMD uses -Bstatic -lX11 References: <199708230948.CAA06849@palrel1.hp.com> <19970823160411.14726@right.PCS> X-Mailer: Mutt 0.60_p2-3,5,8-9 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <19970823160411.14726@right.PCS>; from Jonathan Lemon on Aug 23, 1997 16:04:11 -0500 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Jonathan Lemon wrote: > It doesn't require X11 to be built, per se. However, X11 support is a > compile-time option, so I tried to get smart, and automatically compile > in X11 support if ${X11BASE} was present. The other option would be > to always compile it without X, which I dislike. Why do you compile it static at all? -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-current Sat Aug 23 18:07:14 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA25875 for current-outgoing; Sat, 23 Aug 1997 18:07:14 -0700 (PDT) Received: from phaeton.artisoft.com (phaeton.Artisoft.COM [198.17.250.50]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id SAA25833; Sat, 23 Aug 1997 18:07:04 -0700 (PDT) Received: (from terry@localhost) by phaeton.artisoft.com (8.6.11/8.6.9) id RAA05197; Sat, 23 Aug 1997 17:57:37 -0700 From: Terry Lambert Message-Id: <199708240057.RAA05197@phaeton.artisoft.com> Subject: Re: I've broken ping To: marcs@znep.com (Marc Slemko) Date: Sat, 23 Aug 1997 17:57:37 -0700 (MST) Cc: sef@Kithrup.COM, julian@FreeBSD.ORG, current@FreeBSD.ORG In-Reply-To: from "Marc Slemko" at Aug 23, 97 01:19:45 am X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Running under 2.2-stable from a week or two ago, both the 2.2 and -current > ping are still broken. I am seeing it hang in pr_addr if the reverse isn't > resolvable; ^C wont kill it because it appears like a function call is > being restarted. I am confused about why this is happening. ISTR some > changes in FreeBSD WRT this that I haven't had time to follow. > > Changing the sigaction() back to a signal() fixes this particular case. > The signal() man page says function calls will be restarted, but the > sigaction() man page implies they won't without SA_RESTART. That follows > with what I am aware that recent BSD code does. It doesn't seem to fit > with what I am seeing. We went over the whole signal fiasco a while back. Restart depends on the compatability interface use to set the thing up. You could have equally done: siginterrupt( SIGINT, 1); siginterrupt( SIGALRM, 1); to stop them restarting, and left it "signal()". Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers. From owner-freebsd-current Sat Aug 23 18:09:41 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA26068 for current-outgoing; Sat, 23 Aug 1997 18:09:41 -0700 (PDT) Received: from phaeton.artisoft.com (phaeton.Artisoft.COM [198.17.250.50]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id SAA26061; Sat, 23 Aug 1997 18:09:35 -0700 (PDT) Received: (from terry@localhost) by phaeton.artisoft.com (8.6.11/8.6.9) id SAA05212; Sat, 23 Aug 1997 18:01:06 -0700 From: Terry Lambert Message-Id: <199708240101.SAA05212@phaeton.artisoft.com> Subject: Re: NCR SCSI will not boot To: se@FreeBSD.ORG (Stefan Esser) Date: Sat, 23 Aug 1997 18:01:06 -0700 (MST) Cc: chuckr@glue.umd.edu, gjohnson@nola.srrc.usda.gov, freebsd-current@FreeBSD.ORG In-Reply-To: <19970823221708.01424@mi.uni-koeln.de> from "Stefan Esser" at Aug 23, 97 10:17:08 pm X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > That's interesting, Stefan. The board I swapped in that works is a rev 13 > > board, according to dmesg: > > > > ncr0: rev 0x13 int a irq 10 on pci0.20.0 > > > > The rev 11 board was the original one. > > Ok. I'll make the 825a rev 0x13 and up use the > on-chip SRAM, and will disable that feature for > earlier revisions ... > > Thanks for the information ! Is this across the board? I have a rev 2 53c810, and it's working right now... when did the SRAM usage go in? Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers. From owner-freebsd-current Sat Aug 23 20:37:46 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id UAA03009 for current-outgoing; Sat, 23 Aug 1997 20:37:46 -0700 (PDT) Received: from sendero-ppp.i-connect.net (sendero-ppp.i-Connect.Net [206.190.143.100]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id UAA02998 for ; Sat, 23 Aug 1997 20:37:42 -0700 (PDT) Received: (qmail 7740 invoked by uid 1000); 24 Aug 1997 03:38:01 -0000 Message-ID: X-Mailer: XFMail 1.2-alpha [p0] on FreeBSD X-Priority: 1 (High) Priority: urgent Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Date: Sat, 23 Aug 1997 20:38:01 -0700 (PDT) Organization: Atlas Telecom From: Simon Shapiro To: Freebsd-current@freebsd.org, freebsd-hackers@freebsd.org Subject: Panic During Install - FFS Bug? Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi Y'all, 3.0-CURRENT as of last night (23-Aug-97) In installing -current on a new machine, it panics during installing packages, pretty much at random. Finally got enough installed to put a kernel with ddb to see the trace: vgonel + 9f getnewvnode + b3 ffs_vget ffs_valloc ufs_makeinode ufs_create vn_open open syscall Xsyscall Crash due to reference to data at location 0x04. Calling process was cpio. Who do I talk to about that? BTW, 2 points: * This happens in single-user from the boot floppy, single user kernel.GENERIC, multi-user kernel.GENERIC or kernel.DPT. * Under normal, even very heavy load, including massive cpio copies, even concurrent ones, this does not happen. Simon