From owner-cvs-all Sun Dec 1 0: 3: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5F0937B401; Sun, 1 Dec 2002 00:02:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8208743E9C; Sun, 1 Dec 2002 00:02:59 -0800 (PST) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB17x1mV018278; Sat, 30 Nov 2002 23:59:01 -0800 (PST) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB17x1nN018277; Sat, 30 Nov 2002 23:59:01 -0800 (PST) Message-Id: <200212010759.gB17x1nN018277@repoman.freebsd.org> From: Scott Long Date: Sat, 30 Nov 2002 23:59:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/aic7xxx aic79xx_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG scottl 2002/11/30 23:59:01 PST Modified files: sys/dev/aic7xxx aic79xx_pci.c Log: Implement workaround for broken busfree-rev in the A4. HP -> CPQ Rearrange IDs to better match which chips they use. Convert to uniform product description strings. Simplify 7901A setup function. Add the NONPACKFIFO_BUG and PACED_NEGTABLE_BUG entries for the A. Add rev B bugs and features. The double write workaround for CURRSCB is only required if abort pending is set. Remove this work around and set the abort pending bug bit on the B at least until we have better confirmation that the double write is always safe. Add updated H2B identifiers Move IOCell paramters into softc and add a hook for the OSM to modify these as well as other settings prior to committing them to the chip. SLEW -> SLEWRATE PREQDIS in DEVCONFIG1 went away after the A2. Remove all code that references this bit. This is especially important since this bit was reused in the B for a different HW fix workaround. Properly set the AHD_NEW_IOCELL_OPTS and AHD_NEW_DFCNTRL_OPTS features for the B. Remove stray/random extra 7901A generic PCI table entry. Also switch the correct 7901A generic entry to use ID_ALL_MASK since we can only differentiate the 7901A from the 7902 by checking for a "type field" of 0xE. Set AHD_INTCOLLISIONT_BUG for the Rev B. Set the PREQDIS bit in DEVCONFIG1 for the B. The bit is misnamed, but seems to disable a work-around that breaks on the B on PCI busses. Add a routine for testing memory mapped register access. This will hopefully detect things like buggy via chipsets so that the OSM can fallback to using I/O mapped access when memory mapped I/O simply will not work. Approved by: re (blanket) Revision Changes Path 1.5 +148 -69 src/sys/dev/aic7xxx/aic79xx_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 0:17:36 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E011B37B401; Sun, 1 Dec 2002 00:17:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A029843E9C; Sun, 1 Dec 2002 00:17:35 -0800 (PST) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB18DbmV019080; Sun, 1 Dec 2002 00:13:37 -0800 (PST) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB18Db87019079; Sun, 1 Dec 2002 00:13:37 -0800 (PST) Message-Id: <200212010813.gB18Db87019079@repoman.freebsd.org> From: Scott Long Date: Sun, 1 Dec 2002 00:13:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/aic7xxx aic79xx.c aic79xx.h aic79xx.reg aic79xx.seq X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG scottl 2002/12/01 00:13:37 PST Modified files: sys/dev/aic7xxx aic79xx.c aic79xx.h aic79xx.reg aic79xx.seq Log: Major update to the ahd driver to fix many bugs found in the previous version, plus add support for the new features found in the Rev B version of the chip. The changelog is quite long and can be provided on request. Major features include vastly improved protocol violation handling, full support for the 7902 Rev B, better parity error handling, and better packetized overrun handling, to name a few. Approved by: re (blanket) Revision Changes Path 1.6 +525 -176 src/sys/dev/aic7xxx/aic79xx.c 1.6 +154 -50 src/sys/dev/aic7xxx/aic79xx.h 1.4 +108 -22 src/sys/dev/aic7xxx/aic79xx.reg 1.4 +162 -124 src/sys/dev/aic7xxx/aic79xx.seq To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 0:24:48 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED98837B401; Sun, 1 Dec 2002 00:24:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E05443ECD; Sun, 1 Dec 2002 00:24:47 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB18KnmV019669; Sun, 1 Dec 2002 00:20:49 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB18Knop019668; Sun, 1 Dec 2002 00:20:49 -0800 (PST) Message-Id: <200212010820.gB18Knop019668@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 1 Dec 2002 00:20:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/conf GENERIC X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/12/01 00:20:49 PST Modified files: (Branch: RELENG_4) sys/pc98/conf GENERIC Log: MFC: Enable wd1, wd2 and wd3. Revision Changes Path 1.142.2.33 +3 -3 src/sys/pc98/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 0:35:56 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF22337B401; Sun, 1 Dec 2002 00:35:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DE5443EAF; Sun, 1 Dec 2002 00:35:55 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB18VvmV020296; Sun, 1 Dec 2002 00:31:57 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB18VvbJ020295; Sun, 1 Dec 2002 00:31:57 -0800 (PST) Message-Id: <200212010831.gB18VvbJ020295@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 1 Dec 2002 00:31:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/pc98/btx/lib Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/12/01 00:31:57 PST Modified files: (Branch: RELENG_4) sys/boot/pc98/btx/lib Makefile Log: MFi386: revision 1.3.2.2. Revision Changes Path 1.2.2.2 +0 -2 src/sys/boot/pc98/btx/lib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 0:37:19 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3293737B401; Sun, 1 Dec 2002 00:37:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2A7F43E4A; Sun, 1 Dec 2002 00:37:18 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB18XKmV020359; Sun, 1 Dec 2002 00:33:20 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB18XKem020358; Sun, 1 Dec 2002 00:33:20 -0800 (PST) Message-Id: <200212010833.gB18XKem020358@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sun, 1 Dec 2002 00:33:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/aleph/files patch-src::plt::lib::cclk.cxx X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/12/01 00:33:20 PST Added files: lang/aleph/files patch-src::plt::lib::cclk.cxx Log: fix build on -current PR: 45836 Submitted by: Stefan Farfeleder Revision Changes Path 1.1 +22 -0 ports/lang/aleph/files/patch-src::plt::lib::cclk.cxx (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 0:48: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87DAE37B401; Sun, 1 Dec 2002 00:48:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38F8C43EBE; Sun, 1 Dec 2002 00:48:03 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB18i4mV020998; Sun, 1 Dec 2002 00:44:04 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB18i4Ag020997; Sun, 1 Dec 2002 00:44:04 -0800 (PST) Message-Id: <200212010844.gB18i4Ag020997@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 1 Dec 2002 00:44:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/12/01 00:44:04 PST Modified files: (Branch: RELENG_4) release Makefile Log: MFC: Use ${RD}/trees/bin/boot/loader for kern.flp instead of /boot/loader. Revision Changes Path 1.536.2.101 +2 -2 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 1: 5: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 534BE37B401; Sun, 1 Dec 2002 01:05:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 046F643EB2; Sun, 1 Dec 2002 01:05:08 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1919mV022400; Sun, 1 Dec 2002 01:01:09 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB191972022399; Sun, 1 Dec 2002 01:01:09 -0800 (PST) Message-Id: <200212010901.gB191972022399@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 1 Dec 2002 01:01:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules Makefile.inc src/sys/modules/aic7xxx Makefile.inc src/sys/modules/aic7xxx/ahc Makefile.inc src/sys/modules/bktr Makefile.inc src/sys/modules/firewire Makefile.inc src/sys/modules/msdos Makefile src/sys/modules/pmc ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/12/01 01:01:09 PST Modified files: (Branch: RELENG_4) sys/modules Makefile.inc sys/modules/msdos Makefile sys/modules/pmc Makefile sys/modules/sound/driver/mss Makefile sys/modules/sound/driver/sbc Makefile sys/modules/splash/bmp Makefile sys/modules/syscons/apm Makefile sys/modules/syscons/daemon Makefile sys/modules/syscons/snake Makefile sys/modules/syscons/star Makefile Added files: (Branch: RELENG_4) sys/modules/aic7xxx Makefile.inc sys/modules/aic7xxx/ahc Makefile.inc sys/modules/bktr Makefile.inc sys/modules/firewire Makefile.inc Log: MFC: Move adding -DPC98 to CFLAGS from each modules to sys/modules/Makefile.inc. Revision Changes Path 1.2.2.2 +4 -0 src/sys/modules/Makefile.inc 1.1.2.1 +3 -0 src/sys/modules/aic7xxx/Makefile.inc (new) 1.1.2.1 +3 -0 src/sys/modules/aic7xxx/ahc/Makefile.inc (new) 1.1.2.1 +3 -0 src/sys/modules/bktr/Makefile.inc (new) 1.1.2.1 +3 -0 src/sys/modules/firewire/Makefile.inc (new) 1.10.2.2 +0 -4 src/sys/modules/msdos/Makefile 1.1.2.2 +0 -4 src/sys/modules/pmc/Makefile 1.1.2.4 +1 -5 src/sys/modules/sound/driver/mss/Makefile 1.1.2.3 +1 -5 src/sys/modules/sound/driver/sbc/Makefile 1.2.2.2 +0 -4 src/sys/modules/splash/bmp/Makefile 1.1.4.2 +0 -4 src/sys/modules/syscons/apm/Makefile 1.6.2.2 +1 -5 src/sys/modules/syscons/daemon/Makefile 1.9.2.2 +1 -5 src/sys/modules/syscons/snake/Makefile 1.9.2.2 +1 -5 src/sys/modules/syscons/star/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 2: 4: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42BCA37B401; Sun, 1 Dec 2002 02:04:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7B1B43EC2; Sun, 1 Dec 2002 02:03:59 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1A01mV025804; Sun, 1 Dec 2002 02:00:01 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1A01ua025803; Sun, 1 Dec 2002 02:00:01 -0800 (PST) Message-Id: <200212011000.gB1A01ua025803@repoman.freebsd.org> From: Akinori MUSHA Date: Sun, 1 Dec 2002 02:00:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gnat Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/12/01 02:00:01 PST Modified files: lang/gnat Makefile Log: The distributed bootstrapping compiler requires libc.so.4, so add misc/compat4x as dependency. Submitted by: bento Revision Changes Path 1.33 +1 -0 ports/lang/gnat/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 2: 7:51 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6691137B401; Sun, 1 Dec 2002 02:07:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 175C343E9C; Sun, 1 Dec 2002 02:07:50 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1A3pmV025955; Sun, 1 Dec 2002 02:03:51 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1A3p9S025954; Sun, 1 Dec 2002 02:03:51 -0800 (PST) Message-Id: <200212011003.gB1A3p9S025954@repoman.freebsd.org> From: Akinori MUSHA Date: Sun, 1 Dec 2002 02:03:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gnat Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/12/01 02:03:51 PST Modified files: lang/gnat Makefile Log: Add the misc/compat4x dependency only if ${OSVERSION} >= 500000. Revision Changes Path 1.34 +2 -0 ports/lang/gnat/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 3:17:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAC9537B401; Sun, 1 Dec 2002 03:17:31 -0800 (PST) Received: from angelica.unixdaemons.com (angelica.unixdaemons.com [209.148.64.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83E0943EA9; Sun, 1 Dec 2002 03:17:30 -0800 (PST) (envelope-from hiten@angelica.unixdaemons.com) Received: from angelica.unixdaemons.com (hiten@localhost.unixdaemons.com [127.0.0.1]) by angelica.unixdaemons.com (8.12.5/8.12.1) with ESMTP id gB1BHRSu064895; Sun, 1 Dec 2002 06:17:27 -0500 (EST) X-Authentication-Warning: angelica.unixdaemons.com: Host hiten@localhost.unixdaemons.com [127.0.0.1] claimed to be angelica.unixdaemons.com Received: (from hiten@localhost) by angelica.unixdaemons.com (8.12.5/8.12.1/Submit) id gB1BHRLT064894; Sun, 1 Dec 2002 06:17:27 -0500 (EST) (envelope-from hiten) Date: Sun, 1 Dec 2002 06:17:27 -0500 From: Hiten Pandya To: Ian Dowse Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/md md.c Message-ID: <20021201111727.GB63822@angelica.unixdaemons.com> References: <200211302203.gAUM3rhb080804@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200211302203.gAUM3rhb080804@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD i386 X-Public-Key: http://www.pittgoth.com/~hiten/pubkey.asc X-URL: http://www.unixdaemons.com/~hiten X-PGP: http://pgp.mit.edu:11371/pks/lookup?search=Hiten+Pandya&op=index Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Nov 30, 2002 at 02:03:53PM -0800, Ian Dowse wrote the words in effect of: > iedowse 2002/11/30 14:03:53 PST > > Modified files: > sys/dev/md md.c > Log: > Move the check for the MD_SHUTDOWN flag to before the tsleep() call > in the per-device kthread. This ensures that synchronisation with > mddestroy() succeeds even if the kthread was not waiting in tsleep() > at the time of the wakeup(). Among other things, this fixes the > problem of mdconfig getting stuck when an attempt is made to use a > zero-length file as a vnode-type backing store. Thanks! -- Hiten Pandya (hiten@unixdaemons.com, hiten@uk.FreeBSD.org) http://www.unixdaemons.com/~hiten/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 5: 0:43 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3258837B401; Sun, 1 Dec 2002 05:00:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D976243EB2; Sun, 1 Dec 2002 05:00:41 -0800 (PST) (envelope-from ue@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1CugmV036487; Sun, 1 Dec 2002 04:56:42 -0800 (PST) (envelope-from ue@repoman.freebsd.org) Received: (from ue@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1CugPe036484; Sun, 1 Dec 2002 04:56:42 -0800 (PST) Message-Id: <200212011256.gB1CugPe036484@repoman.freebsd.org> From: Udo Erdelhoff Date: Sun, 1 Dec 2002 04:56:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/early-adopter article.sgml src/release/doc/de_DE.ISO8859-1/hardware/common dev.sgml src/release/doc/de_DE.ISO8859-1/installation/common upgrade.sgml src/release/doc/de_DE.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/12/01 04:56:42 PST Modified files: release/doc/de_DE.ISO8859-1/early-adopter article.sgml release/doc/de_DE.ISO8859-1/hardware/common dev.sgml release/doc/de_DE.ISO8859-1/installation/common upgrade.sgml release/doc/de_DE.ISO8859-1/relnotes/common new.sgml Log: MFbed: track changes in the english version and general cleanup early-adopter/article.sgml: 1.5 -> 1.7 hardware/common/dev.sgml: 1.115 -> 1.116 installation/common/upgrade.sgml: 1.9 -> 1.10 relnotes/common/new.sgml: 1.455 -> 1.460 Approved by: re (blanket) Revision Changes Path 1.5 +35 -9 src/release/doc/de_DE.ISO8859-1/early-adopter/article.sgml 1.13 +14 -2 src/release/doc/de_DE.ISO8859-1/hardware/common/dev.sgml 1.3 +45 -24 src/release/doc/de_DE.ISO8859-1/installation/common/upgrade.sgml 1.22 +127 -155 src/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 5:42:26 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A493937B401; Sun, 1 Dec 2002 05:42:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5324643E9C; Sun, 1 Dec 2002 05:42:25 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1DcPmV039150; Sun, 1 Dec 2002 05:38:25 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1DcPWM039149; Sun, 1 Dec 2002 05:38:25 -0800 (PST) Message-Id: <200212011338.gB1DcPWM039149@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 1 Dec 2002 05:38:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make job.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/12/01 05:38:25 PST Modified files: usr.bin/make job.c Log: Bootstrapping aid from pre-kqueue(2) systems, e.g. 4.0-RELEASE. Submitted by: jmallett Approved by: re (bmah) Revision Changes Path 1.48 +2 -0 src/usr.bin/make/job.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 5:43:30 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AEF837B401; Sun, 1 Dec 2002 05:43:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0074243EB2; Sun, 1 Dec 2002 05:43:29 -0800 (PST) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1DdTmV039255; Sun, 1 Dec 2002 05:39:29 -0800 (PST) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1DdTgc039254; Sun, 1 Dec 2002 05:39:29 -0800 (PST) Message-Id: <200212011339.gB1DdTgc039254@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 1 Dec 2002 05:39:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/vinum article.sgml doc/en_US.ISO8859-1/books/developers-handbook/vm chapter.sgml doc/en_US.ISO8859-1/books/faq book.sgml doc/en_US.ISO8859-1/books/handbook/kernelconfig chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG blackend 2002/12/01 05:39:29 PST Modified files: en_US.ISO8859-1/articles/vinum article.sgml en_US.ISO8859-1/books/developers-handbook/vm chapter.sgml en_US.ISO8859-1/books/faq book.sgml en_US.ISO8859-1/books/handbook/kernelconfig chapter.sgml Log: s/softupdates/Soft Updates/ Submitted by: Hiten Pandya Revision Changes Path 1.10 +1 -1 doc/en_US.ISO8859-1/articles/vinum/article.sgml 1.6 +1 -1 doc/en_US.ISO8859-1/books/developers-handbook/vm/chapter.sgml 1.498 +11 -11 doc/en_US.ISO8859-1/books/faq/book.sgml 1.89 +1 -1 doc/en_US.ISO8859-1/books/handbook/kernelconfig/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 6: 5:58 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B33137B401; Sun, 1 Dec 2002 06:05:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FCEF43EC2; Sun, 1 Dec 2002 06:05:57 -0800 (PST) (envelope-from stephane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1E1vmV040522; Sun, 1 Dec 2002 06:01:57 -0800 (PST) (envelope-from stephane@repoman.freebsd.org) Received: (from stephane@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1E1vfh040521; Sun, 1 Dec 2002 06:01:57 -0800 (PST) Message-Id: <200212011401.gB1E1vfh040521@repoman.freebsd.org> From: Stephane Legrand Date: Sun, 1 Dec 2002 06:01:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/fr/news includes.sgml news.sgml press-rel-1.sgml press-rel-2.sgml press-rel-3.sgml press-rel-4.sgml press-rel-5.sgml pressreleases.sgml sou1999.sgml webchanges.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG stephane 2002/12/01 06:01:57 PST Added files: fr/news includes.sgml news.sgml press-rel-1.sgml press-rel-2.sgml press-rel-3.sgml press-rel-4.sgml press-rel-5.sgml pressreleases.sgml sou1999.sgml webchanges.sgml Log: Another bunch of translations. fr/news/includes.sgml: MFen 1.8 fr/news/news.sgml: MFen 1.35 fr/news/press-rel-5.sgml: MFen 1.6 fr/news/press-rel-4.sgml: MFen 1.4 fr/news/press-rel-3.sgml: MFen 1.6 fr/news/press-rel-2.sgml: MFen 1.9 fr/news/press-rel-1.sgml: MFen 1.7 fr/news/pressreleases.sgml: MFen 1.7 fr/news/sou1999.sgml: MFen 1.6 fr/news/webchanges.sgml: MFen 1.58 Approved by: gioria (mentor) Revision Changes Path 1.1 +11 -0 www/fr/news/includes.sgml (new) 1.1 +109 -0 www/fr/news/news.sgml (new) 1.1 +67 -0 www/fr/news/press-rel-1.sgml (new) 1.1 +97 -0 www/fr/news/press-rel-2.sgml (new) 1.1 +98 -0 www/fr/news/press-rel-3.sgml (new) 1.1 +280 -0 www/fr/news/press-rel-4.sgml (new) 1.1 +140 -0 www/fr/news/press-rel-5.sgml (new) 1.1 +81 -0 www/fr/news/pressreleases.sgml (new) 1.1 +372 -0 www/fr/news/sou1999.sgml (new) 1.1 +300 -0 www/fr/news/webchanges.sgml (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 6: 7:13 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8945E37B401; Sun, 1 Dec 2002 06:07:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1571A43EBE; Sun, 1 Dec 2002 06:07:11 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1E3BmV040752; Sun, 1 Dec 2002 06:03:11 -0800 (PST) (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1E3BHD040751; Sun, 1 Dec 2002 06:03:11 -0800 (PST) Message-Id: <200212011403.gB1E3BHD040751@repoman.freebsd.org> From: Maxim Sobolev Date: Sun, 1 Dec 2002 06:03:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netns ns.h ns_if.h src/sys/net ethernet.h if_gre.c if_gre.h src/sys/netatalk at.h src/sys/conf files options src/sys/netinet in.h in_proto.c ip_gre.c ip_gre.h src/sys/modules/if_gre Makefile src/sys/modules Makefile ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/12/01 06:03:11 PST Modified files: (Branch: RELENG_4) sys/netns ns_if.h ns.h sys/net ethernet.h sys/netatalk at.h sys/conf options files sys/netinet in_proto.c in.h sys/modules Makefile sys/i386/conf LINT share/man/man4 Makefile Added files: (Branch: RELENG_4) sys/net if_gre.c if_gre.h sys/netinet ip_gre.c ip_gre.h sys/modules/if_gre Makefile share/man/man4 gre.4 Log: MFC: gre(4) kernel driver and associated changes. Revision Changes Path 1.83.2.53 +1 -0 src/share/man/man4/Makefile 1.1.2.1 +279 -0 src/share/man/man4/gre.4 (new) 1.340.2.125 +2 -0 src/sys/conf/files 1.191.2.45 +1 -0 src/sys/conf/options 1.749.2.134 +3 -0 src/sys/i386/conf/LINT 1.110.2.63 +1 -0 src/sys/modules/Makefile 1.3.2.1 +17 -0 src/sys/modules/if_gre/Makefile (new) 1.12.2.8 +257 -7 src/sys/net/ethernet.h 1.9.2.1 +802 -0 src/sys/net/if_gre.c (new) 1.6.2.1 +174 -0 src/sys/net/if_gre.h (new) 1.5.6.1 +2 -8 src/sys/netatalk/at.h 1.48.2.9 +6 -1 src/sys/netinet/in.h 1.53.2.5 +13 -1 src/sys/netinet/in_proto.c 1.7.2.1 +352 -0 src/sys/netinet/ip_gre.c (new) 1.2.2.1 +43 -0 src/sys/netinet/ip_gre.h (new) 1.13.2.1 +7 -7 src/sys/netns/ns.h 1.12.2.1 +5 -5 src/sys/netns/ns_if.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 6:24: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CF3B37B401; Sun, 1 Dec 2002 06:24:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39DED43EB2; Sun, 1 Dec 2002 06:24:08 -0800 (PST) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1EK8mV041961; Sun, 1 Dec 2002 06:20:08 -0800 (PST) (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1EK8AC041960; Sun, 1 Dec 2002 06:20:08 -0800 (PST) Message-Id: <200212011420.gB1EK8AC041960@repoman.freebsd.org> From: Thomas Quinot Date: Sun, 1 Dec 2002 06:20:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-all.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG thomas 2002/12/01 06:20:08 PST Modified files: sys/dev/ata ata-all.c Log: In ata_reinit, when ata_getparam fails for a new device (indicating that the device is not actually present), clear the corresponding bit in the ch->devices bitmap. This resolves a panic that occurred with ATAPI/CAM after an APM suspend/resume, when the ATA hardware would erroneously report an extra ATAPI device. Approved by: re, sos Reviewed by: roberto MFC after: 7 days Revision Changes Path 1.159 +5 -4 src/sys/dev/ata/ata-all.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 7: 4:49 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32D5937B401; Sun, 1 Dec 2002 07:04:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D688543EB2; Sun, 1 Dec 2002 07:04:47 -0800 (PST) (envelope-from anders@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1F0mmV044426; Sun, 1 Dec 2002 07:00:48 -0800 (PST) (envelope-from anders@repoman.freebsd.org) Received: (from anders@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1F0mPk044425; Sun, 1 Dec 2002 07:00:48 -0800 (PST) Message-Id: <200212011500.gB1F0mPk044425@repoman.freebsd.org> From: Anders Nordby Date: Sun, 1 Dec 2002 07:00:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/cclient/files patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anders 2002/12/01 07:00:47 PST Modified files: mail/cclient/files patch-ab Log: Make port build on -current/sparc64. PR: 39258 Submitted by: jake Revision Changes Path 1.11 +3 -3 ports/mail/cclient/files/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 7:12:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B0B437B401; Sun, 1 Dec 2002 07:12:42 -0800 (PST) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F18043E9C; Sun, 1 Dec 2002 07:12:41 -0800 (PST) (envelope-from eischen@pcnet1.pcnet.com) Received: from localhost (eischen@localhost) by mail.pcnet.com (8.12.3/8.12.1) with ESMTP id gB1FCe2i021447; Sun, 1 Dec 2002 10:12:40 -0500 (EST) Date: Sun, 1 Dec 2002 10:12:40 -0500 (EST) From: Daniel Eischen To: Akinori MUSHA Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/lang/gnat Makefile In-Reply-To: <200212011000.gB1A01ua025803@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 1 Dec 2002, Akinori MUSHA wrote: > knu 2002/12/01 02:00:01 PST > > Modified files: > lang/gnat Makefile > Log: > The distributed bootstrapping compiler requires libc.so.4, > so add misc/compat4x as dependency. I've got this fix, an upgrade to recently released version of gnat, and fixes to make it build in -current sitting in my local tree waiting for permission to commit. -- Dan Eischen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 7:51:50 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19B1537B401; Sun, 1 Dec 2002 07:51:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD72F43ED1; Sun, 1 Dec 2002 07:51:49 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1FlnmV047338; Sun, 1 Dec 2002 07:47:49 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1FlnkK047337; Sun, 1 Dec 2002 07:47:49 -0800 (PST) Message-Id: <200212011547.gB1FlnkK047337@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 1 Dec 2002 07:47:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom/bde g_bde_lock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/12/01 07:47:49 PST Modified files: sys/geom/bde g_bde_lock.c Log: Use unsigned for an index. Sponsored by: DARPA & NAI Labs. Approved by: re (blanket). Revision Changes Path 1.5 +7 -6 src/sys/geom/bde/g_bde_lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 7:54:49 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B37C37B401; Sun, 1 Dec 2002 07:54:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29E0443EBE; Sun, 1 Dec 2002 07:54:48 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1FommV047461; Sun, 1 Dec 2002 07:50:48 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1Fomi2047460; Sun, 1 Dec 2002 07:50:48 -0800 (PST) Message-Id: <200212011550.gB1Fomi2047460@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 1 Dec 2002 07:50:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom/bde g_bde_crypt.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/12/01 07:50:48 PST Modified files: sys/geom/bde g_bde_crypt.c Log: Conceiveably, there may exist an algorithm which can tell if a sequence of bytes are the output of AES/128/CBC or ARC4RANDOM. Encrypt the random data with which we wipe when we get a BIO_DELETE to make such an algorithm useful. Sponsored by: DARPA & NAI Labs Approved by: re (blanket) Revision Changes Path 1.5 +7 -0 src/sys/geom/bde/g_bde_crypt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 7:57:32 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07A1137B401; Sun, 1 Dec 2002 07:57:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABC4D43E9C; Sun, 1 Dec 2002 07:57:31 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1FrVmV047571; Sun, 1 Dec 2002 07:53:31 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1FrV3x047570; Sun, 1 Dec 2002 07:53:31 -0800 (PST) Message-Id: <200212011553.gB1FrV3x047570@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 1 Dec 2002 07:53:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_kern.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/12/01 07:53:31 PST Modified files: sys/geom geom_kern.c Log: Fix a cut&past-o. Spotted by: yar Approved by: re (blanket) Revision Changes Path 1.15 +1 -1 src/sys/geom/geom_kern.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 7:58:40 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1299E37B401; Sun, 1 Dec 2002 07:58:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B577243EA9; Sun, 1 Dec 2002 07:58:39 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1FsdmV047629; Sun, 1 Dec 2002 07:54:39 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1FsdZj047628; Sun, 1 Dec 2002 07:54:39 -0800 (PST) Message-Id: <200212011554.gB1FsdZj047628@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 1 Dec 2002 07:54:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/12/01 07:54:39 PST Modified files: sys/geom geom.h Log: Use more mnemonic argument names in the access functions. Sponsored by: DARPA & NAI Labs Approved by: re (blanket) Revision Changes Path 1.37 +2 -2 src/sys/geom/geom.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 8: 1: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EF7C37B401; Sun, 1 Dec 2002 08:01:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F67543EA9; Sun, 1 Dec 2002 08:01:03 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1Fv3mV048078; Sun, 1 Dec 2002 07:57:03 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1Fv2nV048076; Sun, 1 Dec 2002 07:57:02 -0800 (PST) Message-Id: <200212011557.gB1Fv2nV048076@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 1 Dec 2002 07:57:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/gbde gbde.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/12/01 07:57:02 PST Modified files: sbin/gbde gbde.8 Log: De-danglify the manual page. Submitted by: ceri Approved by: re (blanket) Revision Changes Path 1.7 +6 -6 src/sbin/gbde/gbde.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 8: 2:30 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 287C637B401; Sun, 1 Dec 2002 08:02:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC3EA43E9C; Sun, 1 Dec 2002 08:02:28 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1FwSmV048154; Sun, 1 Dec 2002 07:58:28 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1FwSbK048153; Sun, 1 Dec 2002 07:58:28 -0800 (PST) Message-Id: <200212011558.gB1FwSbK048153@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 1 Dec 2002 07:58:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/gbde gbde.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/12/01 07:58:28 PST Modified files: sbin/gbde gbde.c Log: Synchronize usage() with reality. Semi-automatic handling of /dev prefix for device names. Sponsored by: DARPA & NAI Labs. Approved by: re (blanket) Revision Changes Path 1.5 +19 -8 src/sbin/gbde/gbde.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 8: 3:34 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D751437B401; Sun, 1 Dec 2002 08:03:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86A6143EAF; Sun, 1 Dec 2002 08:03:33 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1FxXmV048191; Sun, 1 Dec 2002 07:59:33 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1FxX0v048190; Sun, 1 Dec 2002 07:59:33 -0800 (PST) Message-Id: <200212011559.gB1FxX0v048190@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 1 Dec 2002 07:59:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 gbde.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/12/01 07:59:33 PST Modified files: share/man/man4 gbde.4 Log: De-danglify. Submitted by: ceri Approved by: re (blanket) Revision Changes Path 1.6 +18 -18 src/share/man/man4/gbde.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 8:11:56 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED25937B401; Sun, 1 Dec 2002 08:11:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 998DB43EBE; Sun, 1 Dec 2002 08:11:53 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1G7rmV048883; Sun, 1 Dec 2002 08:07:53 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1G7ren048882; Sun, 1 Dec 2002 08:07:53 -0800 (PST) Message-Id: <200212011607.gB1G7ren048882@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 1 Dec 2002 08:07:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/netgraph/bluetooth Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/12/01 08:07:53 PST Added files: sys/modules/netgraph/bluetooth Makefile.inc Log: Add Makefile.inc to include ../Makefile.inc. Approved by: re (rwatson) Revision Changes Path 1.1 +3 -0 src/sys/modules/netgraph/bluetooth/Makefile.inc (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 8:24:39 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3180237B404; Sun, 1 Dec 2002 08:24:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF20C43EBE; Sun, 1 Dec 2002 08:24:37 -0800 (PST) (envelope-from ue@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1GKbmV049681; Sun, 1 Dec 2002 08:20:37 -0800 (PST) (envelope-from ue@repoman.freebsd.org) Received: (from ue@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1GKbUP049680; Sun, 1 Dec 2002 08:20:37 -0800 (PST) Message-Id: <200212011620.gB1GKbUP049680@repoman.freebsd.org> From: Udo Erdelhoff Date: Sun, 1 Dec 2002 08:20:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/hardware/common dev.sgml src/release/doc/de_DE.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/12/01 08:20:37 PST Modified files: release/doc/de_DE.ISO8859-1/hardware/common dev.sgml release/doc/de_DE.ISO8859-1/relnotes/common new.sgml Log: MFbed: translation updates that were not yet available on cvsup2.de hardware/common/dev.sgml: 1.116 -> 1.117 relnotes/common/new.sgml: 1.460 -> 1.461 Revision Changes Path 1.14 +46 -4 src/release/doc/de_DE.ISO8859-1/hardware/common/dev.sgml 1.23 +16 -2 src/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 8:40: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1CED37B401 for ; Sun, 1 Dec 2002 08:40:07 -0800 (PST) Received: from mail.ruhr.de (in-ruhr4.ruhr.de [212.23.134.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 051BF43EB2 for ; Sun, 1 Dec 2002 08:40:05 -0800 (PST) (envelope-from ue@nathan.ruhr.de) Received: (qmail 10876 invoked by uid 10); 1 Dec 2002 16:40:03 -0000 Received: from nathan.internal (localhost [127.0.0.1]) by nathan.internal (8.12.6/8.12.6) with ESMTP id gB1GXKGM035758; Sun, 1 Dec 2002 17:33:20 +0100 (CET) (envelope-from ue@nathan.internal) Received: (from ue@localhost) by nathan.internal (8.12.6/8.12.6/Submit) id gB1GXJcB035757; Sun, 1 Dec 2002 17:33:19 +0100 (CET) Date: Sun, 1 Dec 2002 17:33:19 +0100 From: Udo Erdelhoff To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/de_DE.ISO8859-1/hardware/common dev.sgml src/release/doc/de_DE.ISO8859-1/relnotes/common new.sgml Message-ID: <20021201163319.GC214@nathan.ruhr.de> Mail-Followup-To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200212011620.gB1GKbUP049680@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200212011620.gB1GKbUP049680@repoman.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Dec 01, 2002 at 08:20:37AM -0800, Udo Erdelhoff wrote: > ue 2002/12/01 08:20:37 PST > > Modified files: > release/doc/de_DE.ISO8859-1/hardware/common dev.sgml > release/doc/de_DE.ISO8859-1/relnotes/common new.sgml > Log: > MFbed: translation updates that were not yet available on cvsup2.de > hardware/common/dev.sgml: 1.116 -> 1.117 > relnotes/common/new.sgml: 1.460 -> 1.461 > > Revision Changes Path > 1.14 +46 -4 src/release/doc/de_DE.ISO8859-1/hardware/common/dev.sgml > 1.23 +16 -2 src/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml Sigh... Approved by: re (blanket) -- "I don't want to run a company. I'm not good at managing people. You have a problem with the guy in the next cubicle? I don't care. Shoot him or something." -- Marc Andreesen, founder of Netscape, Rolling Stone, May 97 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 8:46:54 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB78E37B401; Sun, 1 Dec 2002 08:46:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51D1443E88; Sun, 1 Dec 2002 08:46:53 -0800 (PST) (envelope-from ue@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1GgrmV050970; Sun, 1 Dec 2002 08:42:53 -0800 (PST) (envelope-from ue@repoman.freebsd.org) Received: (from ue@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1GgrNG050969; Sun, 1 Dec 2002 08:42:53 -0800 (PST) Message-Id: <200212011642.gB1GgrNG050969@repoman.freebsd.org> From: Udo Erdelhoff Date: Sun, 1 Dec 2002 08:42:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/hardware/common dev.sgml src/release/doc/de_DE.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/12/01 08:42:53 PST Modified files: (Branch: RELENG_4) release/doc/de_DE.ISO8859-1/hardware/common dev.sgml release/doc/de_DE.ISO8859-1/relnotes/common new.sgml Log: MFbed: translation updates hardware/common/dev.sgml: 1.13.2.72 -> 1.13.2.73 relnotes/common/new.sgml: 1.22.2.309 -> 1.22.2.311 Revision Changes Path 1.1.2.8 +51 -2 src/release/doc/de_DE.ISO8859-1/hardware/common/dev.sgml 1.1.2.15 +25 -2 src/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 9:40:20 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 483C637B401; Sun, 1 Dec 2002 09:40:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA55F43EBE; Sun, 1 Dec 2002 09:40:18 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1HaImV054063; Sun, 1 Dec 2002 09:36:18 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1HaI9e054061; Sun, 1 Dec 2002 09:36:18 -0800 (PST) Message-Id: <200212011736.gB1HaI9e054061@repoman.freebsd.org> From: Bruce Evans Date: Sun, 1 Dec 2002 09:36:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/csu/i386-elf crt1.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/12/01 09:36:18 PST Modified files: lib/csu/i386-elf crt1.c Log: Backed out previous commit (alignment suitable for RELENG_4) as planned since it has been MFC'ed. See the log message for the previous commit for more details. The alignment bug in gcc-3 has not been fixed, but it is not very serious and the previous commit just moved it (as intended). Approved by: re (murray) Revision Changes Path 1.11 +0 -33 src/lib/csu/i386-elf/crt1.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 9:49: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F5DF37B401; Sun, 1 Dec 2002 09:48:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE7A843EC2; Sun, 1 Dec 2002 09:48:57 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1HivmV055396; Sun, 1 Dec 2002 09:44:57 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1Hivop055395; Sun, 1 Dec 2002 09:44:57 -0800 (PST) Message-Id: <200212011744.gB1Hivop055395@repoman.freebsd.org> From: Jacques Vidrine Date: Sun, 1 Dec 2002 09:44:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/heimdal ChangeLog Makefile.in NEWS aclocal.m4 config.guess config.sub configure configure.in install-sh missing mkinstalldirs src/crypto/heimdal/admin Makefile.in ktutil.cat8 src/crypto/heimdal/appl Makefile.in ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2002/12/01 09:44:57 PST Modified files: (Branch: RELENG_4) crypto/heimdal ChangeLog Makefile.in NEWS aclocal.m4 config.guess config.sub configure configure.in install-sh missing mkinstalldirs crypto/heimdal/admin Makefile.in ktutil.cat8 crypto/heimdal/appl Makefile.in crypto/heimdal/appl/afsutil Makefile.in crypto/heimdal/appl/ftp ChangeLog Makefile.in crypto/heimdal/appl/ftp/common Makefile.in crypto/heimdal/appl/ftp/ftp Makefile.in ftp.c ftp.cat1 crypto/heimdal/appl/ftp/ftpd Makefile.in ftpd.cat8 ftpusers.cat5 crypto/heimdal/appl/kf Makefile.in kf.cat1 kfd.cat8 crypto/heimdal/appl/login Makefile.in crypto/heimdal/appl/push Makefile.in pfrom.cat1 push.cat8 crypto/heimdal/appl/rcp Makefile.in crypto/heimdal/appl/rsh Makefile.in crypto/heimdal/appl/su Makefile.in crypto/heimdal/appl/telnet ChangeLog Makefile.in crypto/heimdal/appl/telnet/libtelnet Makefile.in kerberos5.c crypto/heimdal/appl/telnet/telnet Makefile.in telnet.cat1 crypto/heimdal/appl/telnet/telnetd Makefile.in telnetd.cat8 crypto/heimdal/appl/test Makefile.in crypto/heimdal/cf sunos.m4 crypto/heimdal/doc Makefile.in crypto/heimdal/include Makefile.in make_crypto.c crypto/heimdal/include/kadm5 Makefile.in crypto/heimdal/kadmin ChangeLog Makefile.in kadm_conn.c kadmin.cat8 kadmind.8 kadmind.c kadmind.cat8 server.c version4.c crypto/heimdal/kdc Makefile.in connect.c hprop.cat8 hpropd.cat8 kaserver.c kdc.cat8 kstash.cat8 string2key.cat8 crypto/heimdal/kpasswd Makefile.in kpasswd.cat1 kpasswdd.cat8 crypto/heimdal/kuser Makefile.in kdestroy.cat1 kgetcred.cat1 kinit.1 kinit.cat1 klist.c klist.cat1 crypto/heimdal/lib Makefile.in crypto/heimdal/lib/45 Makefile.in crypto/heimdal/lib/asn1 Makefile.in crypto/heimdal/lib/auth Makefile.in crypto/heimdal/lib/auth/afskauthlib Makefile.in crypto/heimdal/lib/auth/pam Makefile.in crypto/heimdal/lib/auth/sia Makefile.in crypto/heimdal/lib/com_err Makefile.in crypto/heimdal/lib/gssapi Makefile.in crypto/heimdal/lib/hdb Makefile.in crypto/heimdal/lib/kadm5 ChangeLog Makefile.in ipropd_slave.c crypto/heimdal/lib/kafs Makefile.in kafs.cat3 crypto/heimdal/lib/krb5 Makefile.am Makefile.in changepw.c context.c keytab_any.c keytab_file.c keytab_keyfile.c krb5_appdefault.3 kuserok.c principal.c prompter_posix.c store_emem.c crypto/heimdal/lib/roken ChangeLog Makefile.am Makefile.in resolve.c crypto/heimdal/lib/sl Makefile.in crypto/heimdal/lib/vers Makefile.in crypto/heimdal/tools Makefile.in krb5-config.cat1 Log: MFC: Heimdal 0.5.1 Revision Changes Path 1.1.1.4.2.5 +32 -7 src/crypto/heimdal/ChangeLog 1.1.1.1.2.4 +5 -10 src/crypto/heimdal/Makefile.in 1.1.1.4.2.4 +14 -0 src/crypto/heimdal/NEWS 1.1.1.2.2.5 +6 -12 src/crypto/heimdal/aclocal.m4 1.1.1.1.2.4 +8 -15 src/crypto/heimdal/admin/Makefile.in 1.1.1.1.2.3 +9 -9 src/crypto/heimdal/admin/ktutil.cat8 1.1.1.1.2.4 +3 -4 src/crypto/heimdal/appl/Makefile.in 1.1.1.1.2.4 +8 -11 src/crypto/heimdal/appl/afsutil/Makefile.in 1.1.1.2.2.5 +4 -0 src/crypto/heimdal/appl/ftp/ChangeLog 1.1.1.1.2.4 +3 -4 src/crypto/heimdal/appl/ftp/Makefile.in 1.1.1.1.2.4 +3 -4 src/crypto/heimdal/appl/ftp/common/Makefile.in 1.1.1.1.2.4 +8 -15 src/crypto/heimdal/appl/ftp/ftp/Makefile.in 1.1.1.1.2.5 +4 -1 src/crypto/heimdal/appl/ftp/ftp/ftp.c 1.1.1.1.2.3 +122 -125 src/crypto/heimdal/appl/ftp/ftp/ftp.cat1 1.1.1.1.2.4 +8 -20 src/crypto/heimdal/appl/ftp/ftpd/Makefile.in 1.1.1.1.2.3 +30 -32 src/crypto/heimdal/appl/ftp/ftpd/ftpd.cat8 1.1.1.1.2.3 +4 -4 src/crypto/heimdal/appl/ftp/ftpd/ftpusers.cat5 1.1.1.1.2.4 +13 -26 src/crypto/heimdal/appl/kf/Makefile.in 1.1.1.1.2.3 +4 -4 src/crypto/heimdal/appl/kf/kf.cat1 1.1.1.1.2.3 +3 -3 src/crypto/heimdal/appl/kf/kfd.cat8 1.1.1.1.2.4 +8 -11 src/crypto/heimdal/appl/login/Makefile.in 1.1.1.1.2.4 +16 -26 src/crypto/heimdal/appl/push/Makefile.in 1.1.1.1.2.3 +3 -3 src/crypto/heimdal/appl/push/pfrom.cat1 1.1.1.1.2.3 +5 -5 src/crypto/heimdal/appl/push/push.cat8 1.1.1.1.2.4 +8 -11 src/crypto/heimdal/appl/rcp/Makefile.in 1.1.1.2.2.4 +13 -26 src/crypto/heimdal/appl/rsh/Makefile.in 1.1.1.1.2.4 +8 -11 src/crypto/heimdal/appl/su/Makefile.in 1.1.1.2.2.5 +7 -0 src/crypto/heimdal/appl/telnet/ChangeLog 1.1.1.1.2.4 +3 -4 src/crypto/heimdal/appl/telnet/Makefile.in 1.1.1.1.2.4 +3 -4 src/crypto/heimdal/appl/telnet/libtelnet/Makefile.in 1.1.1.1.2.5 +24 -1 src/crypto/heimdal/appl/telnet/libtelnet/kerberos5.c 1.1.1.1.2.4 +8 -15 src/crypto/heimdal/appl/telnet/telnet/Makefile.in 1.1.1.1.2.3 +77 -77 src/crypto/heimdal/appl/telnet/telnet/telnet.cat1 1.1.1.1.2.4 +8 -15 src/crypto/heimdal/appl/telnet/telnetd/Makefile.in 1.1.1.1.2.3 +22 -22 src/crypto/heimdal/appl/telnet/telnetd/telnetd.cat8 1.1.1.1.2.4 +4 -9 src/crypto/heimdal/appl/test/Makefile.in 1.1.1.1.2.2 +3 -3 src/crypto/heimdal/cf/sunos.m4 1.1.1.1.2.4 +34 -67 src/crypto/heimdal/config.guess 1.1.1.1.2.4 +21 -38 src/crypto/heimdal/config.sub 1.1.1.4.2.5 +14 -20 src/crypto/heimdal/configure 1.1.1.4.2.5 +2 -2 src/crypto/heimdal/configure.in 1.1.1.1.2.4 +6 -7 src/crypto/heimdal/doc/Makefile.in 1.1.1.1.2.5 +5 -10 src/crypto/heimdal/include/Makefile.in 1.1.1.1.2.4 +3 -4 src/crypto/heimdal/include/kadm5/Makefile.in 1.1.1.1.2.2 +1 -1 src/crypto/heimdal/include/make_crypto.c 1.1.1.1.2.2 +1 -1 src/crypto/heimdal/install-sh 1.1.1.3.2.5 +4 -0 src/crypto/heimdal/kadmin/ChangeLog 1.1.1.1.2.4 +16 -29 src/crypto/heimdal/kadmin/Makefile.in 1.1.1.1.2.3 +5 -2 src/crypto/heimdal/kadmin/kadm_conn.c 1.1.1.1.2.3 +10 -10 src/crypto/heimdal/kadmin/kadmin.cat8 1.1.1.1.2.5 +10 -4 src/crypto/heimdal/kadmin/kadmind.8 1.1.1.1.2.3 +10 -2 src/crypto/heimdal/kadmin/kadmind.c 1.1.1.1.2.3 +19 -15 src/crypto/heimdal/kadmin/kadmind.cat8 1.1.1.1.2.5 +7 -2 src/crypto/heimdal/kadmin/server.c 1.1.1.1.2.5 +1 -1 src/crypto/heimdal/kadmin/version4.c 1.1.1.1.2.4 +18 -29 src/crypto/heimdal/kdc/Makefile.in 1.1.1.3.2.4 +2 -2 src/crypto/heimdal/kdc/connect.c 1.1.1.1.2.3 +7 -7 src/crypto/heimdal/kdc/hprop.cat8 1.1.1.1.2.3 +4 -4 src/crypto/heimdal/kdc/hpropd.cat8 1.1.1.2.2.5 +9 -1 src/crypto/heimdal/kdc/kaserver.c 1.1.1.1.2.3 +16 -16 src/crypto/heimdal/kdc/kdc.cat8 1.1.1.1.2.3 +3 -3 src/crypto/heimdal/kdc/kstash.cat8 1.1.1.1.2.3 +4 -5 src/crypto/heimdal/kdc/string2key.cat8 1.1.1.1.2.4 +14 -31 src/crypto/heimdal/kpasswd/Makefile.in 1.1.1.1.2.3 +2 -2 src/crypto/heimdal/kpasswd/kpasswd.cat1 1.1.1.1.2.3 +7 -7 src/crypto/heimdal/kpasswd/kpasswdd.cat8 1.1.1.1.2.4 +9 -20 src/crypto/heimdal/kuser/Makefile.in 1.1.1.1.2.3 +3 -3 src/crypto/heimdal/kuser/kdestroy.cat1 1.1.1.1.2.3 +2 -2 src/crypto/heimdal/kuser/kgetcred.cat1 1.1.1.2.2.6 +2 -2 src/crypto/heimdal/kuser/kinit.1 1.1.1.1.2.3 +7 -7 src/crypto/heimdal/kuser/kinit.cat1 1.1.1.2.2.4 +2 -2 src/crypto/heimdal/kuser/klist.c 1.1.1.1.2.3 +6 -7 src/crypto/heimdal/kuser/klist.cat1 1.1.1.1.2.4 +3 -4 src/crypto/heimdal/lib/45/Makefile.in 1.1.1.1.2.4 +3 -4 src/crypto/heimdal/lib/Makefile.in 1.1.1.1.2.4 +9 -28 src/crypto/heimdal/lib/asn1/Makefile.in 1.1.1.1.2.4 +3 -4 src/crypto/heimdal/lib/auth/Makefile.in 1.1.1.1.2.4 +3 -4 src/crypto/heimdal/lib/auth/afskauthlib/Makefile.in 1.1.1.1.2.4 +3 -4 src/crypto/heimdal/lib/auth/pam/Makefile.in 1.1.1.1.2.4 +3 -4 src/crypto/heimdal/lib/auth/sia/Makefile.in 1.1.1.1.2.4 +9 -22 src/crypto/heimdal/lib/com_err/Makefile.in 1.1.1.3.2.4 +3 -10 src/crypto/heimdal/lib/gssapi/Makefile.in 1.1.1.1.2.4 +6 -17 src/crypto/heimdal/lib/hdb/Makefile.in 1.1.1.2.2.4 +4 -0 src/crypto/heimdal/lib/kadm5/ChangeLog 1.1.1.2.2.4 +17 -28 src/crypto/heimdal/lib/kadm5/Makefile.in 1.1.1.1.2.4 +29 -8 src/crypto/heimdal/lib/kadm5/ipropd_slave.c 1.1.1.1.2.4 +11 -22 src/crypto/heimdal/lib/kafs/Makefile.in 1.1.1.1.2.3 +6 -6 src/crypto/heimdal/lib/kafs/kafs.cat3 1.1.1.4.2.5 +2 -2 src/crypto/heimdal/lib/krb5/Makefile.am 1.1.1.4.2.5 +14 -43 src/crypto/heimdal/lib/krb5/Makefile.in 1.1.1.2.2.6 +1 -1 src/crypto/heimdal/lib/krb5/changepw.c 1.1.1.3.2.5 +2 -2 src/crypto/heimdal/lib/krb5/context.c 1.1.1.2.2.3 +7 -5 src/crypto/heimdal/lib/krb5/keytab_any.c 1.1.1.1.2.3 +8 -4 src/crypto/heimdal/lib/krb5/keytab_file.c 1.1.1.1.2.5 +3 -5 src/crypto/heimdal/lib/krb5/keytab_keyfile.c 1.1.1.1.2.6 +2 -2 src/crypto/heimdal/lib/krb5/krb5_appdefault.3 1.1.1.1.2.2 +1 -1 src/crypto/heimdal/lib/krb5/kuserok.c 1.1.1.2.2.4 +7 -1 src/crypto/heimdal/lib/krb5/principal.c 1.1.1.1.2.3 +1 -1 src/crypto/heimdal/lib/krb5/prompter_posix.c 1.1.1.1.2.4 +4 -2 src/crypto/heimdal/lib/krb5/store_emem.c 1.1.1.4.2.5 +4 -0 src/crypto/heimdal/lib/roken/ChangeLog 1.1.1.4.2.5 +2 -2 src/crypto/heimdal/lib/roken/Makefile.am 1.1.1.4.2.5 +7 -32 src/crypto/heimdal/lib/roken/Makefile.in 1.1.1.1.2.5 +234 -196 src/crypto/heimdal/lib/roken/resolve.c 1.1.1.1.2.4 +13 -26 src/crypto/heimdal/lib/sl/Makefile.in 1.1.1.1.2.4 +4 -15 src/crypto/heimdal/lib/vers/Makefile.in 1.1.1.1.2.3 +5 -5 src/crypto/heimdal/missing 1.1.1.1.2.2 +2 -0 src/crypto/heimdal/mkinstalldirs 1.1.1.1.2.5 +11 -15 src/crypto/heimdal/tools/Makefile.in 1.1.1.1.2.3 +5 -5 src/crypto/heimdal/tools/krb5-config.cat1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 9:49:34 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5014C37B401; Sun, 1 Dec 2002 09:49:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE72543E4A; Sun, 1 Dec 2002 09:49:32 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1HjWmV055486; Sun, 1 Dec 2002 09:45:32 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1HjW42055485; Sun, 1 Dec 2002 09:45:32 -0800 (PST) Message-Id: <200212011745.gB1HjW42055485@repoman.freebsd.org> From: Jacques Vidrine Date: Sun, 1 Dec 2002 09:45:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/kerberos5/include config.h version.h src/kerberos5/usr.bin/krb5-config Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2002/12/01 09:45:32 PST Modified files: (Branch: RELENG_4) kerberos5/include config.h version.h kerberos5/usr.bin/krb5-config Makefile Log: MFC: Update build for Heimdal 0.5.1 Revision Changes Path 1.2.2.7 +2 -2 src/kerberos5/include/config.h 1.2.2.7 +2 -2 src/kerberos5/include/version.h 1.1.2.8 +1 -1 src/kerberos5/usr.bin/krb5-config/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 10: 7:44 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8CDB37B401; Sun, 1 Dec 2002 10:07:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66B1043EB2; Sun, 1 Dec 2002 10:07:43 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1I3hmV056572; Sun, 1 Dec 2002 10:03:43 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1I3gjm056571; Sun, 1 Dec 2002 10:03:42 -0800 (PST) Message-Id: <200212011803.gB1I3gjm056571@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 1 Dec 2002 10:03:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts print-cdrom-packages.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/12/01 10:03:42 PST Modified files: release/scripts print-cdrom-packages.sh Log: Make the following changes to the semi-automated package split: 1. On disc1, print/acroread4 for alpha and print/acroread5 for i386 replace print/acroread, which was not compatible with the linux_base that we ship by default. Remove print/acroread4 from disc3 as redundant. 2. www/linux-netscape47-* were removed due to security holes; substitute www/netscape48-* on disc1. 3. Add www/opera to disc1. Approved by: re (murray) Revision Changes Path 1.37 +9 -4 src/release/scripts/print-cdrom-packages.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 10:34:46 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80B6537B401; Sun, 1 Dec 2002 10:34:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D22243EBE; Sun, 1 Dec 2002 10:34:45 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1IUimV058316; Sun, 1 Dec 2002 10:30:44 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1IUiJ3058315; Sun, 1 Dec 2002 10:30:44 -0800 (PST) Message-Id: <200212011830.gB1IUiJ3058315@repoman.freebsd.org> From: Ceri Davies Date: Sun, 1 Dec 2002 10:30:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/ppp-primer Makefile book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ceri 2002/12/01 10:30:44 PST Removed files: en_US.ISO8859-1/books/ppp-primer Makefile book.sgml Log: Remove the PPP primer. Useful content has been migrated into the handbook by blackend. PR: docs/42392 Reviewed by: blackend, keramida Revision Changes Path 1.2 +0 -26 doc/en_US.ISO8859-1/books/ppp-primer/Makefile (dead) 1.20 +0 -2372 doc/en_US.ISO8859-1/books/ppp-primer/book.sgml (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 11: 1:58 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8E4737B401; Sun, 1 Dec 2002 11:01:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5ECCA43EBE; Sun, 1 Dec 2002 11:01:57 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1IvumV059997; Sun, 1 Dec 2002 10:57:56 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1IvuDu059996; Sun, 1 Dec 2002 10:57:56 -0800 (PST) Message-Id: <200212011857.gB1IvuDu059996@repoman.freebsd.org> From: Alan Cox Date: Sun, 1 Dec 2002 10:57:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_map.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2002/12/01 10:57:56 PST Modified files: sys/vm vm_map.c Log: Hold the page queues lock when calling pmap_protect(); it updates fields of the vm_page structure. Make the style of the pmap_protect() calls consistent. Approved by: re (blanket) Revision Changes Path 1.273 +22 -7 src/sys/vm/vm_map.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 11:14:51 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EFC237B401; Sun, 1 Dec 2002 11:14:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C332243E88; Sun, 1 Dec 2002 11:14:49 -0800 (PST) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1JAnmV060927; Sun, 1 Dec 2002 11:10:49 -0800 (PST) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1JAnXV060926; Sun, 1 Dec 2002 11:10:49 -0800 (PST) Message-Id: <200212011910.gB1JAnXV060926@repoman.freebsd.org> From: Daniel Eischen Date: Sun, 1 Dec 2002 11:10:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gnat Makefile distinfo pkg-plist ports/lang/gnat/files 5fosinte.ads 5fsystem.ads 5ftaprop.adb freebsd5x-patch-01 freebsdgcc28-patches patch-ab patch-ac patch-ae patch-ag patch-ai patch-aj patch-am patch-ao patch-ap X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG deischen 2002/12/01 11:10:49 PST Modified files: lang/gnat Makefile distinfo pkg-plist lang/gnat/files 5fosinte.ads 5fsystem.ads 5ftaprop.adb patch-ab patch-ac patch-ae patch-ag patch-ai patch-aj patch-ao patch-ap Added files: lang/gnat/files freebsd5x-patch-01 Removed files: lang/gnat/files freebsdgcc28-patches patch-am Log: Update to the latest released version of GNAT (3.15p). Also use a new bootstrap compiler and fix so that it builds under -current. Approved by: portmgr Revision Changes Path 1.35 +16 -9 ports/lang/gnat/Makefile 1.9 +2 -2 ports/lang/gnat/distinfo 1.6 +18 -20 ports/lang/gnat/files/5fosinte.ads 1.2 +34 -137 ports/lang/gnat/files/5fsystem.ads 1.6 +205 -181 ports/lang/gnat/files/5ftaprop.adb 1.1 +15 -0 ports/lang/gnat/files/freebsd5x-patch-01 (new) 1.3 +0 -795 ports/lang/gnat/files/freebsdgcc28-patches (dead) 1.4 +27 -26 ports/lang/gnat/files/patch-ab 1.7 +31 -37 ports/lang/gnat/files/patch-ac 1.5 +18 -18 ports/lang/gnat/files/patch-ae 1.2 +14 -14 ports/lang/gnat/files/patch-ag 1.4 +1 -1 ports/lang/gnat/files/patch-ai 1.3 +33 -32 ports/lang/gnat/files/patch-aj 1.3 +0 -32 ports/lang/gnat/files/patch-am (dead) 1.2 +2 -2 ports/lang/gnat/files/patch-ao 1.2 +30 -20 ports/lang/gnat/files/patch-ap 1.18 +34 -3 ports/lang/gnat/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 11:23: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E87937B401; Sun, 1 Dec 2002 11:23:06 -0800 (PST) Received: from out3.mx.nwbl.wi.voyager.net (out3.mx.nwbl.wi.voyager.net [169.207.3.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94B9143E4A; Sun, 1 Dec 2002 11:23:05 -0800 (PST) (envelope-from silby@silby.com) Received: from [10.1.1.6] (d136.as12.nwbl0.wi.voyager.net [169.207.136.138]) by out3.mx.nwbl.wi.voyager.net (Postfix) with ESMTP id C6C9477728; Sun, 1 Dec 2002 13:23:03 -0600 (CST) Date: Sun, 1 Dec 2002 13:30:02 -0600 (CST) From: Mike Silbersack To: Poul-Henning Kamp Cc: cvs-committers@FreeBSD.org, "" Subject: Re: cvs commit: src/sys/geom/bde g_bde_crypt.c In-Reply-To: <200212011550.gB1Fomi2047460@repoman.freebsd.org> Message-ID: <20021201132914.B99265-100000@patrocles.silby.com> References: <200212011550.gB1Fomi2047460@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 1 Dec 2002, Poul-Henning Kamp wrote: > phk 2002/12/01 07:50:48 PST > > Modified files: > sys/geom/bde g_bde_crypt.c > Log: > Conceiveably, there may exist an algorithm which can tell if a sequence of bytes > are the output of AES/128/CBC or ARC4RANDOM. Encrypt the random data with which > we wipe when we get a BIO_DELETE to make such an algorithm useful. Did you mean useless? Mike "Silby" Silbersack > > Sponsored by: DARPA & NAI Labs > Approved by: re (blanket) > > Revision Changes Path > 1.5 +7 -0 src/sys/geom/bde/g_bde_crypt.c > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 11:23:36 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61A6A37B401; Sun, 1 Dec 2002 11:23:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F93643EA9; Sun, 1 Dec 2002 11:23:35 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1JJYmV061459; Sun, 1 Dec 2002 11:19:34 -0800 (PST) (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1JJYJ3061458; Sun, 1 Dec 2002 11:19:34 -0800 (PST) Message-Id: <200212011919.gB1JJYJ3061458@repoman.freebsd.org> From: David Malone Date: Sun, 1 Dec 2002 11:19:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/rarpd rarpd.8 rarpd.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwmalone 2002/12/01 11:19:34 PST Modified files: (Branch: RELENG_4) usr.sbin/rarpd rarpd.8 rarpd.c Log: Sync with -current: Minor man page changes, add -t option and document in comments and usage. Revision Changes Path 1.9.2.5 +18 -4 src/usr.sbin/rarpd/rarpd.8 1.23.2.4 +8 -4 src/usr.sbin/rarpd/rarpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 11:29:50 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B10D537B401; Sun, 1 Dec 2002 11:29:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5369443EA9; Sun, 1 Dec 2002 11:29:49 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1JPmmV061715; Sun, 1 Dec 2002 11:25:48 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1JPmFf061714; Sun, 1 Dec 2002 11:25:48 -0800 (PST) Message-Id: <200212011925.gB1JPmFf061714@repoman.freebsd.org> From: Ceri Davies Date: Sun, 1 Dec 2002 11:25:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml doc/en_US.ISO8859-1/books/handbook/eresources chapter.sgml doc/en_US.ISO8859-1/share/sgml mailing-lists.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ceri 2002/12/01 11:25:48 PST Modified files: en_US.ISO8859-1/books/faq book.sgml en_US.ISO8859-1/books/handbook/eresources chapter.sgml en_US.ISO8859-1/share/sgml mailing-lists.ent Log: Add an entity for the FreeBSD-mips mailing list. Add MIPS to the list of porting efforts in the FAQ. Grammar fixup for the handbook. Revision Changes Path 1.499 +1 -1 doc/en_US.ISO8859-1/books/faq/book.sgml 1.105 +1 -1 doc/en_US.ISO8859-1/books/handbook/eresources/chapter.sgml 1.9 +3 -0 doc/en_US.ISO8859-1/share/sgml/mailing-lists.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 11:39:32 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0667637B401; Sun, 1 Dec 2002 11:39:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C68E43ECF; Sun, 1 Dec 2002 11:39:31 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1JZUmV062328; Sun, 1 Dec 2002 11:35:30 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1JZUus062327; Sun, 1 Dec 2002 11:35:30 -0800 (PST) Message-Id: <200212011935.gB1JZUus062327@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 1 Dec 2002 11:35:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/early-adopter article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/12/01 11:35:30 PST Modified files: release/doc/en_US.ISO8859-1/early-adopter article.sgml Log: Fix minor SGML markup glitch. Pointed out by: ue Approved by: re (implicitly) Revision Changes Path 1.8 +1 -1 src/release/doc/en_US.ISO8859-1/early-adopter/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 11:42:10 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E366B37B401; Sun, 1 Dec 2002 11:42:09 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id E644E43EC2; Sun, 1 Dec 2002 11:42:08 -0800 (PST) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.6/8.12.6) with ESMTP id gB1Jg2fN068475; Sun, 1 Dec 2002 20:42:03 +0100 (CET) (envelope-from phk@critter.freebsd.dk) To: Mike Silbersack Cc: cvs-committers@FreeBSD.org, "" Subject: Re: cvs commit: src/sys/geom/bde g_bde_crypt.c In-Reply-To: Your message of "Sun, 01 Dec 2002 13:30:02 CST." <20021201132914.B99265-100000@patrocles.silby.com> Date: Sun, 01 Dec 2002 20:42:02 +0100 Message-ID: <68474.1038771722@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20021201132914.B99265-100000@patrocles.silby.com>, Mike Silbersack writes: > >On Sun, 1 Dec 2002, Poul-Henning Kamp wrote: > >> phk 2002/12/01 07:50:48 PST >> >> Modified files: >> sys/geom/bde g_bde_crypt.c >> Log: >> Conceiveably, there may exist an algorithm which can tell if a sequence of bytes >> are the output of AES/128/CBC or ARC4RANDOM. Encrypt the random data with which >> we wipe when we get a BIO_DELETE to make such an algorithm useful. > >Did you mean useless? Yes, of course I did. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 11:44:39 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4C0837B401; Sun, 1 Dec 2002 11:44:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A9EB43E88; Sun, 1 Dec 2002 11:44:38 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1JebmV062859; Sun, 1 Dec 2002 11:40:37 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1JebwR062858; Sun, 1 Dec 2002 11:40:37 -0800 (PST) Message-Id: <200212011940.gB1JebwR062858@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 1 Dec 2002 11:40:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/12/01 11:40:37 PST Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: The Bluetooth stack apparently works on pc98, so enable items in the pc98 release documentation. Pointed out by: nyan Approved by: re (implicitly) Revision Changes Path 1.118 +2 -2 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml 1.462 +1 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 11:46:40 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D262837B401; Sun, 1 Dec 2002 11:46:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82C5E43E4A; Sun, 1 Dec 2002 11:46:39 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1JgcmV062941; Sun, 1 Dec 2002 11:42:38 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1Jgcsh062940; Sun, 1 Dec 2002 11:42:38 -0800 (PST) Message-Id: <200212011942.gB1Jgcsh062940@repoman.freebsd.org> From: Dirk Meyer Date: Sun, 1 Dec 2002 11:42:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gcvs Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/12/01 11:42:38 PST Modified files: devel/gcvs Makefile Log: mark BROKEN for CURRENT Revision Changes Path 1.9 +5 -1 ports/devel/gcvs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 11:49:13 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFB0237B401; Sun, 1 Dec 2002 11:49:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F58143ECD; Sun, 1 Dec 2002 11:49:12 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1JjBmV063051; Sun, 1 Dec 2002 11:45:11 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1JjB14063050; Sun, 1 Dec 2002 11:45:11 -0800 (PST) Message-Id: <200212011945.gB1JjB14063050@repoman.freebsd.org> From: Ceri Davies Date: Sun, 1 Dec 2002 11:45:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/commercial consulting.raw X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ceri 2002/12/01 11:45:11 PST Modified files: en/commercial consulting.raw Log: Add entry for Omar Siddique. Submitted by: Omar Siddique Revision Changes Path 1.78 +8 -0 www/en/commercial/consulting.raw To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 11:49:39 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3749F37B401; Sun, 1 Dec 2002 11:49:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAEF043EC5; Sun, 1 Dec 2002 11:49:37 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1JjbmV063101; Sun, 1 Dec 2002 11:45:37 -0800 (PST) (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1Jjbp0063100; Sun, 1 Dec 2002 11:45:37 -0800 (PST) Message-Id: <200212011945.gB1Jjbp0063100@repoman.freebsd.org> From: David Malone Date: Sun, 1 Dec 2002 11:45:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/syslogd syslog.conf.5 syslogd.8 syslogd.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwmalone 2002/12/01 11:45:37 PST Modified files: (Branch: RELENG_4) usr.sbin/syslogd syslog.conf.5 syslogd.8 syslogd.c Log: Sync with -current, except the -o option (which isn't as relivant in -stable) and Thomas's skip_message change (which hasn't been in -current very long). Main changes: 1) man page updates, 2) ! operator for priority, 3) -c option (include repeats), 4) sort/missing includes, 5) style changes, statisation, de __P, ANSI function definitions, 6) don't initialisation of statics unless needed, 7) allow more characters in program names, 8) be more careful about closing sockets on EHOST{UNREACH,DOWN}. Revision Changes Path 1.16.2.9 +11 -2 src/usr.sbin/syslogd/syslog.conf.5 1.22.2.15 +14 -14 src/usr.sbin/syslogd/syslogd.8 1.59.2.23 +199 -204 src/usr.sbin/syslogd/syslogd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 12: 2:55 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23DE037B401; Sun, 1 Dec 2002 12:02:54 -0800 (PST) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3691E43EB2; Sun, 1 Dec 2002 12:02:53 -0800 (PST) (envelope-from bmah@employees.org) Received: from bmah.dyndns.org (12-240-204-110.client.attbi.com[12.240.204.110]) by sccrmhc02.attbi.com (sccrmhc02) with ESMTP id <2002120120025100200spr3te>; Sun, 1 Dec 2002 20:02:51 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.6/8.12.6) with ESMTP id gB1K2ons009277; Sun, 1 Dec 2002 12:02:50 -0800 (PST) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.6/8.12.6/Submit) id gB1K2oRU009276; Sun, 1 Dec 2002 12:02:50 -0800 (PST) Message-Id: <200212012002.gB1K2oRU009276@intruder.bmah.org> X-Mailer: exmh version 2.5+ 20021120 with nmh-1.0.4 To: Takahashi Yoshihiro Cc: bmah@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml In-Reply-To: <20021201.165332.41699621.nyan@jp.FreeBSD.org> References: <200211302211.gAUMBkSb081462@repoman.freebsd.org> <20021201.165332.41699621.nyan@jp.FreeBSD.org> Comments: In-reply-to Takahashi Yoshihiro message dated "Sun, 01 Dec 2002 16:53:32 +0900." From: bmah@FreeBSD.org (Bruce A. Mah) Reply-To: bmah@FreeBSD.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_65116908P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Sun, 01 Dec 2002 12:02:50 -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --==_Exmh_65116908P Content-Type: text/plain; charset=us-ascii If memory serves me right, Takahashi Yoshihiro wrote: > > Modified files: > > release/doc/en_US.ISO8859-1/relnotes/common new.sgml > > Log: > > New release note: Bluetooth support. > > > > Modified files: > > release/doc/en_US.ISO8859-1/hardware/common dev.sgml > > Log: > > Add Bluetooth section and a cross-reference from the USB section for > > USB Bluetooth adapters. > > > I think the bluetooth driver also work on pc98. So, please enable > this paragraph on pc98. OK, added. Thanks! Bruce. --==_Exmh_65116908P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) Comment: Exmh version 2.5+ 20020506 iD8DBQE96mrq2MoxcVugUsMRAswbAJ9Vufi3Kl+GvuuoF5Bpt1F2lcgVPQCeMT0a UMgmZaII1QRN5E9ij3zLA/4= =/nr/ -----END PGP SIGNATURE----- --==_Exmh_65116908P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 12:36:19 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BFAF37B401; Sun, 1 Dec 2002 12:36:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D30C43EBE; Sun, 1 Dec 2002 12:36:18 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1KWHmV065959; Sun, 1 Dec 2002 12:32:17 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1KWHF4065958; Sun, 1 Dec 2002 12:32:17 -0800 (PST) Message-Id: <200212012032.gB1KWHF4065958@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 12:32:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/gnome news.xml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 12:32:17 PST Modified files: en/gnome news.xml Log: * GNOME 2.1.3 ports available * GNOME 2.0.2 to be the default GNOME desktop in 5.0-RELEASE * RDF news feeds available Revision Changes Path 1.25 +44 -1 www/en/gnome/news.xml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 13:10: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 525FE37B401; Sun, 1 Dec 2002 13:10:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F35D843EAF; Sun, 1 Dec 2002 13:10:02 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1L61mV067889; Sun, 1 Dec 2002 13:06:01 -0800 (PST) (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1L616G067888; Sun, 1 Dec 2002 13:06:01 -0800 (PST) Message-Id: <200212012106.gB1L616G067888@repoman.freebsd.org> From: Ian Dowse Date: Sun, 1 Dec 2002 13:06:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/mount_nfs mount_nfs.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iedowse 2002/12/01 13:06:01 PST Modified files: (Branch: RELENG_4) sbin/mount_nfs mount_nfs.c Log: MFC: 1.55; unbreak the -c option by using an unconnected socket for communication with the remote NFS server if this flag is specified. Revision Changes Path 1.36.2.5 +2 -1 src/sbin/mount_nfs/mount_nfs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 13:41:36 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F55537B401; Sun, 1 Dec 2002 13:41:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED23943E9C; Sun, 1 Dec 2002 13:41:34 -0800 (PST) (envelope-from alane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1LbXmV069972; Sun, 1 Dec 2002 13:37:33 -0800 (PST) (envelope-from alane@repoman.freebsd.org) Received: (from alane@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1LbXO3069971; Sun, 1 Dec 2002 13:37:33 -0800 (PST) Message-Id: <200212012137.gB1LbXO3069971@repoman.freebsd.org> From: Alan Eldridge Date: Sun, 1 Dec 2002 13:37:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/phoenix Makefile pkg-message pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alane 2002/12/01 13:37:33 PST Modified files: www/phoenix Makefile pkg-message Removed files: www/phoenix pkg-plist Log: 1. Add a link to support the java plugin. Thanks to Khairil Yusof for this tip. 2. Build the plist automagically in a post-install target. Approved by: kris Revision Changes Path 1.31 +29 -3 ports/www/phoenix/Makefile 1.4 +12 -9 ports/www/phoenix/pkg-message 1.10 +0 -888 ports/www/phoenix/pkg-plist (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 13:51:17 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8E1537B401; Sun, 1 Dec 2002 13:51:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8901543EAF; Sun, 1 Dec 2002 13:51:16 -0800 (PST) (envelope-from mharo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1LlFmV070571; Sun, 1 Dec 2002 13:47:15 -0800 (PST) (envelope-from mharo@repoman.freebsd.org) Received: (from mharo@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1LlFXt070570; Sun, 1 Dec 2002 13:47:15 -0800 (PST) Message-Id: <200212012147.gB1LlFXt070570@repoman.freebsd.org> From: Michael Haro Date: Sun, 1 Dec 2002 13:47:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/logmon Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mharo 2002/12/01 13:47:15 PST Modified files: sysutils/logmon Makefile Log: MASTER_SITES URL changed Revision Changes Path 1.3 +1 -1 ports/sysutils/logmon/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 14:12:29 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FEA437B401; Sun, 1 Dec 2002 14:12:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DD6643EC2; Sun, 1 Dec 2002 14:12:28 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1M8QmV071787; Sun, 1 Dec 2002 14:08:26 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1M8QlY071786; Sun, 1 Dec 2002 14:08:26 -0800 (PST) Message-Id: <200212012208.gB1M8QlY071786@repoman.freebsd.org> From: Robert Watson Date: Sun, 1 Dec 2002 14:08:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/01 14:08:26 PST Modified files: en/releases/5.0R todo.sgml Log: Remove smbfs task: we believe it's now operating as well on 5.x as it was on 4.x-STABLE, which is to say "not perfectly", but adequately for the purposes of the TODO item. Thanks to Tim Robbins for grabbing this one by the horns. Any long-term fixes for smbfs stability issues relating to forceable unmount and dropped connections also welcome. Revision Changes Path 1.60 +1 -15 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 14:14: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 969BB37B401; Sun, 1 Dec 2002 14:14:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4551B43E88; Sun, 1 Dec 2002 14:14:05 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1MA4mV071867; Sun, 1 Dec 2002 14:10:04 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1MA39X071866; Sun, 1 Dec 2002 14:10:03 -0800 (PST) Message-Id: <200212012210.gB1MA39X071866@repoman.freebsd.org> From: Robert Watson Date: Sun, 1 Dec 2002 14:10:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/01 14:10:03 PST Modified files: en/releases/5.0R todo.sgml Log: Remove item "ACPI support for multiple host-pci bridge adapters", since we believe it's now addressed. Thanks for John Baldwin! Revision Changes Path 1.61 +1 -9 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 14:33:20 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E71437B401; Sun, 1 Dec 2002 14:33:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DCFD43EB2; Sun, 1 Dec 2002 14:33:19 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1MTHmV073021; Sun, 1 Dec 2002 14:29:17 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1MTHkr073020; Sun, 1 Dec 2002 14:29:17 -0800 (PST) Message-Id: <200212012229.gB1MTHkr073020@repoman.freebsd.org> From: Robert Watson Date: Sun, 1 Dec 2002 14:29:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R schedule.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/01 14:29:17 PST Modified files: en/releases/5.0R schedule.sgml Log: Hook the TODO list up to the 5.0-RELEASE schedule web page. Spotted the lack of by: scottl Revision Changes Path 1.15 +5 -1 www/en/releases/5.0R/schedule.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 14:36: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B420437B401; Sun, 1 Dec 2002 14:36:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 611EB43EB2; Sun, 1 Dec 2002 14:36:00 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1MVxmV073130; Sun, 1 Dec 2002 14:31:59 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1MVwEa073129; Sun, 1 Dec 2002 14:31:58 -0800 (PST) Message-Id: <200212012231.gB1MVwEa073129@repoman.freebsd.org> From: Robert Watson Date: Sun, 1 Dec 2002 14:31:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/01 14:31:58 PST Modified files: en/releases/5.0R todo.sgml Log: There are reports of syscons hangs on SMP boxes, which may relate to a failure of the timeout() updating the system display. Otherwise, the system seems fully function, syscons simply neglects to update screen output. Assign ownership to scottl@ since he's tracking the symptoms and can reproduce, but any fixes appreciated. Categorize as "must fix" for 5.0-RC1. Submitted by: scottl Revision Changes Path 1.62 +10 -1 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15: 0:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D7F837B401; Sun, 1 Dec 2002 15:00:41 -0800 (PST) Received: from postfix2-2.free.fr (postfix2-2.free.fr [213.228.0.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B3B743EA9; Sun, 1 Dec 2002 15:00:40 -0800 (PST) (envelope-from thierry@pompo.net) Received: from graf.pompo.net (lyon-2-a7-62-147-23-209.dial.proxad.net [62.147.23.209]) by postfix2-2.free.fr (Postfix) with ESMTP id 1DD7961B73; Sun, 1 Dec 2002 23:18:04 +0100 (CET) Received: by graf.pompo.net (Postfix, from userid 1001) id 5F3577600; Sun, 1 Dec 2002 23:10:48 +0100 (CET) Date: Sun, 1 Dec 2002 23:10:48 +0100 From: Thierry Thomas To: Dirk Froemberg Cc: cvs-committers@freebsd.org, Edwin Groothuis , SADA Kenji , cvs-all@freebsd.org Subject: Re: cvs commit: ports/devel/pear Makefile Message-ID: <20021201221048.GA60508@graf.pompo.net> References: <200211190020.gAJ0KeUM032003@repoman.freebsd.org> <20021119064933.GA86662@graf.pompo.net> <20021119072047.GB75727@k7.mavetju> <20021119174932.724d2cb9.sada@BSDclub.org> <20021119200533.GA91846@graf.pompo.net> <20021120212547.GA9521@graf.pompo.net> <20021120220352.GB24568@physik.TU-Berlin.DE> <20021120223030.GA26687@graf.pompo.net> <20021124103126.GA6526@physik.TU-Berlin.DE> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20021124103126.GA6526@physik.TU-Berlin.DE> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 4.7-STABLE i386 Organization: Kabbale Eros X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc;y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: X-PGP: 0xC71405A2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Le 24/11/2002 à 11:31:26 +0100, Dirk Froemberg écrivait : > Hallo Thierry! 8-) Hallo Dirk! > On Wed, Nov 20, 2002 at 11:30:30PM +0100, Thierry Thomas wrote: > > Le 20/11/2002 à 23:03:52 +0100, Dirk Froemberg écrivait : > > > Probably it's time to remove pear installation from mod_php4, now. > > > > > > I'd patch mod_php4. Can you deal with the pear* ports (pear-install, > > > especially). > > > > OK. Please send me your diffs vs. mod_php4, and I'll deal with pear. > > > > Note: at this time, I have only written pear- ports needed by Horde > > and IMP, but to replace the pear installation from mod_php4, we shall > > need to add some more ports. > > The diffs for mod_php4 are attached below. They are quite simple. Basically > only --disable-pear is used unconditionally. I have written the missing pear- ports, and a meta-port to install everything from , with only PEAR stable packages, but I'm not ready to submit them: it breaks the existing ports www/horde2 and mail/imp3. However, it works well with Horde and IMP from CVS (to be released soon - RC at the end of this year) => you'll have to keep PEAR within mod_php4 some more time... Tchüß! -- Th. Thomas. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15: 3:32 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2085A37B401; Sun, 1 Dec 2002 15:03:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C519743E88; Sun, 1 Dec 2002 15:03:30 -0800 (PST) (envelope-from tmm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1MxTmV083625; Sun, 1 Dec 2002 14:59:29 -0800 (PST) (envelope-from tmm@repoman.freebsd.org) Received: (from tmm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1MxT9e083624; Sun, 1 Dec 2002 14:59:29 -0800 (PST) Message-Id: <200212012259.gB1MxT9e083624@repoman.freebsd.org> From: Thomas Moestl Date: Sun, 1 Dec 2002 14:59:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 iommu.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tmm 2002/12/01 14:59:29 PST Modified files: sys/sparc64/sparc64 iommu.c Log: Do not panic when a dmamap is unloaded more then once, but just silently ignore it. This is non-fatal on the other architectures, and some drivers seem to do this. Approved by: re Revision Changes Path 1.11 +2 -4 src/sys/sparc64/sparc64/iommu.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15: 4:44 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01CC637B401; Sun, 1 Dec 2002 15:04:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A686743EAF; Sun, 1 Dec 2002 15:04:43 -0800 (PST) (envelope-from tmm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1N0gmV083776; Sun, 1 Dec 2002 15:00:42 -0800 (PST) (envelope-from tmm@repoman.freebsd.org) Received: (from tmm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1N0gBW083775; Sun, 1 Dec 2002 15:00:42 -0800 (PST) Message-Id: <200212012300.gB1N0gBW083775@repoman.freebsd.org> From: Thomas Moestl Date: Sun, 1 Dec 2002 15:00:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/pci psychoreg.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tmm 2002/12/01 15:00:42 PST Modified files: sys/sparc64/pci psychoreg.h Log: Fix some comments describing psycho registers. Approved by: re Revision Changes Path 1.5 +2 -2 src/sys/sparc64/pci/psychoreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15: 4:50 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D085B37B43B; Sun, 1 Dec 2002 15:04:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CB7343EAF; Sun, 1 Dec 2002 15:04:45 -0800 (PST) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1N0hmV083795; Sun, 1 Dec 2002 15:00:44 -0800 (PST) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1N0hij083792; Sun, 1 Dec 2002 15:00:43 -0800 (PST) Message-Id: <200212012300.gB1N0hij083792@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 1 Dec 2002 15:00:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG blackend 2002/12/01 15:00:43 PST Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: Add infos about devfs(5) where needed. Revision Changes Path 1.181 +4 -1 doc/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15:10:18 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10A5F37B401; Sun, 1 Dec 2002 15:10:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78ABF43E4A; Sun, 1 Dec 2002 15:10:16 -0800 (PST) (envelope-from tmm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1N6EmV084263; Sun, 1 Dec 2002 15:06:14 -0800 (PST) (envelope-from tmm@repoman.freebsd.org) Received: (from tmm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1N6E96084261; Sun, 1 Dec 2002 15:06:14 -0800 (PST) Message-Id: <200212012306.gB1N6E96084261@repoman.freebsd.org> From: Thomas Moestl Date: Sun, 1 Dec 2002 15:06:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/pci ofw_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tmm 2002/12/01 15:06:14 PST Modified files: sys/sparc64/pci ofw_pci.c Log: Reverse the quirk table entry for swizzling on a missing interrupt map; this is now done on all machines except for some known problematic ones. Add an additional guard to make sure that the interrupt numbers are in the correct range before swizzling. This should catch any remaining models for which the swizzle is inappropriate. Correct the swizzle calculation to account for the fact that the parent interrupt numbers to be swizzled are 1-based. Approved by: re Revision Changes Path 1.6 +10 -7 src/sys/sparc64/pci/ofw_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15:14:31 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C59A437B401; Sun, 1 Dec 2002 15:14:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C19F43E9C; Sun, 1 Dec 2002 15:14:30 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1NASmV084773; Sun, 1 Dec 2002 15:10:28 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1NASuZ084772; Sun, 1 Dec 2002 15:10:28 -0800 (PST) Message-Id: <200212012310.gB1NASuZ084772@repoman.freebsd.org> From: Robert Watson Date: Sun, 1 Dec 2002 15:10:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/getpmac Makefile src/usr.sbin/setpmac Makefile src/usr.sbin/getfmac Makefile src/usr.sbin/setfmac Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/01 15:10:28 PST Modified files: usr.sbin/getpmac Makefile usr.sbin/setpmac Makefile usr.sbin/getfmac Makefile usr.sbin/setfmac Makefile Log: In general, prefer WARNS to CFLAGS+=-Wall. Tend towards a more BSD-esque Makefile style. Submitted by: obrien Approved by: re Revision Changes Path 1.2 +4 -2 src/usr.sbin/getfmac/Makefile 1.2 +4 -2 src/usr.sbin/getpmac/Makefile 1.2 +4 -2 src/usr.sbin/setfmac/Makefile 1.2 +4 -2 src/usr.sbin/setpmac/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15:18: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D08737B401; Sun, 1 Dec 2002 15:18:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00CDE43ECD; Sun, 1 Dec 2002 15:18:00 -0800 (PST) (envelope-from tmm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1NDxmV084965; Sun, 1 Dec 2002 15:13:59 -0800 (PST) (envelope-from tmm@repoman.freebsd.org) Received: (from tmm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1NDxec084964; Sun, 1 Dec 2002 15:13:59 -0800 (PST) Message-Id: <200212012313.gB1NDxec084964@repoman.freebsd.org> From: Thomas Moestl Date: Sun, 1 Dec 2002 15:13:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sbus sbus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tmm 2002/12/01 15:13:59 PST Modified files: sys/sparc64/sbus sbus.c Log: Remove some long-dead cruft in the interrupt handling code which was never used in FreeBSD. Approved by: re Revision Changes Path 1.5 +31 -44 src/sys/sparc64/sbus/sbus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15:22:53 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C472437B401; Sun, 1 Dec 2002 15:22:51 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-64-169-106-47.dsl.lsan03.pacbell.net [64.169.106.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C12143E4A; Sun, 1 Dec 2002 15:22:51 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id A018466BE3; Sun, 1 Dec 2002 15:22:50 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 783C510D4; Sun, 1 Dec 2002 15:22:50 -0800 (PST) Date: Sun, 1 Dec 2002 15:22:50 -0800 From: Kris Kennaway To: Greg 'groggy' Lehey Cc: Mario Sergio Fujikawa Ferreira , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/misc/instant-workstation Makefile Message-ID: <20021201232250.GA77033@rot13.obsecurity.org> References: <200211301357.gAUDvvBY051546@repoman.freebsd.org> <20021201025415.GA91629@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0F1p//8PRICkK4MW" Content-Disposition: inline In-Reply-To: <20021201025415.GA91629@wantadilla.lemis.com> User-Agent: Mutt/1.4i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --0F1p//8PRICkK4MW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Dec 01, 2002 at 01:24:15PM +1030, Greg 'groggy' Lehey wrote: > On Saturday, 30 November 2002 at 5:57:57 -0800, Mario Sergio Fujikawa Fe= rreira wrote: > > lioux 2002/11/30 05:57:57 PST > > > > Modified files: > > misc/instant-workstation Makefile > > Log: > > Fix xmms port location > > > > Prompted by: kris > > > > Revision Changes Path > > 1.11 +1 -1 ports/misc/instant-workstation/Makefile >=20 > This file contains: >=20 > MAINTAINER=3D grog@FreeBSD.org >=20 > In fact, I'm removing xmms altogether, as well as changing other > things, but since we're in a ports freeze, I was keeping them for > later. It would be nice of you (or kris) to have contacted me first. The port was broken as it stood (because a dependency was moved): lioux did the right thing. Kris --0F1p//8PRICkK4MW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE96pnJWry0BWjoQKURAkSHAKDDGCBI5i/l0HXZdwYzfXVZI0OQ7gCgkKYB fO3wNETAy0NAzKLprrwZvVs= =OSc7 -----END PGP SIGNATURE----- --0F1p//8PRICkK4MW-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15:24: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A021137B401; Sun, 1 Dec 2002 15:24:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7027D43EDE; Sun, 1 Dec 2002 15:23:59 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1NJvmV085495; Sun, 1 Dec 2002 15:19:57 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1NJvXY085494; Sun, 1 Dec 2002 15:19:57 -0800 (PST) Message-Id: <200212012319.gB1NJvXY085494@repoman.freebsd.org> From: Robert Watson Date: Sun, 1 Dec 2002 15:19:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/mdmfs mdmfs.8 mdmfs.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/01 15:19:57 PST Modified files: sbin/mdmfs mdmfs.8 mdmfs.c Log: Teach mdmfs how to pass UFS version numbers through to newfs. Because of an argument name collision with -O, use -v, and default to whatever the newfs default is for the platform (generally, UFS1). This is required to support diskless workstations that use UFS2 for their mdmfs file systems. Reviewed by: dd, bmah Approved by: re (bmah) Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.13 +11 -0 src/sbin/mdmfs/mdmfs.8 1.12 +4 -1 src/sbin/mdmfs/mdmfs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15:25:18 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45DF137B401; Sun, 1 Dec 2002 15:25:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E85B243EB2; Sun, 1 Dec 2002 15:25:16 -0800 (PST) (envelope-from tmm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1NLFmV085592; Sun, 1 Dec 2002 15:21:15 -0800 (PST) (envelope-from tmm@repoman.freebsd.org) Received: (from tmm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1NLFjC085591; Sun, 1 Dec 2002 15:21:15 -0800 (PST) Message-Id: <200212012321.gB1NLFjC085591@repoman.freebsd.org> From: Thomas Moestl Date: Sun, 1 Dec 2002 15:21:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/pci psycho.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tmm 2002/12/01 15:21:15 PST Modified files: sys/sparc64/pci psycho.c Log: 1.) Do not look for PCI INOs in the FFB interrupt mapping registers; they are nevers used for PCI interrupts, but can cause false matches since they are fully programmable. 2.) Skip the mapping registers for slot a2 and a3 on "psycho" bridges, since they are not present there. Again, this could cause false matches, which would result in the interrupt being delivered at most once. Submitted by: jake (2) Approved by: re Revision Changes Path 1.19 +6 -2 src/sys/sparc64/pci/psycho.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15:26: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05BA237B401; Sun, 1 Dec 2002 15:26:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A569D43ED1; Sun, 1 Dec 2002 15:26:03 -0800 (PST) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1NM2mV085637; Sun, 1 Dec 2002 15:22:02 -0800 (PST) (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1NM2uo085636; Sun, 1 Dec 2002 15:22:02 -0800 (PST) Message-Id: <200212012322.gB1NM2uo085636@repoman.freebsd.org> From: Martin Heinen Date: Sun, 1 Dec 2002 15:22:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/security chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mheinen 2002/12/01 15:22:02 PST Modified files: en_US.ISO8859-1/books/handbook/security chapter.sgml Log: Minor markup changes, remove a duplicate paragraph, fix a typo. Reviewed by: trhodes Revision Changes Path 1.121 +5 -8 doc/en_US.ISO8859-1/books/handbook/security/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15:34:29 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C428837B401; Sun, 1 Dec 2002 15:34:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83D0143E88; Sun, 1 Dec 2002 15:34:28 -0800 (PST) (envelope-from tmm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1NUQmV086298; Sun, 1 Dec 2002 15:30:26 -0800 (PST) (envelope-from tmm@repoman.freebsd.org) Received: (from tmm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1NUQiD086297; Sun, 1 Dec 2002 15:30:26 -0800 (PST) Message-Id: <200212012330.gB1NUQiD086297@repoman.freebsd.org> From: Thomas Moestl Date: Sun, 1 Dec 2002 15:30:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include bus_common.h src/sys/sparc64/pci psycho.c src/sys/sparc64/sbus sbus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tmm 2002/12/01 15:30:26 PST Modified files: sys/sparc64/include bus_common.h sys/sparc64/pci psycho.c sys/sparc64/sbus sbus.c Log: Always initialize the UPA target module id in the interrupt mapping register to the one of the processor doing the interrupt setup. This is required since this field is preinitialized to 0, but there exist machines which have no processor with a MID of 0 (e.g. e450s with 1 or 2 processors). Add some more macros for handle the interrupt mapping registers, and rename some existing ones for consistency. Approved by: re Revision Changes Path 1.3 +18 -17 src/sys/sparc64/include/bus_common.h 1.20 +7 -7 src/sys/sparc64/pci/psycho.c 1.6 +9 -9 src/sys/sparc64/sbus/sbus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15:34:36 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57AA237B412; Sun, 1 Dec 2002 15:34:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF8CC43EBE; Sun, 1 Dec 2002 15:34:34 -0800 (PST) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1NUXmV086324; Sun, 1 Dec 2002 15:30:33 -0800 (PST) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1NUXSR086323; Sun, 1 Dec 2002 15:30:33 -0800 (PST) Message-Id: <200212012330.gB1NUXSR086323@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 1 Dec 2002 15:30:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/x11 chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG blackend 2002/12/01 15:30:33 PST Modified files: en_US.ISO8859-1/books/handbook/x11 chapter.sgml Log: Add info about devfs(5) where needed. Revision Changes Path 1.98 +7 -1 doc/en_US.ISO8859-1/books/handbook/x11/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15:41:17 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46A1037B401; Sun, 1 Dec 2002 15:41:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA14C43E88; Sun, 1 Dec 2002 15:41:15 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1NbEmV086914; Sun, 1 Dec 2002 15:37:14 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1NbE0R086913; Sun, 1 Dec 2002 15:37:14 -0800 (PST) Message-Id: <200212012337.gB1NbE0R086913@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 15:37:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/spiralloops/files patch-Output.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 15:37:14 PST Added files: audio/spiralloops/files patch-Output.h Log: machine/soundcard.h -> sys/soundcard.h This port is still broken (blows up later in the same file) Revision Changes Path 1.1 +20 -0 ports/audio/spiralloops/files/patch-Output.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15:44:14 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE8C137B401; Sun, 1 Dec 2002 15:44:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DBDE43EA9; Sun, 1 Dec 2002 15:44:13 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1NeBmV087060; Sun, 1 Dec 2002 15:40:12 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1NeBSH087059; Sun, 1 Dec 2002 15:40:11 -0800 (PST) Message-Id: <200212012340.gB1NeBSH087059@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 15:40:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/amanda-server pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 15:40:11 PST Modified files: misc/amanda-server pkg-plist Log: Remove duplicate entry Revision Changes Path 1.25 +0 -1 ports/misc/amanda-server/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 15:47:14 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A192A37B404; Sun, 1 Dec 2002 15:47:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3354543EC5; Sun, 1 Dec 2002 15:47:13 -0800 (PST) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1NhBmV087211; Sun, 1 Dec 2002 15:43:11 -0800 (PST) (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1NhBIJ087210; Sun, 1 Dec 2002 15:43:11 -0800 (PST) Message-Id: <200212012343.gB1NhBIJ087210@repoman.freebsd.org> From: Maho Nakata Date: Sun, 1 Dec 2002 15:43:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/povray Makefile distinfo pkg-descr pkg-plist ports/graphics/povray/files patch-Makefile.in patch-povray.ini patch-src::Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG maho 2002/12/01 15:43:11 PST Modified files: graphics/povray Makefile distinfo pkg-descr pkg-plist graphics/povray/files patch-Makefile.in patch-povray.ini patch-src::Makefile.in Log: 1. Fix checksum error and update to 3.50c 3.50c includes some very minor bug fixes in script and source files. 2. Added WITH_OPTIMIZE_FLAGS for optimization 3. change e-mail of maintainer 4. bump port revision Noticed by : Rainer Duffner , Gettit Kuehn and bento's log(no error at December? at least November's log I noticed there was checksum error) Reviewed by : knu (mentor) Revision Changes Path 1.29 +27 -7 ports/graphics/povray/Makefile 1.9 +1 -1 ports/graphics/povray/distinfo 1.2 +15 -15 ports/graphics/povray/files/patch-Makefile.in 1.2 +4 -4 ports/graphics/povray/files/patch-povray.ini 1.2 +13 -16 ports/graphics/povray/files/patch-src::Makefile.in 1.7 +1 -1 ports/graphics/povray/pkg-descr 1.7 +801 -800 ports/graphics/povray/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16: 0:29 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E6D537B401; Sun, 1 Dec 2002 16:00:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E17943E9C; Sun, 1 Dec 2002 16:00:28 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1NuQmV088032; Sun, 1 Dec 2002 15:56:26 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1NuQeO088031; Sun, 1 Dec 2002 15:56:26 -0800 (PST) Message-Id: <200212012356.gB1NuQeO088031@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 15:56:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/flux Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 15:56:26 PST Modified files: devel/flux Makefile Log: BROKEN: does not compile on 5.x Revision Changes Path 1.17 +7 -1 ports/devel/flux/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16: 2:11 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C97F37B401; Sun, 1 Dec 2002 16:02:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C5CE43E9C; Sun, 1 Dec 2002 16:02:10 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1Nw8mV088292; Sun, 1 Dec 2002 15:58:08 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1Nw8um088291; Sun, 1 Dec 2002 15:58:08 -0800 (PST) Message-Id: <200212012358.gB1Nw8um088291@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 15:58:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/portuguese/ispell-pt_BR Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 15:58:08 PST Modified files: portuguese/ispell-pt_BR Makefile Log: BROKEN: Does not build on 5.0 Revision Changes Path 1.8 +7 -1 ports/portuguese/ispell-pt_BR/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16: 3:52 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8684037B401; Sun, 1 Dec 2002 16:03:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36B9B43EBE; Sun, 1 Dec 2002 16:03:51 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1NxnmV088357; Sun, 1 Dec 2002 15:59:49 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB1NxnAl088356; Sun, 1 Dec 2002 15:59:49 -0800 (PST) Message-Id: <200212012359.gB1NxnAl088356@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 15:59:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/frodo Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 15:59:49 PST Modified files: emulators/frodo Makefile Log: BROKEN on 5.0: does not build Revision Changes Path 1.18 +7 -1 ports/emulators/frodo/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16: 4:46 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0A6D37B401; Sun, 1 Dec 2002 16:04:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5060F43EAF; Sun, 1 Dec 2002 16:04:45 -0800 (PST) (envelope-from chris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB200hmV088439; Sun, 1 Dec 2002 16:00:43 -0800 (PST) (envelope-from chris@repoman.freebsd.org) Received: (from chris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB200htF088438; Sun, 1 Dec 2002 16:00:43 -0800 (PST) Message-Id: <200212020000.gB200htF088438@repoman.freebsd.org> From: Chris Costello Date: Sun, 1 Dec 2002 16:00:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 mac.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG chris 2002/12/01 16:00:43 PST Modified files: share/man/man9 mac.9 Log: Spelling: "current" -> "currently" Approved by: re Sponsored by: DARPA, Network Associates Labs Revision Changes Path 1.3 +1 -1 src/share/man/man9/mac.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16: 8:48 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44EF837B401; Sun, 1 Dec 2002 16:08:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7FAC43EA9; Sun, 1 Dec 2002 16:08:46 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB204jmV088547; Sun, 1 Dec 2002 16:04:45 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB204jZx088546; Sun, 1 Dec 2002 16:04:45 -0800 (PST) Message-Id: <200212020004.gB204jZx088546@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:04:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/x3270/files patch-ab patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:04:45 PST Added files: x11/x3270/files patch-ab patch-ac Log: Fix build on 5.0 (remove bogus sys_nerr declaration) Revision Changes Path 1.1 +12 -0 ports/x11/x3270/files/patch-ab (new) 1.1 +12 -0 ports/x11/x3270/files/patch-ac (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:14:20 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E7EB37B401; Sun, 1 Dec 2002 16:14:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16E9343EA9; Sun, 1 Dec 2002 16:14:19 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20AHmV089130; Sun, 1 Dec 2002 16:10:17 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20AHDK089129; Sun, 1 Dec 2002 16:10:17 -0800 (PST) Message-Id: <200212020010.gB20AHDK089129@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:10:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/llnlxdir/files patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:10:17 PST Added files: ftp/llnlxdir/files patch-ab Log: Fix build on 5.0 (remove bogus declaration of sys_nerr) Revision Changes Path 1.1 +12 -0 ports/ftp/llnlxdir/files/patch-ab (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:14:57 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6675937B401; Sun, 1 Dec 2002 16:14:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16A1B43EAF; Sun, 1 Dec 2002 16:14:56 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20AsmV089164; Sun, 1 Dec 2002 16:10:54 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20AsVs089163; Sun, 1 Dec 2002 16:10:54 -0800 (PST) Message-Id: <200212020010.gB20AsVs089163@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 16:10:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/seti_applet Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 16:10:54 PST Modified files: astro/seti_applet Makefile Log: Fix package building due to GNOME'isms. Reported by: bento Requested by: portmgr (kris) Revision Changes Path 1.17 +5 -10 ports/astro/seti_applet/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:17:16 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6B9537B401; Sun, 1 Dec 2002 16:17:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8665D43EAF; Sun, 1 Dec 2002 16:17:15 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20DDmV089258; Sun, 1 Dec 2002 16:13:13 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20DDrg089257; Sun, 1 Dec 2002 16:13:13 -0800 (PST) Message-Id: <200212020013.gB20DDrg089257@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:13:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/unroff/files patch-b X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:13:13 PST Modified files: textproc/unroff/files patch-b Log: Fix build on 5.0 (remove bogus declaration of sys_nerr) Revision Changes Path 1.2 +13 -15 ports/textproc/unroff/files/patch-b To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:21: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FB7937B411; Sun, 1 Dec 2002 16:21:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E255743EA9; Sun, 1 Dec 2002 16:20:59 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20GwmV089717; Sun, 1 Dec 2002 16:16:58 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20Gv62089710; Sun, 1 Dec 2002 16:16:57 -0800 (PST) Message-Id: <200212020016.gB20Gv62089710@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 16:16:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/amyc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 16:16:57 PST Modified files: www/amyc Makefile Log: Fix package building due to a REINPLACE_CMD typo. Reported by: bento Requested by: portmgr (kris) Revision Changes Path 1.9 +1 -4 ports/www/amyc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:28:56 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC7F337B401; Sun, 1 Dec 2002 16:28:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D6F343E88; Sun, 1 Dec 2002 16:28:55 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20OrmV089924; Sun, 1 Dec 2002 16:24:53 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20Orvj089923; Sun, 1 Dec 2002 16:24:53 -0800 (PST) Message-Id: <200212020024.gB20Orvj089923@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:24:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/dvi2ps Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:24:53 PST Modified files: japanese/dvi2ps Makefile Log: BROKEN on 5.0: does not compile Revision Changes Path 1.19 +7 -1 ports/japanese/dvi2ps/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:29:39 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8083F37B401; Sun, 1 Dec 2002 16:29:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3239B43EC5; Sun, 1 Dec 2002 16:29:38 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20PamV090004; Sun, 1 Dec 2002 16:25:36 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20PaNx090003; Sun, 1 Dec 2002 16:25:36 -0800 (PST) Message-Id: <200212020025.gB20PaNx090003@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:25:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gopher Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:25:36 PST Modified files: net/gopher Makefile Log: BROKEN on 5.0: does not compile Revision Changes Path 1.23 +7 -1 ports/net/gopher/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:30:13 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4658137B401; Sun, 1 Dec 2002 16:30:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBD2D43E9C; Sun, 1 Dec 2002 16:30:11 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20QAmV090072; Sun, 1 Dec 2002 16:26:10 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20QAbr090071; Sun, 1 Dec 2002 16:26:10 -0800 (PST) Message-Id: <200212020026.gB20QAbr090071@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:26:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/cel Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:26:10 PST Modified files: lang/cel Makefile Log: BROKEN on 5.0: does not compile Revision Changes Path 1.3 +8 -2 ports/lang/cel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:31:39 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDB2637B401; Sun, 1 Dec 2002 16:31:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EAB743E4A; Sun, 1 Dec 2002 16:31:38 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20RamV090399; Sun, 1 Dec 2002 16:27:36 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20RaAi090398; Sun, 1 Dec 2002 16:27:36 -0800 (PST) Message-Id: <200212020027.gB20RaAi090398@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:27:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/pybliographer Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:27:36 PST Modified files: misc/pybliographer Makefile Log: BROKEN: Needs GNU recode 3.5 Revision Changes Path 1.15 +2 -0 ports/misc/pybliographer/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:32:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1153B37B401; Sun, 1 Dec 2002 16:32:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B589143E4A; Sun, 1 Dec 2002 16:32:21 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20SKmV090454; Sun, 1 Dec 2002 16:28:20 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20SJvn090453; Sun, 1 Dec 2002 16:28:19 -0800 (PST) Message-Id: <200212020028.gB20SJvn090453@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:28:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/wmg Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:28:19 PST Modified files: x11-wm/wmg Makefile Log: BROKEN on 5.0: does not compile Revision Changes Path 1.13 +8 -2 ports/x11-wm/wmg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:33:15 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9658B37B401; Sun, 1 Dec 2002 16:33:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 476FE43EBE; Sun, 1 Dec 2002 16:33:14 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20TCmV090503; Sun, 1 Dec 2002 16:29:12 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20TChf090502; Sun, 1 Dec 2002 16:29:12 -0800 (PST) Message-Id: <200212020029.gB20TChf090502@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:29:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/bakery Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:29:12 PST Modified files: x11-toolkits/bakery Makefile Log: BROKEN On 5.0: does not compile Revision Changes Path 1.13 +7 -1 ports/x11-toolkits/bakery/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:35: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82FBB37B401; Sun, 1 Dec 2002 16:35:04 -0800 (PST) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id DED5D43EA9; Sun, 1 Dec 2002 16:35:03 -0800 (PST) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.12.6/8.12.6) with ESMTP id gB20Y8Dj010984; Sun, 1 Dec 2002 19:34:08 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: Re: cvs commit: ports/x11-toolkits/bakery Makefile From: Joe Marcus Clarke To: Kris Kennaway Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200212020029.gB20TChf090502@repoman.freebsd.org> References: <200212020029.gB20TChf090502@repoman.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-DWlS9LI3hf7oe+LudpDf" Organization: MarcusCom, Inc. Message-Id: <1038789302.357.4.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.0 Date: 01 Dec 2002 19:35:02 -0500 X-Spam-Status: No, hits=-3.0 required=5.0 tests=AWL,IN_REP_TO,NOSPAM_INC,PGP_SIGNATURE_2,REFERENCES, SPAM_PHRASE_00_01 version=2.43 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-DWlS9LI3hf7oe+LudpDf Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2002-12-01 at 19:29, Kris Kennaway wrote: > kris 2002/12/01 16:29:12 PST >=20 > Modified files: > x11-toolkits/bakery Makefile=20 > Log: > BROKEN On 5.0: does not compile It should. I haven't seen the bento log for 1.0.2 come around yet. Are you basing this on 0.7.0? Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-DWlS9LI3hf7oe+LudpDf Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA96qq1b2iPiv4Uz4cRAvwzAKCntTeCt/P2u+daNGDs6uuDl4B73gCePBDP Ye5WDwQ+5rscbO+YR/LzI3w= =D8JI -----END PGP SIGNATURE----- --=-DWlS9LI3hf7oe+LudpDf-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:35:56 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D329937B401; Sun, 1 Dec 2002 16:35:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83D2043EAF; Sun, 1 Dec 2002 16:35:55 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20VrmV090617; Sun, 1 Dec 2002 16:31:53 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20VrjN090616; Sun, 1 Dec 2002 16:31:53 -0800 (PST) Message-Id: <200212020031.gB20VrjN090616@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:31:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/grn Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:31:53 PST Modified files: news/grn Makefile Log: BROKEN: Does not compile on 5.0 Revision Changes Path 1.9 +8 -2 ports/news/grn/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:37:30 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0D8337B401; Sun, 1 Dec 2002 16:37:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61CB643EA9; Sun, 1 Dec 2002 16:37:29 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20XRmV090683; Sun, 1 Dec 2002 16:33:27 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20XR8u090682; Sun, 1 Dec 2002 16:33:27 -0800 (PST) Message-Id: <200212020033.gB20XR8u090682@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:33:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/glade-- Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:33:27 PST Modified files: devel/glade-- Makefile Log: BROKEN on 5.0: does not compile Revision Changes Path 1.6 +7 -1 ports/devel/glade--/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:40: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9F1037B401; Sun, 1 Dec 2002 16:40:00 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-64-169-106-47.dsl.lsan03.pacbell.net [64.169.106.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id D728D43E9C; Sun, 1 Dec 2002 16:39:59 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 6298C66BE3; Sun, 1 Dec 2002 16:39:59 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 4951312FD; Sun, 1 Dec 2002 16:39:59 -0800 (PST) Date: Sun, 1 Dec 2002 16:39:59 -0800 From: Kris Kennaway To: Joe Marcus Clarke Cc: Kris Kennaway , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11-toolkits/bakery Makefile Message-ID: <20021202003959.GB96896@rot13.obsecurity.org> References: <200212020029.gB20TChf090502@repoman.freebsd.org> <1038789302.357.4.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZfOjI3PrQbgiZnxM" Content-Disposition: inline In-Reply-To: <1038789302.357.4.camel@shumai.marcuscom.com> User-Agent: Mutt/1.4i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --ZfOjI3PrQbgiZnxM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Dec 01, 2002 at 07:35:02PM -0500, Joe Marcus Clarke wrote: > On Sun, 2002-12-01 at 19:29, Kris Kennaway wrote: > > kris 2002/12/01 16:29:12 PST > >=20 > > Modified files: > > x11-toolkits/bakery Makefile=20 > > Log: > > BROKEN On 5.0: does not compile >=20 > It should. I haven't seen the bento log for 1.0.2 come around yet. Are > you basing this on 0.7.0? Oops, yes. I'll revert the commit. Kris --ZfOjI3PrQbgiZnxM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE96qveWry0BWjoQKURAv5wAKC6prtKbIm0olZcSRrgXTvEcKhIRgCgr2af Gk1ELopiDSBNB+MJ18afp7o= =O3pT -----END PGP SIGNATURE----- --ZfOjI3PrQbgiZnxM-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:40:40 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75BE737B401; Sun, 1 Dec 2002 16:40:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 264B543E88; Sun, 1 Dec 2002 16:40:39 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20abmV091048; Sun, 1 Dec 2002 16:36:37 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20abbf091045; Sun, 1 Dec 2002 16:36:37 -0800 (PST) Message-Id: <200212020036.gB20abbf091045@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:36:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/bakery Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:36:37 PST Modified files: x11-toolkits/bakery Makefile Log: Revert previous commit (port was already fixed) Submitted by: marcus Revision Changes Path 1.14 +1 -7 ports/x11-toolkits/bakery/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:42: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D4AC37B401; Sun, 1 Dec 2002 16:42:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B39CE43E88; Sun, 1 Dec 2002 16:42:03 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20c1mV091222; Sun, 1 Dec 2002 16:38:01 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20c1Js091221; Sun, 1 Dec 2002 16:38:01 -0800 (PST) Message-Id: <200212020038.gB20c1Js091221@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:38:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mmc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:38:01 PST Modified files: mail/mmc Makefile Log: BROKEN on 5.0: does not compile Revision Changes Path 1.7 +8 -2 ports/mail/mmc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:43: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 643D237B401; Sun, 1 Dec 2002 16:43:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1639C43E88; Sun, 1 Dec 2002 16:43:05 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20d3mV091280; Sun, 1 Dec 2002 16:39:03 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20d3Fd091279; Sun, 1 Dec 2002 16:39:03 -0800 (PST) Message-Id: <200212020039.gB20d3Fd091279@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:39:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/rascal Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:39:03 PST Modified files: math/rascal Makefile Log: BROKEN on 5.0: does not compile Revision Changes Path 1.18 +7 -1 ports/math/rascal/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:44:52 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79B7537B404; Sun, 1 Dec 2002 16:44:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB25E43EA9; Sun, 1 Dec 2002 16:44:50 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20enmV091365; Sun, 1 Dec 2002 16:40:49 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20enPn091364; Sun, 1 Dec 2002 16:40:49 -0800 (PST) Message-Id: <200212020040.gB20enPn091364@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:40:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/gmail Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:40:49 PST Modified files: mail/gmail Makefile Log: BROKEN on 5.0: does not compile Revision Changes Path 1.6 +7 -3 ports/mail/gmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:45:41 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C94DC37B401; Sun, 1 Dec 2002 16:45:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 790B943EAF; Sun, 1 Dec 2002 16:45:40 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20fcmV091418; Sun, 1 Dec 2002 16:41:38 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20fcKv091417; Sun, 1 Dec 2002 16:41:38 -0800 (PST) Message-Id: <200212020041.gB20fcKv091417@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:41:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/truevision Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:41:38 PST Modified files: graphics/truevision Makefile Log: BROKEN on 5.0: does not compile Revision Changes Path 1.6 +7 -1 ports/graphics/truevision/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:46:46 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E302937B401; Sun, 1 Dec 2002 16:46:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93A0443E9C; Sun, 1 Dec 2002 16:46:45 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20ghmV091460; Sun, 1 Dec 2002 16:42:43 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20gh0P091459; Sun, 1 Dec 2002 16:42:43 -0800 (PST) Message-Id: <200212020042.gB20gh0P091459@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:42:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/abiword Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:42:43 PST Modified files: chinese/abiword Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.4 +2 -0 ports/chinese/abiword/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 16:49:52 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E04537B401; Sun, 1 Dec 2002 16:49:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B16B443EAF; Sun, 1 Dec 2002 16:49:51 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB20jnmV091594; Sun, 1 Dec 2002 16:45:49 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB20jngM091593; Sun, 1 Dec 2002 16:45:49 -0800 (PST) Message-Id: <200212020045.gB20jngM091593@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 1 Dec 2002 16:45:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/glame Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/01 16:45:49 PST Modified files: audio/glame Makefile Log: BROKEN on 5.0: does not compile Revision Changes Path 1.9 +7 -1 ports/audio/glame/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17: 8:40 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C458137B401; Sun, 1 Dec 2002 17:08:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 738B143E9C; Sun, 1 Dec 2002 17:08:39 -0800 (PST) (envelope-from chris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB214bmV092708; Sun, 1 Dec 2002 17:04:37 -0800 (PST) (envelope-from chris@repoman.freebsd.org) Received: (from chris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB214bgT092707; Sun, 1 Dec 2002 17:04:37 -0800 (PST) Message-Id: <200212020104.gB214bgT092707@repoman.freebsd.org> From: Chris Costello Date: Sun, 1 Dec 2002 17:04:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 Makefile mac_mls.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG chris 2002/12/01 17:04:37 PST Modified files: share/man/man9 Makefile Added files: share/man/man9 mac_mls.9 Log: Document the MLS policy Approved by: re Sponsored by: DARPA, Network Associates Labs Obtained from: TrustedBSD Project Revision Changes Path 1.174 +1 -1 src/share/man/man9/Makefile 1.1 +202 -0 src/share/man/man9/mac_mls.9 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17: 9:12 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E89937B401; Sun, 1 Dec 2002 17:09:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00DEE43EB2; Sun, 1 Dec 2002 17:09:11 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2159mV092767; Sun, 1 Dec 2002 17:05:09 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB21596L092766; Sun, 1 Dec 2002 17:05:09 -0800 (PST) Message-Id: <200212020105.gB21596L092766@repoman.freebsd.org> From: Peter Wemm Date: Sun, 1 Dec 2002 17:05:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdtime localtime.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/12/01 17:05:09 PST Modified files: lib/libc/stdtime localtime.c Log: Replace rev 1.33 with a real fix. The problem was integer overflows when trying to store the year in a signed int. The maximum time_t on ia64 is around 292 billion years in the future, but 'int' and struct tm.tm_year can only represent then ext 2.1 billion years or so. This solves the problem of mktime/localtime looping on ia64. Unfortunately, the standards say that tm_year is an 'int', so we are still stuck with a y2147483647 bug. bash2's configure script looks for bugs in mktime() and fails on ia64 because of this. However, mktime() on FreeBSD fails the test normally anyway so this is no big loss. This change does not affect any other platforms besides ia64. Approved by: re Revision Changes Path 1.34 +2 -8 src/lib/libc/stdtime/localtime.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17:16: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62F6637B401; Sun, 1 Dec 2002 17:16:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F96A43E88; Sun, 1 Dec 2002 17:16:08 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB21C6mV093409; Sun, 1 Dec 2002 17:12:06 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB21C67S093408; Sun, 1 Dec 2002 17:12:06 -0800 (PST) Message-Id: <200212020112.gB21C67S093408@repoman.freebsd.org> From: Alan Cox Date: Sun, 1 Dec 2002 17:12:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha vm_machdep.c src/sys/ia64/ia64 vm_machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2002/12/01 17:12:06 PST Modified files: sys/alpha/alpha vm_machdep.c sys/ia64/ia64 vm_machdep.c Log: MFi386 Hold the page queues lock around vm_page_unhold() in vunmapbuf(). Approved by: re (blanket) Revision Changes Path 1.76 +2 -0 src/sys/alpha/alpha/vm_machdep.c 1.50 +2 -0 src/sys/ia64/ia64/vm_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17:32:23 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5BD237B401; Sun, 1 Dec 2002 17:32:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81B0E43EBE; Sun, 1 Dec 2002 17:32:22 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB21SKmV095267; Sun, 1 Dec 2002 17:28:20 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB21SK3N095266; Sun, 1 Dec 2002 17:28:20 -0800 (PST) Message-Id: <200212020128.gB21SK3N095266@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 17:28:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/bakery/files patch-bakery_App_App.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 17:28:20 PST Added files: x11-toolkits/bakery/files patch-bakery_App_App.h Log: Add a forgotten patch that makes the whole thing work on -CURRENT. Thanks to kris for making me revisit this. Revision Changes Path 1.1 +11 -0 ports/x11-toolkits/bakery/files/patch-bakery_App_App.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17:36:26 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7792037B401; Sun, 1 Dec 2002 17:36:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E046343EC2; Sun, 1 Dec 2002 17:36:20 -0800 (PST) (envelope-from horikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB21WImV095858; Sun, 1 Dec 2002 17:32:18 -0800 (PST) (envelope-from horikawa@repoman.freebsd.org) Received: (from horikawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB21WIZR095857; Sun, 1 Dec 2002 17:32:18 -0800 (PST) Message-Id: <200212020132.gB21WIZR095857@repoman.freebsd.org> From: Kazuo Horikawa Date: Sun, 1 Dec 2002 17:32:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man2 _exit.2 accept.2 access.2 acct.2 adjtime.2 aio_cancel.2 aio_error.2 aio_read.2 aio_return.2 aio_suspend.2 aio_waitcomplete.2 aio_write.2 bind.2 brk.2 chdir.2 chflags.2 chmod.2 chown.2 chroot.2 clock_gettime.2 close.2 ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2002/12/01 17:32:18 PST Modified files: ja_JP.eucJP/man/man2 _exit.2 accept.2 access.2 acct.2 adjtime.2 aio_cancel.2 aio_error.2 aio_read.2 aio_return.2 aio_suspend.2 aio_waitcomplete.2 aio_write.2 bind.2 brk.2 chdir.2 chflags.2 chmod.2 chown.2 chroot.2 clock_gettime.2 close.2 connect.2 creat.2 dup.2 execve.2 fcntl.2 fhopen.2 flock.2 fork.2 fsync.2 getdirentries.2 getdtablesize.2 getfh.2 getfsstat.2 getgid.2 getgroups.2 getitimer.2 getlogin.2 getpeername.2 getpgrp.2 getpid.2 getpriority.2 getrlimit.2 getrusage.2 getsid.2 getsockname.2 getsockopt.2 gettimeofday.2 getuid.2 i386_get_ioperm.2 i386_get_ldt.2 i386_vm86.2 intro.2 ioctl.2 issetugid.2 jail.2 kill.2 killpg.2 kldfind.2 kldfirstmod.2 kldload.2 kldnext.2 kldstat.2 kldsym.2 kldunload.2 kqueue.2 ktrace.2 link.2 listen.2 lseek.2 madvise.2 mincore.2 minherit.2 mkdir.2 mkfifo.2 mknod.2 mlock.2 mmap.2 modfind.2 modnext.2 modstat.2 mount.2 mprotect.2 msync.2 munmap.2 nanosleep.2 nfssvc.2 open.2 pathconf.2 pipe.2 poll.2 profil.2 ptrace.2 quotactl.2 read.2 readlink.2 reboot.2 recv.2 rename.2 revoke.2 rfork.2 rmdir.2 rtprio.2 sched_get_priority_max.2 sched_setparam.2 sched_setscheduler.2 sched_yield.2 select.2 semctl.2 semget.2 semop.2 send.2 sendfile.2 setgroups.2 setpgid.2 setregid.2 setresuid.2 setreuid.2 setsid.2 setuid.2 shmat.2 shmctl.2 shmget.2 shutdown.2 sigaction.2 sigaltstack.2 sigpause.2 sigpending.2 sigprocmask.2 sigreturn.2 sigsetmask.2 sigstack.2 sigsuspend.2 sigvec.2 socket.2 socketpair.2 stat.2 statfs.2 swapon.2 symlink.2 sync.2 sysarch.2 syscall.2 truncate.2 umask.2 undelete.2 unlink.2 utimes.2 vfork.2 wait.2 write.2 Log: Catch up with 5.0-CURRENT-20021105-JPSNAP Submitted by: SUZUKI Koichi Revision Changes Path 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/_exit.2 1.10 +3 -3 doc/ja_JP.eucJP/man/man2/accept.2 1.7 +41 -29 doc/ja_JP.eucJP/man/man2/access.2 1.7 +2 -2 doc/ja_JP.eucJP/man/man2/acct.2 1.8 +3 -3 doc/ja_JP.eucJP/man/man2/adjtime.2 1.7 +7 -7 doc/ja_JP.eucJP/man/man2/aio_cancel.2 1.8 +3 -2 doc/ja_JP.eucJP/man/man2/aio_error.2 1.9 +9 -3 doc/ja_JP.eucJP/man/man2/aio_read.2 1.8 +11 -10 doc/ja_JP.eucJP/man/man2/aio_return.2 1.7 +8 -7 doc/ja_JP.eucJP/man/man2/aio_suspend.2 1.7 +3 -2 doc/ja_JP.eucJP/man/man2/aio_waitcomplete.2 1.7 +8 -2 doc/ja_JP.eucJP/man/man2/aio_write.2 1.12 +4 -3 doc/ja_JP.eucJP/man/man2/bind.2 1.12 +1 -1 doc/ja_JP.eucJP/man/man2/brk.2 1.9 +3 -3 doc/ja_JP.eucJP/man/man2/chdir.2 1.8 +17 -5 doc/ja_JP.eucJP/man/man2/chflags.2 1.9 +4 -4 doc/ja_JP.eucJP/man/man2/chmod.2 1.9 +5 -5 doc/ja_JP.eucJP/man/man2/chown.2 1.8 +3 -3 doc/ja_JP.eucJP/man/man2/chroot.2 1.10 +1 -1 doc/ja_JP.eucJP/man/man2/clock_gettime.2 1.10 +3 -3 doc/ja_JP.eucJP/man/man2/close.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/connect.2 1.6 +1 -1 doc/ja_JP.eucJP/man/man2/creat.2 1.8 +4 -4 doc/ja_JP.eucJP/man/man2/dup.2 1.8 +23 -3 doc/ja_JP.eucJP/man/man2/execve.2 1.14 +31 -8 doc/ja_JP.eucJP/man/man2/fcntl.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/fhopen.2 1.9 +2 -2 doc/ja_JP.eucJP/man/man2/flock.2 1.8 +4 -3 doc/ja_JP.eucJP/man/man2/fork.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/fsync.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/getdirentries.2 1.6 +1 -1 doc/ja_JP.eucJP/man/man2/getdtablesize.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/getfh.2 1.6 +1 -1 doc/ja_JP.eucJP/man/man2/getfsstat.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/getgid.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/getgroups.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/getitimer.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/getlogin.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/getpeername.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/getpgrp.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/getpid.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/getpriority.2 1.10 +3 -2 doc/ja_JP.eucJP/man/man2/getrlimit.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/getrusage.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/getsid.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/getsockname.2 1.11 +1 -1 doc/ja_JP.eucJP/man/man2/getsockopt.2 1.10 +2 -1 doc/ja_JP.eucJP/man/man2/gettimeofday.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/getuid.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/i386_get_ioperm.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/i386_get_ldt.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/i386_vm86.2 1.8 +6 -9 doc/ja_JP.eucJP/man/man2/intro.2 1.9 +3 -2 doc/ja_JP.eucJP/man/man2/ioctl.2 1.5 +1 -1 doc/ja_JP.eucJP/man/man2/issetugid.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/jail.2 1.11 +1 -1 doc/ja_JP.eucJP/man/man2/kill.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/killpg.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/kldfind.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/kldfirstmod.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/kldload.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/kldnext.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/kldstat.2 1.4 +3 -1 doc/ja_JP.eucJP/man/man2/kldsym.2 1.6 +2 -11 doc/ja_JP.eucJP/man/man2/kldunload.2 1.11 +2 -2 doc/ja_JP.eucJP/man/man2/kqueue.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/ktrace.2 1.8 +5 -2 doc/ja_JP.eucJP/man/man2/link.2 1.10 +8 -6 doc/ja_JP.eucJP/man/man2/listen.2 1.8 +9 -4 doc/ja_JP.eucJP/man/man2/lseek.2 1.9 +1 -2 doc/ja_JP.eucJP/man/man2/madvise.2 1.8 +5 -2 doc/ja_JP.eucJP/man/man2/mincore.2 1.9 +8 -2 doc/ja_JP.eucJP/man/man2/minherit.2 1.10 +1 -1 doc/ja_JP.eucJP/man/man2/mkdir.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/mkfifo.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/mknod.2 1.8 +1 -2 doc/ja_JP.eucJP/man/man2/mlock.2 1.12 +10 -14 doc/ja_JP.eucJP/man/man2/mmap.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/modfind.2 1.6 +1 -1 doc/ja_JP.eucJP/man/man2/modnext.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/modstat.2 1.10 +1 -24 doc/ja_JP.eucJP/man/man2/mount.2 1.8 +1 -2 doc/ja_JP.eucJP/man/man2/mprotect.2 1.10 +1 -2 doc/ja_JP.eucJP/man/man2/msync.2 1.8 +1 -2 doc/ja_JP.eucJP/man/man2/munmap.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/nanosleep.2 1.6 +1 -1 doc/ja_JP.eucJP/man/man2/nfssvc.2 1.13 +3 -4 doc/ja_JP.eucJP/man/man2/open.2 1.9 +43 -2 doc/ja_JP.eucJP/man/man2/pathconf.2 1.10 +1 -1 doc/ja_JP.eucJP/man/man2/pipe.2 1.7 +3 -4 doc/ja_JP.eucJP/man/man2/poll.2 1.10 +1 -1 doc/ja_JP.eucJP/man/man2/profil.2 1.11 +33 -7 doc/ja_JP.eucJP/man/man2/ptrace.2 1.11 +1 -1 doc/ja_JP.eucJP/man/man2/quotactl.2 1.10 +1 -1 doc/ja_JP.eucJP/man/man2/read.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/readlink.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/reboot.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/recv.2 1.11 +1 -1 doc/ja_JP.eucJP/man/man2/rename.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/revoke.2 1.11 +3 -1 doc/ja_JP.eucJP/man/man2/rfork.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/rmdir.2 1.10 +1 -1 doc/ja_JP.eucJP/man/man2/rtprio.2 1.10 +6 -4 doc/ja_JP.eucJP/man/man2/sched_get_priority_max.2 1.10 +1 -1 doc/ja_JP.eucJP/man/man2/sched_setparam.2 1.10 +1 -1 doc/ja_JP.eucJP/man/man2/sched_setscheduler.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/sched_yield.2 1.10 +1 -1 doc/ja_JP.eucJP/man/man2/select.2 1.9 +16 -1 doc/ja_JP.eucJP/man/man2/semctl.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/semget.2 1.9 +129 -61 doc/ja_JP.eucJP/man/man2/semop.2 1.10 +3 -1 doc/ja_JP.eucJP/man/man2/send.2 1.10 +1 -1 doc/ja_JP.eucJP/man/man2/sendfile.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/setgroups.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/setpgid.2 1.8 +4 -1 doc/ja_JP.eucJP/man/man2/setregid.2 1.9 +19 -3 doc/ja_JP.eucJP/man/man2/setresuid.2 1.9 +7 -1 doc/ja_JP.eucJP/man/man2/setreuid.2 1.6 +1 -1 doc/ja_JP.eucJP/man/man2/setsid.2 1.9 +37 -1 doc/ja_JP.eucJP/man/man2/setuid.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/shmat.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/shmctl.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/shmget.2 1.11 +1 -1 doc/ja_JP.eucJP/man/man2/shutdown.2 1.10 +38 -14 doc/ja_JP.eucJP/man/man2/sigaction.2 1.10 +2 -2 doc/ja_JP.eucJP/man/man2/sigaltstack.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/sigpause.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/sigpending.2 1.8 +3 -2 doc/ja_JP.eucJP/man/man2/sigprocmask.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/sigreturn.2 1.7 +26 -11 doc/ja_JP.eucJP/man/man2/sigsetmask.2 1.6 +2 -2 doc/ja_JP.eucJP/man/man2/sigstack.2 1.6 +1 -1 doc/ja_JP.eucJP/man/man2/sigsuspend.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/sigvec.2 1.10 +1 -1 doc/ja_JP.eucJP/man/man2/socket.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/socketpair.2 1.11 +41 -33 doc/ja_JP.eucJP/man/man2/stat.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/statfs.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/swapon.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/symlink.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/sync.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/sysarch.2 1.7 +1 -1 doc/ja_JP.eucJP/man/man2/syscall.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/truncate.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/umask.2 1.8 +2 -2 doc/ja_JP.eucJP/man/man2/undelete.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/unlink.2 1.10 +12 -3 doc/ja_JP.eucJP/man/man2/utimes.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/vfork.2 1.8 +12 -1 doc/ja_JP.eucJP/man/man2/wait.2 1.9 +7 -1 doc/ja_JP.eucJP/man/man2/write.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17:38:39 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E9B737B401; Sun, 1 Dec 2002 17:38:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CA9043E9C; Sun, 1 Dec 2002 17:38:38 -0800 (PST) (envelope-from horikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB21YamV095928; Sun, 1 Dec 2002 17:34:36 -0800 (PST) (envelope-from horikawa@repoman.freebsd.org) Received: (from horikawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB21YZvs095927; Sun, 1 Dec 2002 17:34:35 -0800 (PST) Message-Id: <200212020134.gB21YZvs095927@repoman.freebsd.org> From: Kazuo Horikawa Date: Sun, 1 Dec 2002 17:34:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man2 chmod.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2002/12/01 17:34:35 PST Modified files: ja_JP.eucJP/man/man2 chmod.2 Log: Remove garbage line Submitted by: NAKAMURA Takeshi <1yen@sh.rim.or.jp> Revision Changes Path 1.10 +0 -1 doc/ja_JP.eucJP/man/man2/chmod.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17:43:40 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA8C337B404; Sun, 1 Dec 2002 17:43:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89A7A43ECD; Sun, 1 Dec 2002 17:43:34 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB21dWmV096420; Sun, 1 Dec 2002 17:39:32 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB21dWXa096419; Sun, 1 Dec 2002 17:39:32 -0800 (PST) Message-Id: <200212020139.gB21dWXa096419@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 17:39:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/gtkhtml Makefile ports/www/gtkhtml/files gtkhtmlConf.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 17:39:32 PST Modified files: www/gtkhtml Makefile www/gtkhtml/files gtkhtmlConf.sh Log: Fix a typo that could result in ports depending on gtkhtml not to build. Revision Changes Path 1.54 +1 -0 ports/www/gtkhtml/Makefile 1.2 +1 -1 ports/www/gtkhtml/files/gtkhtmlConf.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17:46: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B864937B401; Sun, 1 Dec 2002 17:46:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 784B043E4A; Sun, 1 Dec 2002 17:46:05 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB21g3mV096546; Sun, 1 Dec 2002 17:42:03 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB21g3P3096545; Sun, 1 Dec 2002 17:42:03 -0800 (PST) Message-Id: <200212020142.gB21g3P3096545@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 1 Dec 2002 17:42:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/gpt create.c gpt.c map.h migrate.c show.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcel 2002/12/01 17:42:03 PST Modified files: sbin/gpt create.c gpt.c map.h migrate.c show.c Log: o Newer EFI implementations require that a GPT is preceeded by a PMBR. Make sure the create command creates a PMBR as well (if not already present). o When parsing the MBR, explicitly check for a PMBR and create a PMBR map node if one is found. o When parsing the MBR, recurse to handle extended partitions. This allows us to flatten nested MBRs when migrating to a GPT. o Have the migrate command bail out if it encounters a partition it doesn't know how to migrate. This avoids data loss. o Change the output of the show command so that the UUIDs of the GPT partitions fit on the same line. o Show when partitions are extended partitions and add the PMBR type. Approved by: re (blanket) Revision Changes Path 1.5 +35 -0 src/sbin/gpt/create.c 1.6 +85 -43 src/sbin/gpt/gpt.c 1.3 +1 -0 src/sbin/gpt/map.h 1.5 +9 -4 src/sbin/gpt/migrate.c 1.5 +23 -8 src/sbin/gpt/show.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17:47:24 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7715D37B401; Sun, 1 Dec 2002 17:47:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2545243EBE; Sun, 1 Dec 2002 17:47:23 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB21hLmV096616; Sun, 1 Dec 2002 17:43:21 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB21hLpJ096615; Sun, 1 Dec 2002 17:43:21 -0800 (PST) Message-Id: <200212020143.gB21hLpJ096615@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 17:43:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/glitter Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 17:43:20 PST Modified files: news/glitter Makefile Log: Fix package building. Reported by: bento Revision Changes Path 1.6 +3 -5 ports/news/glitter/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17:48:57 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78C2F37B401; Sun, 1 Dec 2002 17:48:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28E7C43EC2; Sun, 1 Dec 2002 17:48:56 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB21ismV096669; Sun, 1 Dec 2002 17:44:54 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB21is8f096668; Sun, 1 Dec 2002 17:44:54 -0800 (PST) Message-Id: <200212020144.gB21is8f096668@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 17:44:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/grustibus Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 17:44:54 PST Modified files: emulators/grustibus Makefile Log: Fix package building. Reported by: bento Revision Changes Path 1.3 +2 -2 ports/emulators/grustibus/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17:50:26 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5707A37B401; Sun, 1 Dec 2002 17:50:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0462843EC2; Sun, 1 Dec 2002 17:50:25 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB21kMmV096865; Sun, 1 Dec 2002 17:46:22 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB21kMgt096862; Sun, 1 Dec 2002 17:46:22 -0800 (PST) Message-Id: <200212020146.gB21kMgt096862@repoman.freebsd.org> From: Jake Burkholder Date: Sun, 1 Dec 2002 17:46:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/ofw/libofw devicename.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2002/12/01 17:46:22 PST Modified files: sys/boot/ofw/libofw devicename.c Log: Fix a dumb bug that broke net booting on sparc64. The wrong length was passed to strncmp. Noticed by: tmm Approved by: re Pointy hat to: jake Revision Changes Path 1.12 +1 -1 src/sys/boot/ofw/libofw/devicename.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17:50:32 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC75037B496; Sun, 1 Dec 2002 17:50:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B37343EC2; Sun, 1 Dec 2002 17:50:28 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB21kQmV096908; Sun, 1 Dec 2002 17:46:26 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB21kQUO096907; Sun, 1 Dec 2002 17:46:26 -0800 (PST) Message-Id: <200212020146.gB21kQUO096907@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 17:46:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-fm/vide Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 17:46:26 PST Modified files: x11-fm/vide Makefile Log: Fix package building. Reported by: bento Revision Changes Path 1.6 +3 -2 ports/x11-fm/vide/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17:56:17 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D311E37B401; Sun, 1 Dec 2002 17:56:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8091C43E4A; Sun, 1 Dec 2002 17:56:16 -0800 (PST) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB21qEmV097315; Sun, 1 Dec 2002 17:52:14 -0800 (PST) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB21qEA9097314; Sun, 1 Dec 2002 17:52:14 -0800 (PST) Message-Id: <200212020152.gB21qEA9097314@repoman.freebsd.org> From: Mike Silbersack Date: Sun, 1 Dec 2002 17:52:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/xosview/files patch-general.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG silby 2002/12/01 17:52:14 PST Added files: sysutils/xosview/files patch-general.h Log: This patch should solve the build problems with gcc 3 on -current. Inspired by: PR 45694 Revision Changes Path 1.1 +29 -0 ports/sysutils/xosview/files/patch-general.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 17:57:27 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9607937B401; Sun, 1 Dec 2002 17:57:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45A4443E4A; Sun, 1 Dec 2002 17:57:26 -0800 (PST) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB21rOmV097377; Sun, 1 Dec 2002 17:53:24 -0800 (PST) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB21rOJi097376; Sun, 1 Dec 2002 17:53:24 -0800 (PST) Message-Id: <200212020153.gB21rOJi097376@repoman.freebsd.org> From: Mike Silbersack Date: Sun, 1 Dec 2002 17:53:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/xosview pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG silby 2002/12/01 17:53:24 PST Modified files: sysutils/xosview pkg-descr Log: Update xosview's url. PR: 45694 Revision Changes Path 1.3 +1 -1 ports/sysutils/xosview/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 18:11:56 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A22FD37B401; Sun, 1 Dec 2002 18:11:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48F2743EB2; Sun, 1 Dec 2002 18:11:55 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB227rmV098835; Sun, 1 Dec 2002 18:07:53 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB227rmx098834; Sun, 1 Dec 2002 18:07:53 -0800 (PST) Message-Id: <200212020207.gB227rmx098834@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 18:07:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/p5-GtkHTML Makefile ports/www/p5-GtkHTML/files patch-pkg.defs patch-xs_GtkHTML.xs patch-xs_GtkHTMLEmbedded.xs X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 18:07:53 PST Modified files: www/p5-GtkHTML Makefile Added files: www/p5-GtkHTML/files patch-pkg.defs patch-xs_GtkHTML.xs patch-xs_GtkHTMLEmbedded.xs Log: Fix build with gtkhtml-1.1. Reported by: bento Adapted from: GNOME CVS Revision Changes Path 1.5 +3 -2 ports/www/p5-GtkHTML/Makefile 1.1 +10 -0 ports/www/p5-GtkHTML/files/patch-pkg.defs (new) 1.1 +269 -0 ports/www/p5-GtkHTML/files/patch-xs_GtkHTML.xs (new) 1.1 +11 -0 ports/www/p5-GtkHTML/files/patch-xs_GtkHTMLEmbedded.xs (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 18:18:45 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26D2637B401; Sun, 1 Dec 2002 18:18:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8C0B43EBE; Sun, 1 Dec 2002 18:18:43 -0800 (PST) (envelope-from horikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB22EfmV099050; Sun, 1 Dec 2002 18:14:41 -0800 (PST) (envelope-from horikawa@repoman.freebsd.org) Received: (from horikawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB22EflN099049; Sun, 1 Dec 2002 18:14:41 -0800 (PST) Message-Id: <200212020214.gB22EflN099049@repoman.freebsd.org> From: Kazuo Horikawa Date: Sun, 1 Dec 2002 18:14:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man2 Makefile sigblock.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2002/12/01 18:14:41 PST Modified files: ja_JP.eucJP/man/man2 Makefile Removed files: ja_JP.eucJP/man/man2 sigblock.2 Log: Catch up with 5.0-CURRENT-20021105-JPSNAP o Removed sigblock.2 file and added link from sigblock.2 to sigsetmask.2 o Added other MLINKS entries to existing Japanese entries Revision Changes Path 1.4 +4 -3 doc/ja_JP.eucJP/man/man2/Makefile 1.5 +0 -85 doc/ja_JP.eucJP/man/man2/sigblock.2 (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 19:16: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BABA37B401; Sun, 1 Dec 2002 19:16:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDF5B43E88; Sun, 1 Dec 2002 19:16:00 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB23BwmV002852; Sun, 1 Dec 2002 19:11:58 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB23BwoN002851; Sun, 1 Dec 2002 19:11:58 -0800 (PST) Message-Id: <200212020311.gB23BwoN002851@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 19:11:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/gnome/docs faq.sgml faq2.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 19:11:58 PST Modified files: en/gnome/docs faq.sgml faq2.sgml Log: * Note that to remove all GNOME components, you should use pkg_delete -rf * Installing GNOME from packages works, but the preferred method is still ports. Revision Changes Path 1.37 +5 -9 www/en/gnome/docs/faq.sgml 1.19 +6 -6 www/en/gnome/docs/faq2.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 19:17:54 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E71737B404; Sun, 1 Dec 2002 19:17:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91EBA43EC5; Sun, 1 Dec 2002 19:17:47 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB23DjmV002915; Sun, 1 Dec 2002 19:13:45 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB23Djbp002914; Sun, 1 Dec 2002 19:13:45 -0800 (PST) Message-Id: <200212020313.gB23Djbp002914@repoman.freebsd.org> From: Peter Wemm Date: Sun, 1 Dec 2002 19:13:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/cvs - Imported sources X-FreeBSD-CVS-Branch: CVSHOME Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/12/01 19:13:45 PST src/contrib/cvs - Imported sources Update of /home/ncvs/src/contrib/cvs In directory repoman.freebsd.org:/tmp/cvs-serv2827 Log Message: Import cvs-1.11.2.1 as of 2002/12/01 onto vendor branch. This fixes all of the bugs that I know of. We've been running a slightly older version of this on freefall/repoman, where it was afflicted by a silly merge error on my part (fixed). Approved by: re Status: Vendor Tag: CVSHOME Release Tags: v1_11_2_1_20021201 U src/contrib/cvs/TODO U src/contrib/cvs/acinclude.m4 U src/contrib/cvs/aclocal.m4 U src/contrib/cvs/compile U src/contrib/cvs/config.h.in U src/contrib/cvs/configure U src/contrib/cvs/configure.in U src/contrib/cvs/cvs-format.el U src/contrib/cvs/depcomp U src/contrib/cvs/missing U src/contrib/cvs/install-sh U src/contrib/cvs/mdate-sh U src/contrib/cvs/mkinstalldirs U src/contrib/cvs/noautomake.sh U src/contrib/cvs/AUTHORS U src/contrib/cvs/BUGS U src/contrib/cvs/COPYING U src/contrib/cvs/FAQ U src/contrib/cvs/COPYING.LIB U src/contrib/cvs/ChangeLog U src/contrib/cvs/ChangeLog.zoo U src/contrib/cvs/DEVEL-CVS U src/contrib/cvs/HACKING U src/contrib/cvs/INSTALL U src/contrib/cvs/NEWS U src/contrib/cvs/MINOR-BUGS U src/contrib/cvs/Makefile.am U src/contrib/cvs/Makefile.in U src/contrib/cvs/PROJECTS U src/contrib/cvs/README U src/contrib/cvs/TESTS U src/contrib/cvs/doc/ChangeLog U src/contrib/cvs/doc/ChangeLog.fsf N src/contrib/cvs/doc/HACKING.DOCS U src/contrib/cvs/doc/Makefile.am U src/contrib/cvs/doc/Makefile.in U src/contrib/cvs/doc/RCSFILES U src/contrib/cvs/doc/cvs-paper.ms U src/contrib/cvs/doc/cvs.texinfo U src/contrib/cvs/doc/cvsclient.texi U src/contrib/cvs/doc/mdate-sh U src/contrib/cvs/doc/stamp-1 U src/contrib/cvs/doc/stamp-vti U src/contrib/cvs/doc/version-client.texi U src/contrib/cvs/doc/version.texi U src/contrib/cvs/lib/ChangeLog.fsf U src/contrib/cvs/lib/Makefile.am U src/contrib/cvs/lib/Makefile.in U src/contrib/cvs/lib/argmatch.c U src/contrib/cvs/lib/dup2.c U src/contrib/cvs/lib/fncase.c U src/contrib/cvs/lib/fnmatch.c N src/contrib/cvs/lib/fnmatch.h.in U src/contrib/cvs/lib/ftruncate.c U src/contrib/cvs/lib/getdate.y N src/contrib/cvs/lib/gethostname.c U src/contrib/cvs/lib/getline.c U src/contrib/cvs/lib/getline.h U src/contrib/cvs/lib/getopt.c U src/contrib/cvs/lib/getopt.h U src/contrib/cvs/lib/getopt1.c N src/contrib/cvs/lib/getpagesize.h U src/contrib/cvs/lib/md5.c U src/contrib/cvs/lib/md5.h U src/contrib/cvs/lib/memmove.c U src/contrib/cvs/lib/mkdir.c U src/contrib/cvs/lib/regex.c U src/contrib/cvs/lib/regex.h U src/contrib/cvs/lib/rename.c U src/contrib/cvs/lib/wait.h U src/contrib/cvs/lib/savecwd.c U src/contrib/cvs/lib/savecwd.h U src/contrib/cvs/lib/sighandle.c U src/contrib/cvs/lib/strerror.c U src/contrib/cvs/lib/stripslash.c U src/contrib/cvs/lib/strstr.c U src/contrib/cvs/lib/strtoul.c U src/contrib/cvs/lib/system.h U src/contrib/cvs/lib/valloc.c U src/contrib/cvs/lib/waitpid.c U src/contrib/cvs/lib/xgetwd.c U src/contrib/cvs/lib/xselect.h U src/contrib/cvs/lib/xtime.h U src/contrib/cvs/lib/yesno.c U src/contrib/cvs/lib/xgssapi.h U src/contrib/cvs/lib/ChangeLog U src/contrib/cvs/src/ChangeLog-9194 U src/contrib/cvs/src/ChangeLog-9395 U src/contrib/cvs/src/ChangeLog-96 U src/contrib/cvs/src/ChangeLog-97 U src/contrib/cvs/src/Makefile.am U src/contrib/cvs/src/Makefile.in U src/contrib/cvs/src/add.c U src/contrib/cvs/src/admin.c U src/contrib/cvs/src/annotate.c C src/contrib/cvs/src/buffer.c U src/contrib/cvs/src/buffer.h U src/contrib/cvs/src/checkin.c C src/contrib/cvs/src/checkout.c U src/contrib/cvs/src/classify.c C src/contrib/cvs/src/client.c U src/contrib/cvs/src/client.h C src/contrib/cvs/src/commit.c U src/contrib/cvs/src/create_adm.c C src/contrib/cvs/src/cvs.h U src/contrib/cvs/src/cvsbug.in U src/contrib/cvs/src/cvsrc.c C src/contrib/cvs/src/diff.c U src/contrib/cvs/src/edit.c U src/contrib/cvs/src/edit.h U src/contrib/cvs/src/error.c U src/contrib/cvs/src/entries.c U src/contrib/cvs/src/error.h U src/contrib/cvs/src/expand_path.c U src/contrib/cvs/src/fileattr.c U src/contrib/cvs/src/fileattr.h C src/contrib/cvs/src/filesubr.c U src/contrib/cvs/src/find_names.c U src/contrib/cvs/src/hardlink.c U src/contrib/cvs/src/hardlink.h U src/contrib/cvs/src/hash.c U src/contrib/cvs/src/hash.h U src/contrib/cvs/src/history.c U src/contrib/cvs/src/ignore.c C src/contrib/cvs/src/import.c C src/contrib/cvs/src/lock.c U src/contrib/cvs/src/log.c C src/contrib/cvs/src/login.c C src/contrib/cvs/src/logmsg.c C src/contrib/cvs/src/main.c U src/contrib/cvs/src/mkmodules.c U src/contrib/cvs/src/modules.c U src/contrib/cvs/src/myndbm.c U src/contrib/cvs/src/myndbm.h U src/contrib/cvs/src/no_diff.c N src/contrib/cvs/src/options.h U src/contrib/cvs/src/patch.c U src/contrib/cvs/src/parseinfo.c C src/contrib/cvs/src/rcs.c U src/contrib/cvs/src/rcs.h C src/contrib/cvs/src/rcscmds.c C src/contrib/cvs/src/recurse.c U src/contrib/cvs/src/release.c U src/contrib/cvs/src/remove.c U src/contrib/cvs/src/repos.c U src/contrib/cvs/src/root.c U src/contrib/cvs/src/root.h U src/contrib/cvs/src/run.c U src/contrib/cvs/src/sanity.sh U src/contrib/cvs/src/scramble.c C src/contrib/cvs/src/server.c U src/contrib/cvs/src/server.h U src/contrib/cvs/src/status.c U src/contrib/cvs/src/subr.c U src/contrib/cvs/src/tag.c U src/contrib/cvs/src/update.h U src/contrib/cvs/src/vers_ts.c U src/contrib/cvs/src/version.c U src/contrib/cvs/src/watch.c U src/contrib/cvs/src/watch.h U src/contrib/cvs/src/zlib.c U src/contrib/cvs/src/wrapper.c C src/contrib/cvs/src/update.c U src/contrib/cvs/src/ChangeLog U src/contrib/cvs/tools/ChangeLog U src/contrib/cvs/tools/README U src/contrib/cvs/tools/Makefile.am U src/contrib/cvs/tools/Makefile.in U src/contrib/cvs/man/ChangeLog U src/contrib/cvs/man/Makefile.am U src/contrib/cvs/man/Makefile.in U src/contrib/cvs/man/cvs.1 U src/contrib/cvs/man/cvs.5 U src/contrib/cvs/man/cvsbug.8 U src/contrib/cvs/contrib/ChangeLog U src/contrib/cvs/contrib/Makefile.am U src/contrib/cvs/contrib/Makefile.in U src/contrib/cvs/contrib/README N src/contrib/cvs/contrib/check_cvs.in U src/contrib/cvs/contrib/clmerge.in U src/contrib/cvs/contrib/cln_hist.in U src/contrib/cvs/contrib/commit_prep.in U src/contrib/cvs/contrib/cvs2vendor.sh U src/contrib/cvs/contrib/cvs_acls.in U src/contrib/cvs/contrib/cvscheck.man U src/contrib/cvs/contrib/cvscheck.sh U src/contrib/cvs/contrib/cvshelp.man U src/contrib/cvs/contrib/debug_check_log.sh U src/contrib/cvs/contrib/descend.man U src/contrib/cvs/contrib/descend.sh U src/contrib/cvs/contrib/dirfns.shar U src/contrib/cvs/contrib/intro.doc U src/contrib/cvs/contrib/log.in U src/contrib/cvs/contrib/log_accum.in U src/contrib/cvs/contrib/mfpipe.in U src/contrib/cvs/contrib/pvcs2rcs.in U src/contrib/cvs/contrib/rcs-to-cvs.sh U src/contrib/cvs/contrib/rcs2log.sh U src/contrib/cvs/contrib/rcs2sccs.sh U src/contrib/cvs/contrib/rcslock.in U src/contrib/cvs/contrib/sccs2rcs.in U src/contrib/cvs/diff/Makefile.am U src/contrib/cvs/diff/Makefile.in U src/contrib/cvs/diff/analyze.c U src/contrib/cvs/diff/cmpbuf.c U src/contrib/cvs/diff/cmpbuf.h U src/contrib/cvs/diff/context.c U src/contrib/cvs/diff/diagmeet.note U src/contrib/cvs/diff/diff.c U src/contrib/cvs/diff/diff.h U src/contrib/cvs/diff/diff3.c U src/contrib/cvs/diff/diffrun.h U src/contrib/cvs/diff/dir.c U src/contrib/cvs/diff/ed.c U src/contrib/cvs/diff/ifdef.c U src/contrib/cvs/diff/io.c U src/contrib/cvs/diff/normal.c U src/contrib/cvs/diff/side.c U src/contrib/cvs/diff/system.h U src/contrib/cvs/diff/util.c U src/contrib/cvs/diff/version.c U src/contrib/cvs/diff/ChangeLog 17 conflicts created by this import. Use the following command to help the merge: cvs checkout -jCVSHOME:yesterday -jCVSHOME src/contrib/cvs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 19:21:53 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64BD037B401; Sun, 1 Dec 2002 19:21:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12CD043EC2; Sun, 1 Dec 2002 19:21:52 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB23HnmV003464; Sun, 1 Dec 2002 19:17:49 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB23Hn0h003463; Sun, 1 Dec 2002 19:17:49 -0800 (PST) Message-Id: <200212020317.gB23Hn0h003463@repoman.freebsd.org> From: Peter Wemm Date: Sun, 1 Dec 2002 19:17:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/cvs acconfig.h stamp-h1.in src/contrib/cvs/lib fnmatch.h hostname.c src/contrib/cvs/src buffer.c checkout.c client.c commit.c cvs.h diff.c filesubr.c import.c lock.c login.c logmsg.c main.c options.h.in rcs.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/12/01 19:17:49 PST Modified files: contrib/cvs/src buffer.c checkout.c client.c commit.c cvs.h diff.c filesubr.c import.c lock.c login.c logmsg.c main.c rcs.c rcscmds.c recurse.c server.c update.c Removed files: contrib/cvs acconfig.h stamp-h1.in contrib/cvs/lib fnmatch.h hostname.c contrib/cvs/src options.h.in stamp-h2.in version.h.in Log: Merge 1.11.2 -> 1.11.2.1-20021201 changes onto mainline Approved by: re Revision Changes Path 1.2 +0 -12 src/contrib/cvs/acconfig.h (dead) 1.2 +0 -45 src/contrib/cvs/lib/fnmatch.h (dead) 1.2 +0 -49 src/contrib/cvs/lib/hostname.c (dead) 1.3 +15 -1 src/contrib/cvs/src/buffer.c 1.4 +1 -1 src/contrib/cvs/src/checkout.c 1.9 +24 -11 src/contrib/cvs/src/client.c 1.12 +37 -17 src/contrib/cvs/src/commit.c 1.16 +25 -8 src/contrib/cvs/src/cvs.h 1.18 +3 -2 src/contrib/cvs/src/diff.c 1.10 +34 -12 src/contrib/cvs/src/filesubr.c 1.11 +8 -5 src/contrib/cvs/src/import.c 1.11 +57 -48 src/contrib/cvs/src/lock.c 1.7 +3 -13 src/contrib/cvs/src/login.c 1.11 +52 -55 src/contrib/cvs/src/logmsg.c 1.22 +13 -8 src/contrib/cvs/src/main.c 1.2 +0 -275 src/contrib/cvs/src/options.h.in (dead) 1.24 +14 -15 src/contrib/cvs/src/rcs.c 1.9 +3 -51 src/contrib/cvs/src/rcscmds.c 1.10 +20 -14 src/contrib/cvs/src/recurse.c 1.17 +58 -120 src/contrib/cvs/src/server.c 1.2 +0 -1 src/contrib/cvs/src/stamp-h2.in (dead) 1.11 +53 -35 src/contrib/cvs/src/update.c 1.2 +0 -15 src/contrib/cvs/src/version.h.in (dead) 1.2 +0 -1 src/contrib/cvs/stamp-h1.in (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 19:24:28 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E2E537B401; Sun, 1 Dec 2002 19:24:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACBF643EB2; Sun, 1 Dec 2002 19:24:27 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB23KPmV003632; Sun, 1 Dec 2002 19:20:25 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB23KPe8003631; Sun, 1 Dec 2002 19:20:25 -0800 (PST) Message-Id: <200212020320.gB23KPe8003631@repoman.freebsd.org> From: Peter Wemm Date: Sun, 1 Dec 2002 19:20:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/cvs/cvs Makefile options.h src/gnu/usr.bin/cvs/lib config.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/12/01 19:20:25 PST Modified files: gnu/usr.bin/cvs/cvs Makefile gnu/usr.bin/cvs/lib config.h Removed files: gnu/usr.bin/cvs/cvs options.h Log: Update bmake glue after 1.11.2.1-20021201 import. options.h is no longer touched by configure in the autoconf system and a standard version is now used. Approved by: re Revision Changes Path 1.39 +1 -8 src/gnu/usr.bin/cvs/cvs/Makefile 1.9 +0 -201 src/gnu/usr.bin/cvs/cvs/options.h (dead) 1.12 +345 -219 src/gnu/usr.bin/cvs/lib/config.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 19:27: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05DF037B401; Sun, 1 Dec 2002 19:27:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAED043ED8; Sun, 1 Dec 2002 19:26:59 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB23MvmV003716; Sun, 1 Dec 2002 19:22:57 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB23Mvg4003715; Sun, 1 Dec 2002 19:22:57 -0800 (PST) Message-Id: <200212020322.gB23Mvg4003715@repoman.freebsd.org> From: Robert Watson Date: Sun, 1 Dec 2002 19:22:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/setfmac Makefile setfmac.8 setfmac.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/01 19:22:57 PST Modified files: usr.sbin/setfmac Makefile setfmac.8 setfmac.c Log: Add support for -R for file relabel operations. Add 'setfsmac' link, which permits labels to be provided in a label specification file, making it easier to provide initial file system labeling specifications. This is used by the new mac_lomac to provide initial system labeling and policy, and by sebsd, the port of SELinux FLASK/TE to FreeBSD. Approved by: re (jhb) Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.3 +4 -0 src/usr.sbin/setfmac/Makefile 1.3 +73 -8 src/usr.sbin/setfmac/setfmac.8 1.2 +432 -40 src/usr.sbin/setfmac/setfmac.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 19:34:52 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1272C37B401; Sun, 1 Dec 2002 19:34:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2F6643EAF; Sun, 1 Dec 2002 19:34:50 -0800 (PST) (envelope-from max@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB23UmmV004290; Sun, 1 Dec 2002 19:30:48 -0800 (PST) (envelope-from max@repoman.freebsd.org) Received: (from max@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB23Umd9004289; Sun, 1 Dec 2002 19:30:48 -0800 (PST) Message-Id: <200212020330.gB23Umd9004289@repoman.freebsd.org> From: Masafumi Max NAKANE Date: Sun, 1 Dec 2002 19:30:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/Canna Makefile distinfo ports/japanese/Canna/files patch-ag X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG max 2002/12/01 19:30:48 PST Modified files: japanese/Canna Makefile distinfo japanese/Canna/files patch-ag Log: Upgrade to 3.6p1, which contains security fixes. Approved by: kris Submitted by: KANOU Hiroki Review and mod by: max Revision Changes Path 1.54 +3 -4 ports/japanese/Canna/Makefile 1.5 +1 -1 ports/japanese/Canna/distinfo 1.2 +16 -16 ports/japanese/Canna/files/patch-ag To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 19:50: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B97537B401; Sun, 1 Dec 2002 19:50:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADBB943E88; Sun, 1 Dec 2002 19:49:59 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB23jvmV005358; Sun, 1 Dec 2002 19:45:57 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB23jvVM005357; Sun, 1 Dec 2002 19:45:57 -0800 (PST) Message-Id: <200212020345.gB23jvVM005357@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 19:45:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/cybervrml97/files patch-vrml.y X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 19:45:57 PST Added files: graphics/cybervrml97/files patch-vrml.y Log: Fix build with bison 1.75. Reported by: bento Revision Changes Path 1.1 +34 -0 ports/graphics/cybervrml97/files/patch-vrml.y (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 19:53:13 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9135337B401; Sun, 1 Dec 2002 19:53:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4289C43ECF; Sun, 1 Dec 2002 19:53:12 -0800 (PST) (envelope-from max@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB23n9mV005742; Sun, 1 Dec 2002 19:49:09 -0800 (PST) (envelope-from max@repoman.freebsd.org) Received: (from max@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB23n9AQ005741; Sun, 1 Dec 2002 19:49:09 -0800 (PST) Message-Id: <200212020349.gB23n9AQ005741@repoman.freebsd.org> From: Masafumi Max NAKANE Date: Sun, 1 Dec 2002 19:49:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/Canna Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG max 2002/12/01 19:49:09 PST Modified files: japanese/Canna Makefile Log: Ah, my slippery fingers, portversion should be 3.6p1 instead. Pointed out by: knu Revision Changes Path 1.55 +1 -1 ports/japanese/Canna/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 19:55:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E52DA37B401; Sun, 1 Dec 2002 19:55:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 951BF43EA9; Sun, 1 Dec 2002 19:55:21 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB23pImV005866; Sun, 1 Dec 2002 19:51:18 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB23pI99005865; Sun, 1 Dec 2002 19:51:18 -0800 (PST) Message-Id: <200212020351.gB23pI99005865@repoman.freebsd.org> From: Dirk Meyer Date: Sun, 1 Dec 2002 19:51:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gnustep-gui Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/12/01 19:51:18 PST Modified files: x11-toolkits/gnustep-gui Makefile Log: Fix build on beto: drop sound support on CURRENT Revision Changes Path 1.37 +4 -0 ports/x11-toolkits/gnustep-gui/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 19:56: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA92C37B401; Sun, 1 Dec 2002 19:55:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 888C543EB2; Sun, 1 Dec 2002 19:55:59 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB23pvmV005903; Sun, 1 Dec 2002 19:51:57 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB23pvi1005902; Sun, 1 Dec 2002 19:51:57 -0800 (PST) Message-Id: <200212020351.gB23pvi1005902@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 19:51:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gtkyahoo/files patch-rcfile.y X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 19:51:57 PST Added files: net/gtkyahoo/files patch-rcfile.y Log: Fix build with bison 1.75. Reported by: bento Revision Changes Path 1.1 +42 -0 ports/net/gtkyahoo/files/patch-rcfile.y (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 20: 1:56 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFE4C37B401; Sun, 1 Dec 2002 20:01:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D98743E88; Sun, 1 Dec 2002 20:01:55 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB23vrmV006404; Sun, 1 Dec 2002 19:57:53 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB23vrF1006403; Sun, 1 Dec 2002 19:57:53 -0800 (PST) Message-Id: <200212020357.gB23vrF1006403@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 19:57:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/htmltolatex/files patch-h2l.y X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 19:57:52 PST Added files: textproc/htmltolatex/files patch-h2l.y Log: Fix build with bison 1.75. Reported by: bento Revision Changes Path 1.1 +10 -0 ports/textproc/htmltolatex/files/patch-h2l.y (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 20:55:20 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A83337B401; Sun, 1 Dec 2002 20:55:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB26143E4A; Sun, 1 Dec 2002 20:55:19 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB24pHmV009582; Sun, 1 Dec 2002 20:51:17 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB24pG0v009581; Sun, 1 Dec 2002 20:51:16 -0800 (PST) Message-Id: <200212020451.gB24pG0v009581@repoman.freebsd.org> From: Dirk Meyer Date: Sun, 1 Dec 2002 20:51:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gtoolkit Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/12/01 20:51:16 PST Modified files: x11-toolkits/gtoolkit Makefile Log: bento, mark BROKEN only for CURRENT conflicts with new gcc, method definition not in class context Revision Changes Path 1.9 +4 -0 ports/x11-toolkits/gtoolkit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 20:55:35 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D9D837B408; Sun, 1 Dec 2002 20:55:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE97643E4A; Sun, 1 Dec 2002 20:55:33 -0800 (PST) (envelope-from horikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB24pVmV009616; Sun, 1 Dec 2002 20:51:31 -0800 (PST) (envelope-from horikawa@repoman.freebsd.org) Received: (from horikawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB24pVHo009615; Sun, 1 Dec 2002 20:51:31 -0800 (PST) Message-Id: <200212020451.gB24pVHo009615@repoman.freebsd.org> From: Kazuo Horikawa Date: Sun, 1 Dec 2002 20:51:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 sftp.1 ssh.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2002/12/01 20:51:31 PST Modified files: ja_JP.eucJP/man/man1 sftp.1 ssh.1 Log: Catch up with 5.0-CURRENT-20021105-JPSNAP Obtained from: http://www.unixuser.org/%7Eeuske/doc/openssh/jman/openssh-jman-350p1.tar.gz Revision Changes Path 1.3 +9 -3 doc/ja_JP.eucJP/man/man1/sftp.1 1.9 +43 -24 doc/ja_JP.eucJP/man/man1/ssh.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 20:58:25 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E656537B401; Sun, 1 Dec 2002 20:58:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 959F943EC2; Sun, 1 Dec 2002 20:58:24 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB24sLmV009711; Sun, 1 Dec 2002 20:54:21 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB24sLLN009710; Sun, 1 Dec 2002 20:54:21 -0800 (PST) Message-Id: <200212020454.gB24sLLN009710@repoman.freebsd.org> From: Alan Cox Date: Sun, 1 Dec 2002 20:54:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 pmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2002/12/01 20:54:21 PST Modified files: sys/i386/i386 pmap.c Log: Hold the page queues lock when calling pmap_unwire_pte_hold() or pmap_remove_pte(). Use vm_page_sleep_if_busy() in _pmap_unwire_pte_hold() so that the page queues lock is released when sleeping. Approved by: re (blanket) Revision Changes Path 1.375 +10 -3 src/sys/i386/i386/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 20:59:47 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D1C137B401; Sun, 1 Dec 2002 20:59:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCE1043EA9; Sun, 1 Dec 2002 20:59:45 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB24thmV009824; Sun, 1 Dec 2002 20:55:43 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB24thnn009823; Sun, 1 Dec 2002 20:55:43 -0800 (PST) Message-Id: <200212020455.gB24thnn009823@repoman.freebsd.org> From: Robert Watson Date: Sun, 1 Dec 2002 20:55:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/01 20:55:43 PST Modified files: en/releases/5.0R todo.sgml Log: With the removal of perl, existing system dependencies on perl need to be removed/modified so that the dependency no longer exists. Most of these have been caught over the last year, but several have not, including: /usr/bin/mmroff /usr/bin/afmtodit /usr/sbin/adduser /usr/sbin/rmuser Add a TODO item that these must be dealt with before 5.0-RELEASE. Submitted by: kris Revision Changes Path 1.63 +12 -1 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 21: 1:56 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E898737B401; Sun, 1 Dec 2002 21:01:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9243843EA9; Sun, 1 Dec 2002 21:01:55 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB24vqmV010230; Sun, 1 Dec 2002 20:57:52 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB24vq0Z010229; Sun, 1 Dec 2002 20:57:52 -0800 (PST) Message-Id: <200212020457.gB24vq0Z010229@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 1 Dec 2002 20:57:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/cad/iverilog/files patch-driver_parse.y patch-parse.y patch-parse_misc.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/01 20:57:52 PST Added files: cad/iverilog/files patch-driver_parse.y patch-parse.y patch-parse_misc.h Log: Fix build with bison 1.75. Reported by: bento Revision Changes Path 1.1 +10 -0 ports/cad/iverilog/files/patch-driver_parse.y (new) 1.1 +19 -0 ports/cad/iverilog/files/patch-parse.y (new) 1.1 +12 -0 ports/cad/iverilog/files/patch-parse_misc.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 21: 7:17 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01D2337B401; Sun, 1 Dec 2002 21:07:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4B8943EAF; Sun, 1 Dec 2002 21:07:16 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB253DmV011054; Sun, 1 Dec 2002 21:03:13 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB253DTc011053; Sun, 1 Dec 2002 21:03:13 -0800 (PST) Message-Id: <200212020503.gB253DTc011053@repoman.freebsd.org> From: Dirk Meyer Date: Sun, 1 Dec 2002 21:03:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gnustep-gui Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/12/01 21:03:13 PST Modified files: x11-toolkits/gnustep-gui Makefile Log: add missing check for GNUSTEP_GUI_DEVEL Revision Changes Path 1.38 +2 -0 ports/x11-toolkits/gnustep-gui/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 21:59:29 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B16B037B401; Sun, 1 Dec 2002 21:59:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6044143E88; Sun, 1 Dec 2002 21:59:28 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB25tPmV014154; Sun, 1 Dec 2002 21:55:25 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB25tP1S014153; Sun, 1 Dec 2002 21:55:25 -0800 (PST) Message-Id: <200212020555.gB25tP1S014153@repoman.freebsd.org> From: Robert Watson Date: Sun, 1 Dec 2002 21:55:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/smp index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/01 21:55:25 PST Modified files: en/smp index.sgml Log: TrustedBSD MAC Framework is SMP-safe; while it sometimes requires Giant when interacting with subsystems such as VFS, Sockets, and the Network Stack, the basic framework structures and components are MP-safe. Update the SMP task relating to this to switch it to Done status. Revision Changes Path 1.94 +8 -8 www/en/smp/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 22: 5: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A5DC37B401; Sun, 1 Dec 2002 22:05:08 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-64-169-106-47.dsl.lsan03.pacbell.net [64.169.106.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 979E643ECD; Sun, 1 Dec 2002 22:05:02 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 247FC66BE3; Sun, 1 Dec 2002 22:05:02 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id C64E185E; Sun, 1 Dec 2002 22:05:01 -0800 (PST) Date: Sun, 1 Dec 2002 22:05:01 -0800 From: Kris Kennaway To: Dirk Meyer Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11-toolkits/gnustep-gui Makefile Message-ID: <20021202060501.GA54430@rot13.obsecurity.org> References: <200212020351.gB23pI99005865@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cWoXeonUoKmBZSoM" Content-Disposition: inline In-Reply-To: <200212020351.gB23pI99005865@repoman.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --cWoXeonUoKmBZSoM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Dec 01, 2002 at 07:51:18PM -0800, Dirk Meyer wrote: > dinoex 2002/12/01 19:51:18 PST >=20 > Modified files: > x11-toolkits/gnustep-gui Makefile=20 > Log: > Fix build on beto: drop sound support on CURRENT Why not just fix the #include? Kris --cWoXeonUoKmBZSoM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE96vgNWry0BWjoQKURAu5HAKCAmMkBZ7fJDj/mXEP774GQh6RLjgCeMzRi mPAsY+PZu0cDKUageuuY/9w= =+kFw -----END PGP SIGNATURE----- --cWoXeonUoKmBZSoM-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 22: 8:49 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 857B337B401; Sun, 1 Dec 2002 22:08:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34D2B43E88; Sun, 1 Dec 2002 22:08:48 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB264jmV014716; Sun, 1 Dec 2002 22:04:45 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB264jgj014715; Sun, 1 Dec 2002 22:04:45 -0800 (PST) Message-Id: <200212020604.gB264jgj014715@repoman.freebsd.org> From: Robert Watson Date: Sun, 1 Dec 2002 22:04:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/smp index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/01 22:04:45 PST Modified files: en/smp index.sgml Log: i386 TLB fix task is complete. Extracted from: peter Revision Changes Path 1.95 +8 -8 www/en/smp/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 22:10:27 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0EEB37B401; Sun, 1 Dec 2002 22:10:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71B9443E9C; Sun, 1 Dec 2002 22:10:26 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB266NmV014911; Sun, 1 Dec 2002 22:06:23 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB266NOb014909; Sun, 1 Dec 2002 22:06:23 -0800 (PST) Message-Id: <200212020606.gB266NOb014909@repoman.freebsd.org> From: Robert Watson Date: Sun, 1 Dec 2002 22:06:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/smp index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/01 22:06:23 PST Modified files: en/smp index.sgml Log: Move to MI coredump routines completed. Extracted from: peter Revision Changes Path 1.96 +8 -8 www/en/smp/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 22:19:41 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E002B37B401; Sun, 1 Dec 2002 22:19:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 908BD43EAF; Sun, 1 Dec 2002 22:19:40 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB26FbmV015429; Sun, 1 Dec 2002 22:15:37 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB26Fbl0015428; Sun, 1 Dec 2002 22:15:37 -0800 (PST) Message-Id: <200212020615.gB26Fbl0015428@repoman.freebsd.org> From: Robert Watson Date: Sun, 1 Dec 2002 22:15:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/smp index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/01 22:15:37 PST Modified files: en/smp index.sgml Log: Claim partial responsibility for getting an SMP architecture document ready, since I've had my fingers in it some, and it appears to have become stalled. Revision Changes Path 1.97 +2 -2 www/en/smp/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 1 22:24:49 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7852737B401; Sun, 1 Dec 2002 22:24:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7469B43EA9; Sun, 1 Dec 2002 22:24:39 -0800 (PST) (envelope-from horikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB26KamV016793; Sun, 1 Dec 2002 22:20:36 -0800 (PST) (envelope-from horikawa@repoman.freebsd.org) Received: (from horikawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB26KaBd016792; Sun, 1 Dec 2002 22:20:36 -0800 (PST) Message-Id: <200212020620.gB26KaBd016792@repoman.freebsd.org> From: Kazuo Horikawa Date: Sun, 1 Dec 2002 22:20:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 addftinfo.1 afmtodit.1 apply.1 apropos.1 at.1 basename.1 bc.1 bdes.1 biff.1 brandelf.1 builtin.1 c89.1 calendar.1 cap_mkdb.1 cat.1 catman.1 cdcontrol.1 checknr.1 chflags.1 chgrp.1 chio.1 chkey.1 chmod.1 chpass.1 ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2002/12/01 22:20:36 PST Modified files: ja_JP.eucJP/man/man1 addftinfo.1 afmtodit.1 apply.1 apropos.1 at.1 basename.1 bc.1 bdes.1 biff.1 brandelf.1 builtin.1 c89.1 calendar.1 cap_mkdb.1 cat.1 catman.1 cdcontrol.1 checknr.1 chflags.1 chgrp.1 chio.1 chkey.1 chmod.1 chpass.1 ckdist.1 cksum.1 cmp.1 col.1 colcrt.1 colldef.1 colrm.1 column.1 comm.1 compile_et.1 compress.1 cp.1 crontab.1 crunchgen.1 crunchide.1 ctags.1 ctm.1 ctm_rmail.1 cu.1 cursor.1 cut.1 cvs.1 date.1 dc.1 dd.1 df.1 diff.1 dig.1 domainname.1 doscmd.1 dtmfdecode.1 du.1 echo.1 ed.1 ee.1 enigma.1 eqn.1 expand.1 expr.1 false.1 fdformat.1 fdwrite.1 fetch.1 file.1 file2c.1 find.1 finger.1 fmt.1 fold.1 fontedit.1 from.1 fstat.1 fsync.1 g711conv.1 gasp.1 gcc.1 gcore.1 gencat.1 getNAME.1 getopt.1 gprof.1 grep.1 grn.1 grodvi.1 grog.1 grolbp.1 grolj4.1 grops.1 grotty.1 groups.1 head.1 hexdump.1 host.1 hostname.1 hpftodit.1 id.1 indent.1 indxbib.1 install.1 intro.1 ipcrm.1 ipcs.1 join.1 jot.1 kbdcontrol.1 kbdmap.1 kcon.1 kdump.1 kenv.1 keylogin.1 keylogout.1 kill.1 killall.1 ktrace.1 lam.1 last.1 lastcomm.1 ld.1 ldd.1 leave.1 less.1 lesskey.1 lex.1 limits.1 lint.1 lkbib.1 ln.1 loadfont.1 locate.1 lock.1 lockf.1 logger.1 login.1 logname.1 look.1 lookbib.1 lp.1 lpq.1 lpr.1 lprm.1 lptest.1 ls.1 lsvfs.1 m4.1 mail.1 mailq.1 make.1 makewhatis.1 man.1 manpath.1 md5.1 mesg.1 minigzip.1 mkdep.1 mkdir.1 mkfifo.1 mklocale.1 mkstr.1 mktemp.1 mptable.1 msgs.1 mt.1 mv.1 ncal.1 ncplist.1 ncplogin.1 ncplogout.1 neqn.1 nfsstat.1 nice.1 nl.1 nohup.1 nroff.1 objformat.1 od.1 opieinfo.1 opiekey.1 opiepasswd.1 pagesize.1 passwd.1 paste.1 patch.1 pax.1 pfbtops.1 pic.1 pkg_add.1 pkg_create.1 pkg_delete.1 pkg_info.1 pkg_sign.1 pkg_version.1 pr.1 printenv.1 printf.1 ps.1 psroff.1 pwd.1 quota.1 ranlib.1 readelf.1 realpath.1 refer.1 rev.1 rlogin.1 rm.1 rmdir.1 rpcgen.1 rs.1 rsh.1 rtld.1 rtprio.1 rup.1 ruptime.1 rusers.1 rwall.1 rwho.1 sasc.1 scon.1 script.1 sed.1 send-pr.1 sgsc.1 sh.1 shar.1 sleep.1 sockstat.1 split.1 startslip.1 stty.1 su.1 symorder.1 systat.1 tail.1 talk.1 tar.1 tbl.1 tcopy.1 tcpdump.1 tcpslice.1 tee.1 telnet.1 test.1 tfmtodit.1 tftp.1 time.1 tip.1 top.1 touch.1 tput.1 tr.1 true.1 truncate.1 truss.1 tset.1 tsort.1 tty.1 ul.1 uname.1 unifdef.1 uniq.1 units.1 unvis.1 uptime.1 usbhidctl.1 users.1 uuencode.1 vacation.1 vgrind.1 vi.1 vidcontrol.1 vis.1 vt220keys.1 vttest.1 w.1 wall.1 wc.1 what.1 whereis.1 which.1 who.1 whoami.1 whois.1 window.1 write.1 xstr.1 xten.1 yacc.1 yes.1 ypcat.1 ypmatch.1 ypwhich.1 yyfix.1 Log: Catch up with 5.0-CURRENT-20021105-JPSNAP Revision Changes Path 1.10 +2 -2 doc/ja_JP.eucJP/man/man1/addftinfo.1 1.7 +60 -6 doc/ja_JP.eucJP/man/man1/afmtodit.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/apply.1 1.11 +1 -1 doc/ja_JP.eucJP/man/man1/apropos.1 1.22 +85 -15 doc/ja_JP.eucJP/man/man1/at.1 1.15 +18 -2 doc/ja_JP.eucJP/man/man1/basename.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/bc.1 1.7 +1 -1 doc/ja_JP.eucJP/man/man1/bdes.1 1.15 +23 -5 doc/ja_JP.eucJP/man/man1/biff.1 1.8 +2 -2 doc/ja_JP.eucJP/man/man1/brandelf.1 1.12 +15 -16 doc/ja_JP.eucJP/man/man1/builtin.1 1.11 +2 -2 doc/ja_JP.eucJP/man/man1/c89.1 1.14 +19 -6 doc/ja_JP.eucJP/man/man1/calendar.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/cap_mkdb.1 1.17 +1 -1 doc/ja_JP.eucJP/man/man1/cat.1 1.13 +56 -98 doc/ja_JP.eucJP/man/man1/catman.1 1.24 +65 -64 doc/ja_JP.eucJP/man/man1/cdcontrol.1 1.11 +1 -1 doc/ja_JP.eucJP/man/man1/checknr.1 1.14 +2 -2 doc/ja_JP.eucJP/man/man1/chflags.1 1.12 +2 -2 doc/ja_JP.eucJP/man/man1/chgrp.1 1.15 +2 -2 doc/ja_JP.eucJP/man/man1/chio.1 1.7 +1 -1 doc/ja_JP.eucJP/man/man1/chkey.1 1.28 +4 -6 doc/ja_JP.eucJP/man/man1/chmod.1 1.24 +1 -1 doc/ja_JP.eucJP/man/man1/chpass.1 1.11 +2 -2 doc/ja_JP.eucJP/man/man1/ckdist.1 1.17 +2 -2 doc/ja_JP.eucJP/man/man1/cksum.1 1.11 +2 -2 doc/ja_JP.eucJP/man/man1/cmp.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/col.1 1.10 +1 -1 doc/ja_JP.eucJP/man/man1/colcrt.1 1.10 +13 -9 doc/ja_JP.eucJP/man/man1/colldef.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/colrm.1 1.11 +2 -2 doc/ja_JP.eucJP/man/man1/column.1 1.13 +1 -1 doc/ja_JP.eucJP/man/man1/comm.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/compile_et.1 1.13 +1 -1 doc/ja_JP.eucJP/man/man1/compress.1 1.18 +2 -2 doc/ja_JP.eucJP/man/man1/cp.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/crontab.1 1.15 +2 -2 doc/ja_JP.eucJP/man/man1/crunchgen.1 1.10 +1 -1 doc/ja_JP.eucJP/man/man1/crunchide.1 1.12 +11 -4 doc/ja_JP.eucJP/man/man1/ctags.1 1.18 +2 -2 doc/ja_JP.eucJP/man/man1/ctm.1 1.17 +2 -2 doc/ja_JP.eucJP/man/man1/ctm_rmail.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/cu.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/cursor.1 1.11 +46 -3 doc/ja_JP.eucJP/man/man1/cut.1 1.19 +23 -7 doc/ja_JP.eucJP/man/man1/cvs.1 1.30 +2 -2 doc/ja_JP.eucJP/man/man1/date.1 1.10 +1 -1 doc/ja_JP.eucJP/man/man1/dc.1 1.18 +1 -1 doc/ja_JP.eucJP/man/man1/dd.1 1.20 +6 -6 doc/ja_JP.eucJP/man/man1/df.1 1.9 +10 -3 doc/ja_JP.eucJP/man/man1/diff.1 1.15 +1 -1 doc/ja_JP.eucJP/man/man1/dig.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/domainname.1 1.17 +1 -1 doc/ja_JP.eucJP/man/man1/doscmd.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/dtmfdecode.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/du.1 1.13 +2 -2 doc/ja_JP.eucJP/man/man1/echo.1 1.23 +1 -1 doc/ja_JP.eucJP/man/man1/ed.1 1.17 +1 -1 doc/ja_JP.eucJP/man/man1/ee.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/enigma.1 1.11 +14 -4 doc/ja_JP.eucJP/man/man1/eqn.1 1.10 +1 -1 doc/ja_JP.eucJP/man/man1/expand.1 1.12 +135 -22 doc/ja_JP.eucJP/man/man1/expr.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/false.1 1.21 +68 -73 doc/ja_JP.eucJP/man/man1/fdformat.1 1.17 +3 -3 doc/ja_JP.eucJP/man/man1/fdwrite.1 1.28 +1 -1 doc/ja_JP.eucJP/man/man1/fetch.1 1.24 +20 -16 doc/ja_JP.eucJP/man/man1/file.1 1.10 +2 -2 doc/ja_JP.eucJP/man/man1/file2c.1 1.33 +88 -13 doc/ja_JP.eucJP/man/man1/find.1 1.19 +1 -1 doc/ja_JP.eucJP/man/man1/finger.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/fmt.1 1.11 +1 -1 doc/ja_JP.eucJP/man/man1/fold.1 1.7 +1 -1 doc/ja_JP.eucJP/man/man1/fontedit.1 1.11 +1 -1 doc/ja_JP.eucJP/man/man1/from.1 1.15 +4 -4 doc/ja_JP.eucJP/man/man1/fstat.1 1.5 +2 -2 doc/ja_JP.eucJP/man/man1/fsync.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/g711conv.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/gasp.1 1.12 +2 -2 doc/ja_JP.eucJP/man/man1/gcc.1 1.11 +1 -1 doc/ja_JP.eucJP/man/man1/gcore.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/gencat.1 1.10 +2 -2 doc/ja_JP.eucJP/man/man1/getNAME.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/getopt.1 1.13 +20 -3 doc/ja_JP.eucJP/man/man1/gprof.1 1.13 +18 -3 doc/ja_JP.eucJP/man/man1/grep.1 1.8 +11 -15 doc/ja_JP.eucJP/man/man1/grn.1 1.8 +231 -20 doc/ja_JP.eucJP/man/man1/grodvi.1 1.6 +6 -5 doc/ja_JP.eucJP/man/man1/grog.1 1.7 +30 -50 doc/ja_JP.eucJP/man/man1/grolbp.1 1.10 +10 -5 doc/ja_JP.eucJP/man/man1/grolj4.1 1.11 +297 -46 doc/ja_JP.eucJP/man/man1/grops.1 1.8 +178 -39 doc/ja_JP.eucJP/man/man1/grotty.1 1.9 +2 -2 doc/ja_JP.eucJP/man/man1/groups.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/head.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/hexdump.1 1.14 +1 -1 doc/ja_JP.eucJP/man/man1/host.1 1.14 +1 -1 doc/ja_JP.eucJP/man/man1/hostname.1 1.7 +2 -2 doc/ja_JP.eucJP/man/man1/hpftodit.1 1.13 +2 -2 doc/ja_JP.eucJP/man/man1/id.1 1.11 +1 -1 doc/ja_JP.eucJP/man/man1/indent.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/indxbib.1 1.22 +5 -3 doc/ja_JP.eucJP/man/man1/install.1 1.10 +1 -1 doc/ja_JP.eucJP/man/man1/intro.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/ipcrm.1 1.10 +24 -5 doc/ja_JP.eucJP/man/man1/ipcs.1 1.11 +2 -2 doc/ja_JP.eucJP/man/man1/join.1 1.17 +1 -1 doc/ja_JP.eucJP/man/man1/jot.1 1.21 +8 -9 doc/ja_JP.eucJP/man/man1/kbdcontrol.1 1.17 +8 -3 doc/ja_JP.eucJP/man/man1/kbdmap.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/kcon.1 1.8 +2 -2 doc/ja_JP.eucJP/man/man1/kdump.1 1.6 +18 -4 doc/ja_JP.eucJP/man/man1/kenv.1 1.7 +1 -1 doc/ja_JP.eucJP/man/man1/keylogin.1 1.7 +1 -1 doc/ja_JP.eucJP/man/man1/keylogout.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/kill.1 1.19 +7 -2 doc/ja_JP.eucJP/man/man1/killall.1 1.13 +1 -1 doc/ja_JP.eucJP/man/man1/ktrace.1 1.10 +1 -1 doc/ja_JP.eucJP/man/man1/lam.1 1.13 +8 -3 doc/ja_JP.eucJP/man/man1/last.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/lastcomm.1 1.14 +31 -14 doc/ja_JP.eucJP/man/man1/ld.1 1.11 +9 -1 doc/ja_JP.eucJP/man/man1/ldd.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/leave.1 1.7 +79 -28 doc/ja_JP.eucJP/man/man1/less.1 1.5 +7 -2 doc/ja_JP.eucJP/man/man1/lesskey.1 1.13 +1 -1 doc/ja_JP.eucJP/man/man1/lex.1 1.22 +5 -5 doc/ja_JP.eucJP/man/man1/limits.1 1.14 +68 -12 doc/ja_JP.eucJP/man/man1/lint.1 1.10 +2 -2 doc/ja_JP.eucJP/man/man1/lkbib.1 1.18 +1 -1 doc/ja_JP.eucJP/man/man1/ln.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/loadfont.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/locate.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/lock.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/lockf.1 1.13 +1 -1 doc/ja_JP.eucJP/man/man1/logger.1 1.18 +5 -34 doc/ja_JP.eucJP/man/man1/login.1 1.10 +2 -2 doc/ja_JP.eucJP/man/man1/logname.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/look.1 1.10 +2 -2 doc/ja_JP.eucJP/man/man1/lookbib.1 1.13 +1 -1 doc/ja_JP.eucJP/man/man1/lp.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/lpq.1 1.19 +1 -1 doc/ja_JP.eucJP/man/man1/lpr.1 1.10 +1 -1 doc/ja_JP.eucJP/man/man1/lprm.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/lptest.1 1.34 +22 -3 doc/ja_JP.eucJP/man/man1/ls.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/lsvfs.1 1.15 +1 -1 doc/ja_JP.eucJP/man/man1/m4.1 1.27 +165 -87 doc/ja_JP.eucJP/man/man1/mail.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/mailq.1 1.32 +53 -43 doc/ja_JP.eucJP/man/man1/make.1 1.14 +68 -102 doc/ja_JP.eucJP/man/man1/makewhatis.1 1.20 +1 -1 doc/ja_JP.eucJP/man/man1/man.1 1.10 +1 -1 doc/ja_JP.eucJP/man/man1/manpath.1 1.15 +1 -1 doc/ja_JP.eucJP/man/man1/md5.1 1.9 +28 -9 doc/ja_JP.eucJP/man/man1/mesg.1 1.10 +8 -3 doc/ja_JP.eucJP/man/man1/minigzip.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/mkdep.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/mkdir.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/mkfifo.1 1.11 +42 -12 doc/ja_JP.eucJP/man/man1/mklocale.1 1.9 +2 -9 doc/ja_JP.eucJP/man/man1/mkstr.1 1.15 +1 -1 doc/ja_JP.eucJP/man/man1/mktemp.1 1.7 +2 -2 doc/ja_JP.eucJP/man/man1/mptable.1 1.14 +1 -1 doc/ja_JP.eucJP/man/man1/msgs.1 1.20 +8 -3 doc/ja_JP.eucJP/man/man1/mt.1 1.15 +7 -7 doc/ja_JP.eucJP/man/man1/mv.1 1.14 +5 -2 doc/ja_JP.eucJP/man/man1/ncal.1 1.7 +2 -2 doc/ja_JP.eucJP/man/man1/ncplist.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/ncplogin.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/ncplogout.1 1.8 +2 -2 doc/ja_JP.eucJP/man/man1/neqn.1 1.9 +5 -5 doc/ja_JP.eucJP/man/man1/nfsstat.1 1.14 +13 -6 doc/ja_JP.eucJP/man/man1/nice.1 1.4 +1 -1 doc/ja_JP.eucJP/man/man1/nl.1 1.12 +13 -7 doc/ja_JP.eucJP/man/man1/nohup.1 1.10 +12 -11 doc/ja_JP.eucJP/man/man1/nroff.1 1.10 +14 -53 doc/ja_JP.eucJP/man/man1/objformat.1 1.13 +1 -1 doc/ja_JP.eucJP/man/man1/od.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/opieinfo.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/opiekey.1 1.7 +1 -1 doc/ja_JP.eucJP/man/man1/opiepasswd.1 1.7 +1 -1 doc/ja_JP.eucJP/man/man1/pagesize.1 1.21 +5 -5 doc/ja_JP.eucJP/man/man1/passwd.1 1.13 +1 -1 doc/ja_JP.eucJP/man/man1/paste.1 1.13 +1 -1 doc/ja_JP.eucJP/man/man1/patch.1 1.23 +3 -3 doc/ja_JP.eucJP/man/man1/pax.1 1.9 +2 -2 doc/ja_JP.eucJP/man/man1/pfbtops.1 1.14 +180 -25 doc/ja_JP.eucJP/man/man1/pic.1 1.31 +3 -4 doc/ja_JP.eucJP/man/man1/pkg_add.1 1.33 +1 -2 doc/ja_JP.eucJP/man/man1/pkg_create.1 1.20 +1 -1 doc/ja_JP.eucJP/man/man1/pkg_delete.1 1.25 +4 -2 doc/ja_JP.eucJP/man/man1/pkg_info.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/pkg_sign.1 1.18 +8 -55 doc/ja_JP.eucJP/man/man1/pkg_version.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/pr.1 1.12 +17 -5 doc/ja_JP.eucJP/man/man1/printenv.1 1.14 +1 -1 doc/ja_JP.eucJP/man/man1/printf.1 1.22 +64 -20 doc/ja_JP.eucJP/man/man1/ps.1 1.6 +2 -2 doc/ja_JP.eucJP/man/man1/psroff.1 1.18 +1 -1 doc/ja_JP.eucJP/man/man1/pwd.1 1.11 +24 -15 doc/ja_JP.eucJP/man/man1/quota.1 1.7 +169 -421 doc/ja_JP.eucJP/man/man1/ranlib.1 1.2 +122 -85 doc/ja_JP.eucJP/man/man1/readelf.1 1.7 +2 -2 doc/ja_JP.eucJP/man/man1/realpath.1 1.13 +2 -2 doc/ja_JP.eucJP/man/man1/refer.1 1.6 +1 -1 doc/ja_JP.eucJP/man/man1/rev.1 1.14 +10 -9 doc/ja_JP.eucJP/man/man1/rlogin.1 1.19 +1 -1 doc/ja_JP.eucJP/man/man1/rm.1 1.10 +1 -1 doc/ja_JP.eucJP/man/man1/rmdir.1 1.14 +27 -19 doc/ja_JP.eucJP/man/man1/rpcgen.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/rs.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/rsh.1 1.9 +10 -4 doc/ja_JP.eucJP/man/man1/rtld.1 1.18 +1 -1 doc/ja_JP.eucJP/man/man1/rtprio.1 1.13 +4 -4 doc/ja_JP.eucJP/man/man1/rup.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/ruptime.1 1.12 +5 -5 doc/ja_JP.eucJP/man/man1/rusers.1 1.10 +5 -5 doc/ja_JP.eucJP/man/man1/rwall.1 1.7 +2 -2 doc/ja_JP.eucJP/man/man1/rwho.1 1.13 +2 -2 doc/ja_JP.eucJP/man/man1/sasc.1 1.10 +1 -1 doc/ja_JP.eucJP/man/man1/scon.1 1.15 +1 -1 doc/ja_JP.eucJP/man/man1/script.1 1.21 +1 -1 doc/ja_JP.eucJP/man/man1/sed.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/send-pr.1 1.11 +1 -1 doc/ja_JP.eucJP/man/man1/sgsc.1 1.40 +1 -4 doc/ja_JP.eucJP/man/man1/sh.1 1.9 +2 -2 doc/ja_JP.eucJP/man/man1/shar.1 1.14 +11 -11 doc/ja_JP.eucJP/man/man1/sleep.1 1.14 +20 -11 doc/ja_JP.eucJP/man/man1/sockstat.1 1.10 +2 -1 doc/ja_JP.eucJP/man/man1/split.1 1.15 +1 -1 doc/ja_JP.eucJP/man/man1/startslip.1 1.20 +1 -1 doc/ja_JP.eucJP/man/man1/stty.1 1.22 +26 -41 doc/ja_JP.eucJP/man/man1/su.1 1.7 +6 -4 doc/ja_JP.eucJP/man/man1/symorder.1 1.23 +3 -3 doc/ja_JP.eucJP/man/man1/systat.1 1.14 +1 -1 doc/ja_JP.eucJP/man/man1/tail.1 1.10 +8 -8 doc/ja_JP.eucJP/man/man1/talk.1 1.25 +1 -1 doc/ja_JP.eucJP/man/man1/tar.1 1.9 +280 -30 doc/ja_JP.eucJP/man/man1/tbl.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/tcopy.1 1.19 +1 -1 doc/ja_JP.eucJP/man/man1/tcpdump.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/tcpslice.1 1.7 +2 -2 doc/ja_JP.eucJP/man/man1/tee.1 1.26 +1 -1 doc/ja_JP.eucJP/man/man1/telnet.1 1.19 +1 -1 doc/ja_JP.eucJP/man/man1/test.1 1.10 +22 -3 doc/ja_JP.eucJP/man/man1/tfmtodit.1 1.10 +4 -4 doc/ja_JP.eucJP/man/man1/tftp.1 1.11 +8 -1 doc/ja_JP.eucJP/man/man1/time.1 1.15 +127 -75 doc/ja_JP.eucJP/man/man1/tip.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/top.1 1.10 +10 -3 doc/ja_JP.eucJP/man/man1/touch.1 1.13 +32 -20 doc/ja_JP.eucJP/man/man1/tput.1 1.14 +32 -19 doc/ja_JP.eucJP/man/man1/tr.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/true.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/truncate.1 1.10 +16 -3 doc/ja_JP.eucJP/man/man1/truss.1 1.11 +1 -1 doc/ja_JP.eucJP/man/man1/tset.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/tsort.1 1.7 +1 -1 doc/ja_JP.eucJP/man/man1/tty.1 1.10 +1 -1 doc/ja_JP.eucJP/man/man1/ul.1 1.11 +11 -2 doc/ja_JP.eucJP/man/man1/uname.1 1.9 +24 -4 doc/ja_JP.eucJP/man/man1/unifdef.1 1.15 +1 -4 doc/ja_JP.eucJP/man/man1/uniq.1 1.12 +2 -2 doc/ja_JP.eucJP/man/man1/units.1 1.6 +1 -1 doc/ja_JP.eucJP/man/man1/unvis.1 1.6 +4 -4 doc/ja_JP.eucJP/man/man1/uptime.1 1.3 +1 -1 doc/ja_JP.eucJP/man/man1/usbhidctl.1 1.7 +1 -1 doc/ja_JP.eucJP/man/man1/users.1 1.14 +24 -16 doc/ja_JP.eucJP/man/man1/uuencode.1 1.19 +1 -1 doc/ja_JP.eucJP/man/man1/vacation.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/vgrind.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/vi.1 1.31 +41 -18 doc/ja_JP.eucJP/man/man1/vidcontrol.1 1.7 +1 -1 doc/ja_JP.eucJP/man/man1/vis.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/vt220keys.1 1.6 +1 -1 doc/ja_JP.eucJP/man/man1/vttest.1 1.16 +2 -2 doc/ja_JP.eucJP/man/man1/w.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/wall.1 1.11 +4 -4 doc/ja_JP.eucJP/man/man1/wc.1 1.9 +16 -11 doc/ja_JP.eucJP/man/man1/what.1 1.12 +65 -22 doc/ja_JP.eucJP/man/man1/whereis.1 1.13 +10 -6 doc/ja_JP.eucJP/man/man1/which.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/who.1 1.9 +2 -2 doc/ja_JP.eucJP/man/man1/whoami.1 1.19 +34 -8 doc/ja_JP.eucJP/man/man1/whois.1 1.14 +1 -1 doc/ja_JP.eucJP/man/man1/window.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/write.1 1.8 +1 -1 doc/ja_JP.eucJP/man/man1/xstr.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/xten.1 1.9 +35 -11 doc/ja_JP.eucJP/man/man1/yacc.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/yes.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/ypcat.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/ypmatch.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/ypwhich.1 1.11 +6 -6 doc/ja_JP.eucJP/man/man1/yyfix.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 0:25:28 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DB4A37B401; Mon, 2 Dec 2002 00:25:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B13643E9C; Mon, 2 Dec 2002 00:25:27 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB28LNmV024434; Mon, 2 Dec 2002 00:21:23 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB28LNEc024433; Mon, 2 Dec 2002 00:21:23 -0800 (PST) Message-Id: <200212020821.gB28LNEc024433@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 2 Dec 2002 00:21:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gnustep-gui Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/12/02 00:21:23 PST Modified files: x11-toolkits/gnustep-gui Makefile Log: remove extra include Revision Changes Path 1.39 +1 -1 ports/x11-toolkits/gnustep-gui/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 0:45:40 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9F6337B404; Mon, 2 Dec 2002 00:45:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A87443ECD; Mon, 2 Dec 2002 00:45:39 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB28fZmV025698; Mon, 2 Dec 2002 00:41:35 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB28fZ5A025697; Mon, 2 Dec 2002 00:41:35 -0800 (PST) Message-Id: <200212020841.gB28fZ5A025697@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 00:41:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 00:41:35 PST Modified files: . exclude Log: Exclude src/contrib/binutils from $FreeBSD$ checking for the time being while I reset things. Revision Changes Path 1.51 +1 -0 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 0:46:13 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E61937B417; Mon, 2 Dec 2002 00:46:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E254743EA9; Mon, 2 Dec 2002 00:46:11 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB28g8mV025857; Mon, 2 Dec 2002 00:42:08 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB28g87p025856; Mon, 2 Dec 2002 00:42:08 -0800 (PST) Message-Id: <200212020842.gB28g87p025856@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 00:42:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/bfd elflink.h src/contrib/binutils/binutils nm.c strings.c src/contrib/binutils/gas configure configure.in src/contrib/binutils/gas/config tc-i386.c tc-i386.h te-freebsd.h src/contrib/binutils/gas/doc as.1 src/contrib/binutils/ld ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 00:42:08 PST Modified files: contrib/binutils/bfd elflink.h contrib/binutils/binutils nm.c strings.c contrib/binutils/gas configure configure.in contrib/binutils/gas/config tc-i386.c tc-i386.h te-freebsd.h contrib/binutils/gas/doc as.1 contrib/binutils/ld configure.host configure.tgt ld.1 contrib/binutils/ld/emulparams elf64alpha.sh Log: Try to keep CVS from pissing over the next binutils import by returning to purely stock files. Revision Changes Path 1.12 +0 -2 src/contrib/binutils/bfd/elflink.h 1.13 +0 -2 src/contrib/binutils/binutils/nm.c 1.8 +0 -2 src/contrib/binutils/binutils/strings.c 1.15 +0 -4 src/contrib/binutils/gas/config/tc-i386.c 1.10 +0 -4 src/contrib/binutils/gas/config/tc-i386.h 1.4 +0 -2 src/contrib/binutils/gas/config/te-freebsd.h 1.16 +0 -4 src/contrib/binutils/gas/configure 1.15 +0 -1 src/contrib/binutils/gas/configure.in 1.8 +0 -3 src/contrib/binutils/gas/doc/as.1 1.9 +0 -3 src/contrib/binutils/ld/configure.host 1.16 +0 -3 src/contrib/binutils/ld/configure.tgt 1.8 +0 -3 src/contrib/binutils/ld/emulparams/elf64alpha.sh 1.10 +0 -3 src/contrib/binutils/ld/ld.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 0:46:41 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F13F37B41B; Mon, 2 Dec 2002 00:46:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2077343EA9; Mon, 2 Dec 2002 00:46:40 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB28gamV025905; Mon, 2 Dec 2002 00:42:36 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB28gaLx025904; Mon, 2 Dec 2002 00:42:36 -0800 (PST) Message-Id: <200212020842.gB28gaLx025904@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 00:42:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 00:42:36 PST Modified files: . exclude Log: I'm done for now. Revision Changes Path 1.52 +0 -1 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:11:17 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5F6D37B401; Mon, 2 Dec 2002 01:10:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C64043ECF; Mon, 2 Dec 2002 01:10:49 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB296jmV027419; Mon, 2 Dec 2002 01:06:45 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB296j1d027417; Mon, 2 Dec 2002 01:06:45 -0800 (PST) Message-Id: <200212020906.gB296j1d027417@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:06:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils - Imported sources X-FreeBSD-CVS-Branch: FSF Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:06:45 PST src/contrib/binutils - Imported sources Update of /home/ncvs/src/contrib/binutils In directory repoman.freebsd.org:/tmp/cvs-serv27102 Log Message: Import of Binutils from the FSF 2.13 branch (just pre-.2 release). These bits are taken from the FSF anoncvs repo on 27-Oct-2002 21:12:00 EST. Status: Vendor Tag: FSF Release Tags: binutils_2_13_2_20021127 U src/contrib/binutils/configure U src/contrib/binutils/configure.in U src/contrib/binutils/ChangeLog U src/contrib/binutils/MAINTAINERS U src/contrib/binutils/Makefile.in U src/contrib/binutils/README U src/contrib/binutils/config-ml.in U src/contrib/binutils/README-maintainer-mode U src/contrib/binutils/config.guess U src/contrib/binutils/config.if U src/contrib/binutils/config.sub U src/contrib/binutils/install-sh U src/contrib/binutils/libtool.m4 U src/contrib/binutils/ltcf-c.sh U src/contrib/binutils/ltcf-cxx.sh U src/contrib/binutils/ltcf-gcj.sh U src/contrib/binutils/ltconfig U src/contrib/binutils/ltmain.sh U src/contrib/binutils/missing U src/contrib/binutils/mkinstalldirs U src/contrib/binutils/move-if-change U src/contrib/binutils/symlink-tree U src/contrib/binutils/ylwrap U src/contrib/binutils/binutils/ChangeLog U src/contrib/binutils/binutils/Makefile.am U src/contrib/binutils/binutils/Makefile.in U src/contrib/binutils/binutils/aclocal.m4 U src/contrib/binutils/binutils/configure U src/contrib/binutils/binutils/dep-in.sed U src/contrib/binutils/binutils/NEWS U src/contrib/binutils/binutils/README U src/contrib/binutils/binutils/defparse.c U src/contrib/binutils/binutils/defparse.h U src/contrib/binutils/binutils/rclex.c U src/contrib/binutils/binutils/MAINTAINERS U src/contrib/binutils/binutils/readelf.c U src/contrib/binutils/binutils/objcopy.c U src/contrib/binutils/binutils/ChangeLog-9197 U src/contrib/binutils/binutils/addr2line.c U src/contrib/binutils/binutils/config.in U src/contrib/binutils/binutils/ar.c U src/contrib/binutils/binutils/arlex.l U src/contrib/binutils/binutils/arparse.y U src/contrib/binutils/binutils/arsup.c U src/contrib/binutils/binutils/arsup.h U src/contrib/binutils/binutils/is-ranlib.c U src/contrib/binutils/binutils/is-strip.c U src/contrib/binutils/binutils/not-strip.c U src/contrib/binutils/binutils/maybe-ranlib.c U src/contrib/binutils/binutils/maybe-strip.c U src/contrib/binutils/binutils/not-ranlib.c U src/contrib/binutils/binutils/ranlib.sh U src/contrib/binutils/binutils/resres.c U src/contrib/binutils/binutils/sanity.sh U src/contrib/binutils/binutils/stamp-h.in I src/contrib/binutils/binutils/sysroff.info U src/contrib/binutils/binutils/bucomm.c U src/contrib/binutils/binutils/bucomm.h U src/contrib/binutils/binutils/budbg.h U src/contrib/binutils/binutils/coffgrok.c U src/contrib/binutils/binutils/coffgrok.h U src/contrib/binutils/binutils/debug.c U src/contrib/binutils/binutils/debug.h U src/contrib/binutils/binutils/deflex.l U src/contrib/binutils/binutils/defparse.y U src/contrib/binutils/binutils/dlltool.c U src/contrib/binutils/binutils/dlltool.h U src/contrib/binutils/binutils/dllwrap.c U src/contrib/binutils/binutils/filemode.c U src/contrib/binutils/binutils/ieee.c U src/contrib/binutils/binutils/nm.c U src/contrib/binutils/binutils/objdump.c U src/contrib/binutils/binutils/prdbg.c U src/contrib/binutils/binutils/rclex.l U src/contrib/binutils/binutils/ChangeLog-9899 U src/contrib/binutils/binutils/acinclude.m4 U src/contrib/binutils/binutils/stabs.c U src/contrib/binutils/binutils/rcparse.y U src/contrib/binutils/binutils/rdcoff.c U src/contrib/binutils/binutils/rddbg.c U src/contrib/binutils/binutils/rename.c U src/contrib/binutils/binutils/resbin.c U src/contrib/binutils/binutils/rescoff.c U src/contrib/binutils/binutils/resrc.c U src/contrib/binutils/binutils/size.c U src/contrib/binutils/binutils/srconv.c U src/contrib/binutils/binutils/strings.c U src/contrib/binutils/binutils/sysdump.c U src/contrib/binutils/binutils/sysinfo.y U src/contrib/binutils/binutils/syslex.l U src/contrib/binutils/binutils/unwind-ia64.c U src/contrib/binutils/binutils/unwind-ia64.h U src/contrib/binutils/binutils/version.c U src/contrib/binutils/binutils/wrstabs.c U src/contrib/binutils/binutils/coffdump.c U src/contrib/binutils/binutils/binemul.c U src/contrib/binutils/binutils/binemul.h U src/contrib/binutils/binutils/budemang.c U src/contrib/binutils/binutils/budemang.h U src/contrib/binutils/binutils/configure.tgt U src/contrib/binutils/binutils/emul_vanilla.c U src/contrib/binutils/binutils/configure.in U src/contrib/binutils/binutils/po/binutils.pot U src/contrib/binutils/binutils/po/Make-in U src/contrib/binutils/binutils/po/POTFILES.in I src/contrib/binutils/binutils/po/fr.po I src/contrib/binutils/binutils/po/tr.po I src/contrib/binutils/binutils/po/es.po I src/contrib/binutils/binutils/po/ja.po I src/contrib/binutils/binutils/po/sv.po I src/contrib/binutils/binutils/po/da.po U src/contrib/binutils/binutils/doc/addr2line.1 U src/contrib/binutils/binutils/doc/objdump.1 U src/contrib/binutils/binutils/doc/ar.1 I src/contrib/binutils/binutils/doc/binutils.info U src/contrib/binutils/binutils/doc/binutils.texi U src/contrib/binutils/binutils/doc/cxxfilt.man U src/contrib/binutils/binutils/doc/dlltool.1 U src/contrib/binutils/binutils/doc/nm.1 U src/contrib/binutils/binutils/doc/objcopy.1 U src/contrib/binutils/binutils/doc/ranlib.1 U src/contrib/binutils/binutils/doc/readelf.1 U src/contrib/binutils/binutils/doc/size.1 U src/contrib/binutils/binutils/doc/strings.1 U src/contrib/binutils/binutils/doc/strip.1 U src/contrib/binutils/binutils/doc/Makefile.am U src/contrib/binutils/binutils/doc/Makefile.in U src/contrib/binutils/opcodes/config.in U src/contrib/binutils/opcodes/configure U src/contrib/binutils/opcodes/disassemble.c U src/contrib/binutils/opcodes/ChangeLog-9297 U src/contrib/binutils/opcodes/ChangeLog-9899 U src/contrib/binutils/opcodes/sh-dis.c U src/contrib/binutils/opcodes/alpha-dis.c U src/contrib/binutils/opcodes/arc-dis.c U src/contrib/binutils/opcodes/arc-dis.h U src/contrib/binutils/opcodes/arc-ext.c U src/contrib/binutils/opcodes/MAINTAINERS U src/contrib/binutils/opcodes/arc-ext.h U src/contrib/binutils/opcodes/arc-opc.c U src/contrib/binutils/opcodes/arm-dis.c U src/contrib/binutils/opcodes/acinclude.m4 U src/contrib/binutils/opcodes/stamp-h.in U src/contrib/binutils/opcodes/arm-opc.h U src/contrib/binutils/opcodes/cgen-asm.c U src/contrib/binutils/opcodes/cgen-asm.in U src/contrib/binutils/opcodes/cgen-dis.in U src/contrib/binutils/opcodes/cgen-ibld.in U src/contrib/binutils/opcodes/cgen-opc.c U src/contrib/binutils/opcodes/cgen.sh U src/contrib/binutils/opcodes/dis-buf.c U src/contrib/binutils/opcodes/ppc-dis.c U src/contrib/binutils/opcodes/ia64-asmtab.h U src/contrib/binutils/opcodes/ia64-dis.c U src/contrib/binutils/opcodes/ia64-gen.c U src/contrib/binutils/opcodes/ia64-opc-a.c U src/contrib/binutils/opcodes/ia64-opc-b.c U src/contrib/binutils/opcodes/ia64-opc-d.c U src/contrib/binutils/opcodes/ia64-opc-f.c U src/contrib/binutils/opcodes/ia64-opc-i.c U src/contrib/binutils/opcodes/ia64-raw.tbl U src/contrib/binutils/opcodes/ia64-opc-m.c U src/contrib/binutils/opcodes/ia64-opc-x.c U src/contrib/binutils/opcodes/ia64-opc.c U src/contrib/binutils/opcodes/ia64-opc.h U src/contrib/binutils/opcodes/dep-in.sed U src/contrib/binutils/opcodes/ia64-war.tbl U src/contrib/binutils/opcodes/ia64-waw.tbl U src/contrib/binutils/opcodes/opintl.h U src/contrib/binutils/opcodes/s390-mkopc.c U src/contrib/binutils/opcodes/s390-opc.c U src/contrib/binutils/opcodes/s390-opc.txt U src/contrib/binutils/opcodes/sh-opc.h U src/contrib/binutils/opcodes/sparc-opc.c U src/contrib/binutils/opcodes/sysdep.h U src/contrib/binutils/opcodes/tic30-dis.c U src/contrib/binutils/opcodes/v850-dis.c U src/contrib/binutils/opcodes/v850-opc.c U src/contrib/binutils/opcodes/ia64-ic.tbl U src/contrib/binutils/opcodes/ppc-opc.c U src/contrib/binutils/opcodes/configure.in U src/contrib/binutils/opcodes/i386-dis.c U src/contrib/binutils/opcodes/alpha-opc.c U src/contrib/binutils/opcodes/ia64-asmtab.c U src/contrib/binutils/opcodes/sparc-dis.c U src/contrib/binutils/opcodes/cgen-dis.c U src/contrib/binutils/opcodes/ChangeLog U src/contrib/binutils/opcodes/Makefile.am U src/contrib/binutils/opcodes/Makefile.in U src/contrib/binutils/opcodes/aclocal.m4 U src/contrib/binutils/opcodes/s390-dis.c U src/contrib/binutils/opcodes/po/Make-in I src/contrib/binutils/opcodes/po/fr.po I src/contrib/binutils/opcodes/po/sv.po I src/contrib/binutils/opcodes/po/tr.po I src/contrib/binutils/opcodes/po/da.po I src/contrib/binutils/opcodes/po/es.po U src/contrib/binutils/opcodes/po/POTFILES.in U src/contrib/binutils/opcodes/po/opcodes.pot I src/contrib/binutils/opcodes/po/de.po I src/contrib/binutils/opcodes/po/pt_BR.po I src/contrib/binutils/opcodes/po/id.po U src/contrib/binutils/bfd/ChangeLog U src/contrib/binutils/bfd/Makefile.am U src/contrib/binutils/bfd/Makefile.in U src/contrib/binutils/bfd/aoutx.h U src/contrib/binutils/bfd/archures.c U src/contrib/binutils/bfd/bfd-in2.h U src/contrib/binutils/bfd/coff-arm.c U src/contrib/binutils/bfd/cofflink.c U src/contrib/binutils/bfd/configure U src/contrib/binutils/bfd/cpu-i386.c U src/contrib/binutils/bfd/cpu-s390.c U src/contrib/binutils/bfd/cpu-sparc.c U src/contrib/binutils/bfd/dep-in.sed U src/contrib/binutils/bfd/ecoff.c C src/contrib/binutils/bfd/elf.c U src/contrib/binutils/bfd/elf32-arm.h C src/contrib/binutils/bfd/elf32-i386.c U src/contrib/binutils/bfd/elf32-s390.c C src/contrib/binutils/bfd/elf32-sh.c U src/contrib/binutils/bfd/elf32-sparc.c C src/contrib/binutils/bfd/elf64-alpha.c U src/contrib/binutils/bfd/elf64-ppc.c U src/contrib/binutils/bfd/elf64-s390.c U src/contrib/binutils/bfd/elf64-x86-64.c U src/contrib/binutils/bfd/elflink.c C src/contrib/binutils/bfd/elflink.h U src/contrib/binutils/bfd/elfxx-ia64.c U src/contrib/binutils/bfd/i386linux.c U src/contrib/binutils/bfd/ihex.c U src/contrib/binutils/bfd/linker.c U src/contrib/binutils/bfd/sparclinux.c U src/contrib/binutils/bfd/srec.c U src/contrib/binutils/bfd/sunos.c U src/contrib/binutils/bfd/xcofflink.c U src/contrib/binutils/bfd/aclocal.m4 U src/contrib/binutils/bfd/archive.c C src/contrib/binutils/bfd/coff-sh.c U src/contrib/binutils/bfd/coffcode.h U src/contrib/binutils/bfd/config.in U src/contrib/binutils/bfd/dwarf2.c U src/contrib/binutils/bfd/elf-bfd.h U src/contrib/binutils/bfd/elfxx-target.h U src/contrib/binutils/bfd/libbfd.c U src/contrib/binutils/bfd/libbfd.h U src/contrib/binutils/bfd/merge.c U src/contrib/binutils/bfd/syms.c U src/contrib/binutils/bfd/elf-eh-frame.c U src/contrib/binutils/bfd/osf-core.c U src/contrib/binutils/bfd/version.h U src/contrib/binutils/bfd/ChangeLog-0001 U src/contrib/binutils/bfd/ChangeLog-9193 U src/contrib/binutils/bfd/elf64-sparc.c U src/contrib/binutils/bfd/ChangeLog-9495 U src/contrib/binutils/bfd/ChangeLog-9697 U src/contrib/binutils/bfd/ChangeLog-9899 U src/contrib/binutils/bfd/coff-rs6000.c U src/contrib/binutils/bfd/coff64-rs6000.c U src/contrib/binutils/bfd/MAINTAINERS U src/contrib/binutils/bfd/PORTING U src/contrib/binutils/bfd/README U src/contrib/binutils/bfd/TODO U src/contrib/binutils/bfd/acinclude.m4 U src/contrib/binutils/bfd/aout-arm.c U src/contrib/binutils/bfd/aout-encap.c U src/contrib/binutils/bfd/aout-sparcle.c U src/contrib/binutils/bfd/aout-target.h U src/contrib/binutils/bfd/aout-tic30.c U src/contrib/binutils/bfd/aout0.c U src/contrib/binutils/bfd/aout32.c U src/contrib/binutils/bfd/aout64.c U src/contrib/binutils/bfd/aoutf1.h U src/contrib/binutils/bfd/bfd.c U src/contrib/binutils/bfd/archive64.c U src/contrib/binutils/bfd/armnetbsd.c U src/contrib/binutils/bfd/bfd-in.h U src/contrib/binutils/bfd/binary.c U src/contrib/binutils/bfd/cache.c U src/contrib/binutils/bfd/coff-alpha.c U src/contrib/binutils/bfd/coff-aux.c U src/contrib/binutils/bfd/coff-i386.c U src/contrib/binutils/bfd/coff-ia64.c U src/contrib/binutils/bfd/coff-ppc.c U src/contrib/binutils/bfd/coff-sparc.c U src/contrib/binutils/bfd/coff-tic30.c U src/contrib/binutils/bfd/coffgen.c U src/contrib/binutils/bfd/coffswap.h U src/contrib/binutils/bfd/config.bfd U src/contrib/binutils/bfd/configure.host U src/contrib/binutils/bfd/corefile.c U src/contrib/binutils/bfd/cpu-alpha.c U src/contrib/binutils/bfd/cpu-arc.c U src/contrib/binutils/bfd/cpu-arm.c U src/contrib/binutils/bfd/cpu-ia64-opc.c U src/contrib/binutils/bfd/cpu-ia64.c U src/contrib/binutils/bfd/cpu-powerpc.c U src/contrib/binutils/bfd/cpu-rs6000.c C src/contrib/binutils/bfd/cpu-sh.c U src/contrib/binutils/bfd/cpu-tic30.c U src/contrib/binutils/bfd/cpu-v850.c U src/contrib/binutils/bfd/demo64.c U src/contrib/binutils/bfd/dwarf1.c U src/contrib/binutils/bfd/ecofflink.c U src/contrib/binutils/bfd/ecoffswap.h U src/contrib/binutils/bfd/efi-app-ia32.c U src/contrib/binutils/bfd/efi-app-ia64.c U src/contrib/binutils/bfd/elf32-arc.c U src/contrib/binutils/bfd/elf-strtab.c U src/contrib/binutils/bfd/elf32-gen.c U src/contrib/binutils/bfd/elf32.c U src/contrib/binutils/bfd/elf32-v850.c U src/contrib/binutils/bfd/elf64-gen.c U src/contrib/binutils/bfd/elf64-ppc.h U src/contrib/binutils/bfd/elf64.c U src/contrib/binutils/bfd/elfarm-nabi.c U src/contrib/binutils/bfd/elfarm-oabi.c U src/contrib/binutils/bfd/elfcode.h U src/contrib/binutils/bfd/elfcore.h U src/contrib/binutils/bfd/format.c U src/contrib/binutils/bfd/freebsd.h U src/contrib/binutils/bfd/gen-aout.c U src/contrib/binutils/bfd/hash.c U src/contrib/binutils/bfd/genlink.h U src/contrib/binutils/bfd/host-aout.c U src/contrib/binutils/bfd/i386aout.c U src/contrib/binutils/bfd/i386bsd.c U src/contrib/binutils/bfd/i386freebsd.c U src/contrib/binutils/bfd/i386netbsd.c U src/contrib/binutils/bfd/ieee.c U src/contrib/binutils/bfd/init.c U src/contrib/binutils/bfd/libaout.h U src/contrib/binutils/bfd/libbfd-in.h U src/contrib/binutils/bfd/libcoff-in.h U src/contrib/binutils/bfd/libcoff.h U src/contrib/binutils/bfd/libecoff.h U src/contrib/binutils/bfd/libieee.h U src/contrib/binutils/bfd/libpei.h U src/contrib/binutils/bfd/netbsd-core.c U src/contrib/binutils/bfd/netbsd.h U src/contrib/binutils/bfd/opncls.c U src/contrib/binutils/bfd/pe-arm.c U src/contrib/binutils/bfd/pe-i386.c U src/contrib/binutils/bfd/pe-ppc.c U src/contrib/binutils/bfd/peXXigen.c U src/contrib/binutils/bfd/peicode.h U src/contrib/binutils/bfd/ppcboot.c U src/contrib/binutils/bfd/ptrace-core.c U src/contrib/binutils/bfd/reloc.c U src/contrib/binutils/bfd/reloc16.c U src/contrib/binutils/bfd/rs6000-core.c U src/contrib/binutils/bfd/sco5-core.c U src/contrib/binutils/bfd/section.c U src/contrib/binutils/bfd/stab-syms.c U src/contrib/binutils/bfd/stabs.c U src/contrib/binutils/bfd/sparcnetbsd.c U src/contrib/binutils/bfd/stamp-h.in U src/contrib/binutils/bfd/sysdep.h U src/contrib/binutils/bfd/targets.c U src/contrib/binutils/bfd/targmatch.sed U src/contrib/binutils/bfd/tekhex.c U src/contrib/binutils/bfd/trad-core.c U src/contrib/binutils/bfd/xcoff-target.h U src/contrib/binutils/bfd/elf32-ppc.c U src/contrib/binutils/bfd/configure.in U src/contrib/binutils/bfd/elf32-i386-fbsd.c U src/contrib/binutils/bfd/elf64-alpha-fbsd.c U src/contrib/binutils/bfd/doc/ChangeLog U src/contrib/binutils/bfd/doc/Makefile.in U src/contrib/binutils/bfd/doc/aoutx.texi U src/contrib/binutils/bfd/doc/archive.texi U src/contrib/binutils/bfd/doc/archures.texi I src/contrib/binutils/bfd/doc/bfd.info U src/contrib/binutils/bfd/doc/bfdt.texi U src/contrib/binutils/bfd/doc/cache.texi U src/contrib/binutils/bfd/doc/coffcode.texi U src/contrib/binutils/bfd/doc/core.texi U src/contrib/binutils/bfd/doc/elf.texi U src/contrib/binutils/bfd/doc/elfcode.texi U src/contrib/binutils/bfd/doc/format.texi U src/contrib/binutils/bfd/doc/hash.texi U src/contrib/binutils/bfd/doc/init.texi U src/contrib/binutils/bfd/doc/libbfd.texi U src/contrib/binutils/bfd/doc/linker.texi U src/contrib/binutils/bfd/doc/opncls.texi U src/contrib/binutils/bfd/doc/reloc.texi U src/contrib/binutils/bfd/doc/section.texi U src/contrib/binutils/bfd/doc/syms.texi U src/contrib/binutils/bfd/doc/targets.texi U src/contrib/binutils/bfd/doc/Makefile.am U src/contrib/binutils/bfd/doc/bfd.texinfo U src/contrib/binutils/bfd/doc/bfdint.texi U src/contrib/binutils/bfd/doc/bfdsumm.texi U src/contrib/binutils/bfd/doc/chew.c U src/contrib/binutils/bfd/doc/doc.str U src/contrib/binutils/bfd/doc/header.sed U src/contrib/binutils/bfd/doc/proto.str I src/contrib/binutils/bfd/po/tr.po I src/contrib/binutils/bfd/po/ja.po I src/contrib/binutils/bfd/po/sv.po U src/contrib/binutils/bfd/po/BLD-POTFILES.in U src/contrib/binutils/bfd/po/Make-in U src/contrib/binutils/bfd/po/SRC-POTFILES.in U src/contrib/binutils/bfd/po/bfd.pot I src/contrib/binutils/bfd/po/es.po I src/contrib/binutils/bfd/po/fr.po I src/contrib/binutils/bfd/po/da.po U src/contrib/binutils/bfd/hosts/alphalinux.h U src/contrib/binutils/bfd/hosts/decstation.h U src/contrib/binutils/bfd/hosts/i386bsd.h U src/contrib/binutils/bfd/hosts/i386linux.h U src/contrib/binutils/bfd/hosts/i386sco.h U src/contrib/binutils/libiberty/README U src/contrib/binutils/libiberty/asprintf.c U src/contrib/binutils/libiberty/atexit.c U src/contrib/binutils/libiberty/bcmp.c U src/contrib/binutils/libiberty/bcopy.c U src/contrib/binutils/libiberty/bzero.c U src/contrib/binutils/libiberty/calloc.c U src/contrib/binutils/libiberty/clock.c U src/contrib/binutils/libiberty/concat.c U src/contrib/binutils/libiberty/copysign.c U src/contrib/binutils/libiberty/fdmatch.c U src/contrib/binutils/libiberty/getpagesize.c U src/contrib/binutils/libiberty/getpwd.c U src/contrib/binutils/libiberty/hex.c U src/contrib/binutils/libiberty/index.c U src/contrib/binutils/libiberty/insque.c U src/contrib/binutils/libiberty/memcpy.c U src/contrib/binutils/libiberty/memmove.c U src/contrib/binutils/libiberty/memset.c U src/contrib/binutils/libiberty/putenv.c U src/contrib/binutils/libiberty/random.c U src/contrib/binutils/libiberty/rindex.c U src/contrib/binutils/libiberty/spaces.c U src/contrib/binutils/libiberty/strcasecmp.c U src/contrib/binutils/libiberty/md5.c U src/contrib/binutils/libiberty/strchr.c U src/contrib/binutils/libiberty/strdup.c U src/contrib/binutils/libiberty/strncasecmp.c U src/contrib/binutils/libiberty/strrchr.c U src/contrib/binutils/libiberty/strstr.c U src/contrib/binutils/libiberty/tmpnam.c U src/contrib/binutils/libiberty/vfprintf.c U src/contrib/binutils/libiberty/vprintf.c U src/contrib/binutils/libiberty/vsprintf.c U src/contrib/binutils/libiberty/xatexit.c U src/contrib/binutils/libiberty/xstrdup.c U src/contrib/binutils/libiberty/xstrerror.c U src/contrib/binutils/libiberty/fnmatch.c U src/contrib/binutils/libiberty/getopt.c U src/contrib/binutils/libiberty/getopt1.c U src/contrib/binutils/libiberty/obstack.c U src/contrib/binutils/libiberty/dyn-string.c U src/contrib/binutils/libiberty/getcwd.c U src/contrib/binutils/libiberty/floatformat.c U src/contrib/binutils/libiberty/objalloc.c U src/contrib/binutils/libiberty/strerror.c U src/contrib/binutils/libiberty/strsignal.c U src/contrib/binutils/libiberty/xmemdup.c U src/contrib/binutils/libiberty/ChangeLog U src/contrib/binutils/libiberty/basename.c U src/contrib/binutils/libiberty/bsearch.c U src/contrib/binutils/libiberty/pexecute.c U src/contrib/binutils/libiberty/safe-ctype.c U src/contrib/binutils/libiberty/strtod.c U src/contrib/binutils/libiberty/strtol.c U src/contrib/binutils/libiberty/strtoul.c U src/contrib/binutils/libiberty/xmalloc.c U src/contrib/binutils/libiberty/getruntime.c U src/contrib/binutils/libiberty/memcmp.c U src/contrib/binutils/libiberty/mkstemps.c U src/contrib/binutils/libiberty/partition.c U src/contrib/binutils/libiberty/rename.c U src/contrib/binutils/libiberty/setenv.c U src/contrib/binutils/libiberty/sort.c U src/contrib/binutils/libiberty/sigsetmask.c U src/contrib/binutils/libiberty/splay-tree.c U src/contrib/binutils/libiberty/strncmp.c U src/contrib/binutils/libiberty/vasprintf.c U src/contrib/binutils/libiberty/vfork.c U src/contrib/binutils/libiberty/waitpid.c U src/contrib/binutils/libiberty/xexit.c U src/contrib/binutils/libiberty/Makefile.in U src/contrib/binutils/libiberty/aclocal.m4 U src/contrib/binutils/libiberty/alloca.c U src/contrib/binutils/libiberty/argv.c U src/contrib/binutils/libiberty/choose-temp.c U src/contrib/binutils/libiberty/config.in U src/contrib/binutils/libiberty/config.table U src/contrib/binutils/libiberty/configure U src/contrib/binutils/libiberty/configure.in U src/contrib/binutils/libiberty/cp-demangle.c U src/contrib/binutils/libiberty/cplus-dem.c U src/contrib/binutils/libiberty/hashtab.c U src/contrib/binutils/libiberty/lbasename.c U src/contrib/binutils/libiberty/make-temp-file.c U src/contrib/binutils/libiberty/memchr.c U src/contrib/binutils/libiberty/ternary.c U src/contrib/binutils/libiberty/ffs.c U src/contrib/binutils/libiberty/regex.c U src/contrib/binutils/libiberty/copying-lib.texi U src/contrib/binutils/libiberty/fibheap.c U src/contrib/binutils/libiberty/fnmatch.txh U src/contrib/binutils/libiberty/functions.texi U src/contrib/binutils/libiberty/gather-docs U src/contrib/binutils/libiberty/libiberty.texi U src/contrib/binutils/libiberty/maint-tool U src/contrib/binutils/libiberty/obstacks.texi U src/contrib/binutils/libiberty/_doprnt.c U src/contrib/binutils/libiberty/config/mh-openedition U src/contrib/binutils/libiberty/config/mh-cxux7 U src/contrib/binutils/libiberty/config/mh-fbsd21 U src/contrib/binutils/include/MAINTAINERS U src/contrib/binutils/include/fopen-bin.h U src/contrib/binutils/include/fopen-same.h U src/contrib/binutils/include/gdbm.h U src/contrib/binutils/include/objalloc.h U src/contrib/binutils/include/bin-bugs.h U src/contrib/binutils/include/filenames.h U src/contrib/binutils/include/ansidecl.h U src/contrib/binutils/include/bfdlink.h U src/contrib/binutils/include/demangle.h U src/contrib/binutils/include/dyn-string.h U src/contrib/binutils/include/floatformat.h U src/contrib/binutils/include/fnmatch.h U src/contrib/binutils/include/getopt.h U src/contrib/binutils/include/hashtab.h U src/contrib/binutils/include/ieee.h U src/contrib/binutils/include/libiberty.h U src/contrib/binutils/include/md5.h U src/contrib/binutils/include/obstack.h U src/contrib/binutils/include/partition.h U src/contrib/binutils/include/progress.h U src/contrib/binutils/include/safe-ctype.h U src/contrib/binutils/include/sort.h U src/contrib/binutils/include/splay-tree.h U src/contrib/binutils/include/symcat.h U src/contrib/binutils/include/alloca-conf.h U src/contrib/binutils/include/ternary.h U src/contrib/binutils/include/xregex.h U src/contrib/binutils/include/xregex2.h U src/contrib/binutils/include/fibheap.h U src/contrib/binutils/include/ChangeLog U src/contrib/binutils/include/dis-asm.h U src/contrib/binutils/include/aout/ChangeLog U src/contrib/binutils/include/aout/aout64.h U src/contrib/binutils/include/aout/ar.h U src/contrib/binutils/include/aout/encap.h U src/contrib/binutils/include/aout/host.h U src/contrib/binutils/include/aout/ranlib.h U src/contrib/binutils/include/aout/reloc.h U src/contrib/binutils/include/aout/stab.def U src/contrib/binutils/include/aout/stab_gnu.h U src/contrib/binutils/include/aout/sun4.h U src/contrib/binutils/include/elf/ChangeLog U src/contrib/binutils/include/elf/m68k.h U src/contrib/binutils/include/elf/ppc.h U src/contrib/binutils/include/elf/arc.h U src/contrib/binutils/include/elf/arm.h U src/contrib/binutils/include/elf/avr.h U src/contrib/binutils/include/elf/common.h U src/contrib/binutils/include/elf/cris.h U src/contrib/binutils/include/elf/d10v.h U src/contrib/binutils/include/elf/d30v.h U src/contrib/binutils/include/elf/dwarf.h U src/contrib/binutils/include/elf/dwarf2.h U src/contrib/binutils/include/elf/external.h U src/contrib/binutils/include/elf/fr30.h U src/contrib/binutils/include/elf/hppa.h U src/contrib/binutils/include/elf/i370.h U src/contrib/binutils/include/elf/i386.h U src/contrib/binutils/include/elf/i860.h U src/contrib/binutils/include/elf/i960.h U src/contrib/binutils/include/elf/ia64.h U src/contrib/binutils/include/elf/internal.h U src/contrib/binutils/include/elf/m32r.h U src/contrib/binutils/include/elf/m68hc11.h U src/contrib/binutils/include/elf/mcore.h U src/contrib/binutils/include/elf/mips.h U src/contrib/binutils/include/elf/mn10200.h U src/contrib/binutils/include/elf/mn10300.h U src/contrib/binutils/include/elf/pj.h U src/contrib/binutils/include/elf/reloc-macros.h U src/contrib/binutils/include/elf/s390.h U src/contrib/binutils/include/elf/sparc.h U src/contrib/binutils/include/elf/v850.h U src/contrib/binutils/include/elf/x86-64.h U src/contrib/binutils/include/elf/openrisc.h U src/contrib/binutils/include/elf/h8.h U src/contrib/binutils/include/elf/mmix.h U src/contrib/binutils/include/elf/xstormy16.h U src/contrib/binutils/include/elf/or32.h U src/contrib/binutils/include/elf/alpha.h U src/contrib/binutils/include/elf/sh.h U src/contrib/binutils/include/elf/dlx.h U src/contrib/binutils/include/elf/frv.h U src/contrib/binutils/include/elf/vax.h U src/contrib/binutils/include/coff/ChangeLog U src/contrib/binutils/include/coff/alpha.h U src/contrib/binutils/include/coff/arm.h U src/contrib/binutils/include/coff/sym.h U src/contrib/binutils/include/coff/symconst.h U src/contrib/binutils/include/coff/aux-coff.h U src/contrib/binutils/include/coff/ecoff.h U src/contrib/binutils/include/coff/external.h U src/contrib/binutils/include/coff/i386.h U src/contrib/binutils/include/coff/ia64.h U src/contrib/binutils/include/coff/internal.h U src/contrib/binutils/include/coff/pe.h U src/contrib/binutils/include/coff/powerpc.h U src/contrib/binutils/include/coff/rs6000.h U src/contrib/binutils/include/coff/rs6k64.h U src/contrib/binutils/include/coff/sh.h U src/contrib/binutils/include/coff/sparc.h U src/contrib/binutils/include/coff/ti.h C src/contrib/binutils/include/coff/tic30.h U src/contrib/binutils/include/opcode/i386.h U src/contrib/binutils/include/opcode/ChangeLog U src/contrib/binutils/include/opcode/ppc.h U src/contrib/binutils/include/opcode/alpha.h U src/contrib/binutils/include/opcode/tic30.h U src/contrib/binutils/include/opcode/ia64.h U src/contrib/binutils/include/opcode/arc.h U src/contrib/binutils/include/opcode/arm.h U src/contrib/binutils/include/opcode/cgen.h U src/contrib/binutils/include/opcode/convex.h U src/contrib/binutils/include/opcode/np1.h U src/contrib/binutils/include/opcode/pn.h U src/contrib/binutils/include/opcode/s390.h U src/contrib/binutils/include/opcode/sparc.h U src/contrib/binutils/include/opcode/v850.h U src/contrib/binutils/include/regs/ChangeLog U src/contrib/binutils/gas/ChangeLog U src/contrib/binutils/gas/as.c U src/contrib/binutils/gas/Makefile.am U src/contrib/binutils/gas/Makefile.in U src/contrib/binutils/gas/aclocal.m4 U src/contrib/binutils/gas/config.in U src/contrib/binutils/gas/dep-in.sed U src/contrib/binutils/gas/write.c C src/contrib/binutils/gas/configure C src/contrib/binutils/gas/configure.in U src/contrib/binutils/gas/NEWS U src/contrib/binutils/gas/README U src/contrib/binutils/gas/CONTRIBUTORS U src/contrib/binutils/gas/gdbinit.in U src/contrib/binutils/gas/link.cmd U src/contrib/binutils/gas/stamp-h.in U src/contrib/binutils/gas/MAINTAINERS U src/contrib/binutils/gas/acinclude.m4 U src/contrib/binutils/gas/ChangeLog-9295 U src/contrib/binutils/gas/ChangeLog-9697 U src/contrib/binutils/gas/ChangeLog-9899 U src/contrib/binutils/gas/app.c U src/contrib/binutils/gas/as.h U src/contrib/binutils/gas/cgen.c U src/contrib/binutils/gas/asintl.h U src/contrib/binutils/gas/atof-generic.c U src/contrib/binutils/gas/bignum-copy.c U src/contrib/binutils/gas/bignum.h U src/contrib/binutils/gas/bit_fix.h U src/contrib/binutils/gas/cgen.h U src/contrib/binutils/gas/cond.c U src/contrib/binutils/gas/debug.c U src/contrib/binutils/gas/depend.c U src/contrib/binutils/gas/dwarf2dbg.c U src/contrib/binutils/gas/dwarf2dbg.h U src/contrib/binutils/gas/ecoff.c U src/contrib/binutils/gas/ecoff.h U src/contrib/binutils/gas/ehopt.c U src/contrib/binutils/gas/emul-target.h U src/contrib/binutils/gas/emul.h U src/contrib/binutils/gas/expr.c U src/contrib/binutils/gas/expr.h U src/contrib/binutils/gas/flonum-copy.c U src/contrib/binutils/gas/flonum-konst.c U src/contrib/binutils/gas/flonum-mult.c U src/contrib/binutils/gas/flonum.h U src/contrib/binutils/gas/frags.c U src/contrib/binutils/gas/frags.h U src/contrib/binutils/gas/gasp.c U src/contrib/binutils/gas/hash.c U src/contrib/binutils/gas/hash.h U src/contrib/binutils/gas/input-file.c U src/contrib/binutils/gas/input-file.h U src/contrib/binutils/gas/input-scrub.c U src/contrib/binutils/gas/itbl-lex.l U src/contrib/binutils/gas/itbl-ops.c U src/contrib/binutils/gas/itbl-ops.h U src/contrib/binutils/gas/itbl-parse.y U src/contrib/binutils/gas/listing.c U src/contrib/binutils/gas/listing.h U src/contrib/binutils/gas/literal.c U src/contrib/binutils/gas/macro.c U src/contrib/binutils/gas/macro.h U src/contrib/binutils/gas/messages.c U src/contrib/binutils/gas/obj.h U src/contrib/binutils/gas/output-file.c U src/contrib/binutils/gas/output-file.h U src/contrib/binutils/gas/read.c U src/contrib/binutils/gas/read.h U src/contrib/binutils/gas/sb.c U src/contrib/binutils/gas/sb.h U src/contrib/binutils/gas/stabs.c U src/contrib/binutils/gas/struc-symbol.h U src/contrib/binutils/gas/subsegs.c U src/contrib/binutils/gas/subsegs.h U src/contrib/binutils/gas/symbols.c U src/contrib/binutils/gas/tc.h U src/contrib/binutils/gas/symbols.h U src/contrib/binutils/gas/write.h U src/contrib/binutils/gas/ChangeLog-0001 U src/contrib/binutils/gas/config/tc-i386.c U src/contrib/binutils/gas/config/obj-elf.c U src/contrib/binutils/gas/config/tc-arm.c U src/contrib/binutils/gas/config/tc-i386.h U src/contrib/binutils/gas/config/tc-ia64.c U src/contrib/binutils/gas/config/tc-ia64.h U src/contrib/binutils/gas/config/tc-sparc.h C src/contrib/binutils/gas/config/tc-sh.c U src/contrib/binutils/gas/config/tc-sparc.c U src/contrib/binutils/gas/config/obj-coff.h U src/contrib/binutils/gas/config/tc-alpha.c U src/contrib/binutils/gas/config/tc-ppc.c U src/contrib/binutils/gas/config/e-i386aout.c U src/contrib/binutils/gas/config/e-i386coff.c U src/contrib/binutils/gas/config/e-i386elf.c U src/contrib/binutils/gas/config/obj-multi.c U src/contrib/binutils/gas/config/tc-generic.c U src/contrib/binutils/gas/config/te-generic.h U src/contrib/binutils/gas/config/te-linux.h U src/contrib/binutils/gas/config/te-pe.h U src/contrib/binutils/gas/config/te-svr4.h U src/contrib/binutils/gas/config/tc-s390.c U src/contrib/binutils/gas/config/te-aux.h U src/contrib/binutils/gas/config/te-sysv32.h U src/contrib/binutils/gas/config/tc-s390.h U src/contrib/binutils/gas/config/aout_gnu.h U src/contrib/binutils/gas/config/atof-ieee.c U src/contrib/binutils/gas/config/atof-vax.c U src/contrib/binutils/gas/config/obj-aout.c U src/contrib/binutils/gas/config/obj-aout.h U src/contrib/binutils/gas/config/obj-coff.c U src/contrib/binutils/gas/config/obj-ecoff.c U src/contrib/binutils/gas/config/obj-ecoff.h U src/contrib/binutils/gas/config/obj-elf.h U src/contrib/binutils/gas/config/obj-ieee.c U src/contrib/binutils/gas/config/obj-ieee.h U src/contrib/binutils/gas/config/obj-multi.h U src/contrib/binutils/gas/config/tc-arc.c U src/contrib/binutils/gas/config/tc-arc.h U src/contrib/binutils/gas/config/tc-arm.h U src/contrib/binutils/gas/config/tc-generic.h U src/contrib/binutils/gas/config/tc-m68851.h U src/contrib/binutils/gas/config/tc-ppc.h C src/contrib/binutils/gas/config/tc-sh.h U src/contrib/binutils/gas/config/tc-tic30.c U src/contrib/binutils/gas/config/tc-tic30.h U src/contrib/binutils/gas/config/tc-v850.c U src/contrib/binutils/gas/config/tc-v850.h U src/contrib/binutils/gas/config/te-386bsd.h U src/contrib/binutils/gas/config/te-freebsd.h U src/contrib/binutils/gas/config/te-nbsd.h U src/contrib/binutils/gas/config/te-ppcnw.h U src/contrib/binutils/gas/config/te-sparcaout.h U src/contrib/binutils/gas/config/tc-alpha.h U src/contrib/binutils/gas/doc/Makefile.am U src/contrib/binutils/gas/doc/as.1 I src/contrib/binutils/gas/doc/as.info U src/contrib/binutils/gas/doc/as.texinfo U src/contrib/binutils/gas/doc/c-ppc.texi U src/contrib/binutils/gas/doc/all.texi U src/contrib/binutils/gas/doc/c-alpha.texi U src/contrib/binutils/gas/doc/h8.texi U src/contrib/binutils/gas/doc/c-arc.texi U src/contrib/binutils/gas/doc/c-arm.texi U src/contrib/binutils/gas/doc/c-i386.texi U src/contrib/binutils/gas/doc/c-sh.texi U src/contrib/binutils/gas/doc/c-sparc.texi U src/contrib/binutils/gas/doc/c-v850.texi U src/contrib/binutils/gas/doc/gasp.texi U src/contrib/binutils/gas/doc/internals.texi U src/contrib/binutils/gas/doc/Makefile.in U src/contrib/binutils/gas/doc/c-ia64.texi I src/contrib/binutils/gas/po/es.po U src/contrib/binutils/gas/po/Make-in I src/contrib/binutils/gas/po/fr.po I src/contrib/binutils/gas/po/tr.po U src/contrib/binutils/gas/po/POTFILES.in U src/contrib/binutils/gas/po/gas.pot I src/contrib/binutils/gprof/gprof.info U src/contrib/binutils/gprof/po/gprof.pot U src/contrib/binutils/gprof/po/Make-in U src/contrib/binutils/gprof/po/POTFILES.in I src/contrib/binutils/gprof/po/fr.po I src/contrib/binutils/gprof/po/es.po I src/contrib/binutils/gprof/po/sv.po I src/contrib/binutils/gprof/po/tr.po I src/contrib/binutils/gprof/po/id.po U src/contrib/binutils/ld/ChangeLog U src/contrib/binutils/ld/Makefile.am U src/contrib/binutils/ld/Makefile.in C src/contrib/binutils/ld/configure.host U src/contrib/binutils/ld/dep-in.sed U src/contrib/binutils/ld/genscripts.sh U src/contrib/binutils/ld/ldlang.c U src/contrib/binutils/ld/ldmain.c U src/contrib/binutils/ld/configure.in U src/contrib/binutils/ld/NEWS C src/contrib/binutils/ld/ld.1 I src/contrib/binutils/ld/ld.info U src/contrib/binutils/ld/ld.texinfo C src/contrib/binutils/ld/configure.tgt U src/contrib/binutils/ld/ldgram.y U src/contrib/binutils/ld/ldlang.h U src/contrib/binutils/ld/config.in U src/contrib/binutils/ld/configure U src/contrib/binutils/ld/lexsup.c U src/contrib/binutils/ld/ldlex.l U src/contrib/binutils/ld/README U src/contrib/binutils/ld/TODO U src/contrib/binutils/ld/ChangeLog-9197 U src/contrib/binutils/ld/h8-doc.texi U src/contrib/binutils/ld/ChangeLog-9899 U src/contrib/binutils/ld/gen-doc.texi U src/contrib/binutils/ld/ldwrite.h U src/contrib/binutils/ld/stamp-h.in U src/contrib/binutils/ld/aclocal.m4 U src/contrib/binutils/ld/deffile.h U src/contrib/binutils/ld/deffilep.y U src/contrib/binutils/ld/ld.h U src/contrib/binutils/ld/ldcref.c U src/contrib/binutils/ld/ldctor.c U src/contrib/binutils/ld/ldctor.h U src/contrib/binutils/ld/ldemul.c U src/contrib/binutils/ld/ldemul.h U src/contrib/binutils/ld/ldexp.c U src/contrib/binutils/ld/ldexp.h U src/contrib/binutils/ld/ldfile.c U src/contrib/binutils/ld/ldfile.h U src/contrib/binutils/ld/ldint.texinfo U src/contrib/binutils/ld/ldlex.h U src/contrib/binutils/ld/ldmain.h U src/contrib/binutils/ld/ldmisc.c U src/contrib/binutils/ld/ldmisc.h U src/contrib/binutils/ld/ldver.c U src/contrib/binutils/ld/ldver.h U src/contrib/binutils/ld/ldwrite.c U src/contrib/binutils/ld/mri.c U src/contrib/binutils/ld/mri.h U src/contrib/binutils/ld/pe-dll.c U src/contrib/binutils/ld/pe-dll.h U src/contrib/binutils/ld/sysdep.h U src/contrib/binutils/ld/MAINTAINERS U src/contrib/binutils/ld/acinclude.m4 U src/contrib/binutils/ld/emulparams/elf64alpha.sh U src/contrib/binutils/ld/emulparams/elf64_ia64.sh U src/contrib/binutils/ld/emulparams/elf_x86_64.sh U src/contrib/binutils/ld/emulparams/elf_i386_fbsd.sh U src/contrib/binutils/ld/emulparams/elf_fbsd.sh U src/contrib/binutils/ld/emulparams/elf64alpha_fbsd.sh U src/contrib/binutils/ld/emulparams/elf64_sparc_fbsd.sh U src/contrib/binutils/ld/emulparams/elf64_ia64_fbsd.sh U src/contrib/binutils/ld/emulparams/armelf.sh U src/contrib/binutils/ld/emulparams/armelf_linux.sh U src/contrib/binutils/ld/emulparams/README U src/contrib/binutils/ld/emulparams/alpha.sh U src/contrib/binutils/ld/emulparams/arcelf.sh U src/contrib/binutils/ld/emulparams/armaoutb.sh U src/contrib/binutils/ld/emulparams/armaoutl.sh U src/contrib/binutils/ld/emulparams/armcoff.sh U src/contrib/binutils/ld/emulparams/armelf_oabi.sh U src/contrib/binutils/ld/emulparams/armnbsd.sh U src/contrib/binutils/ld/emulparams/armpe.sh U src/contrib/binutils/ld/emulparams/coff_sparc.sh U src/contrib/binutils/ld/emulparams/elf32_sparc.sh U src/contrib/binutils/ld/emulparams/elf32b4300.sh U src/contrib/binutils/ld/emulparams/elf32bmip.sh U src/contrib/binutils/ld/emulparams/elf32bmipn32.sh U src/contrib/binutils/ld/emulparams/elf32bsmip.sh U src/contrib/binutils/ld/emulparams/elf32ebmip.sh U src/contrib/binutils/ld/emulparams/elf32elmip.sh U src/contrib/binutils/ld/emulparams/elf_s390.sh U src/contrib/binutils/ld/emulparams/elf_i386_chaos.sh U src/contrib/binutils/ld/emulparams/elf64_s390.sh U src/contrib/binutils/ld/emulparams/elf32l4300.sh U src/contrib/binutils/ld/emulparams/elf32lmip.sh U src/contrib/binutils/ld/emulparams/elf32lsmip.sh U src/contrib/binutils/ld/emulparams/elf_i386.sh U src/contrib/binutils/ld/emulparams/elf32ppclinux.sh U src/contrib/binutils/ld/emulparams/elf64bmip.sh U src/contrib/binutils/ld/emulparams/i386aout.sh U src/contrib/binutils/ld/emulparams/i386bsd.sh U src/contrib/binutils/ld/emulparams/i386coff.sh U src/contrib/binutils/ld/emulparams/i386linux.sh U src/contrib/binutils/ld/emulparams/i386moss.sh U src/contrib/binutils/ld/emulparams/i386nbsd.sh U src/contrib/binutils/ld/emulparams/i386nw.sh U src/contrib/binutils/ld/emulparams/i386pe.sh U src/contrib/binutils/ld/emulparams/i386pe_posix.sh U src/contrib/binutils/ld/emulparams/ppcmacos.sh U src/contrib/binutils/ld/emulparams/ppcnw.sh U src/contrib/binutils/ld/emulparams/ppcpe.sh U src/contrib/binutils/ld/emulparams/sh.sh U src/contrib/binutils/ld/emulparams/shelf.sh U src/contrib/binutils/ld/emulparams/shl.sh U src/contrib/binutils/ld/emulparams/shlelf.sh U src/contrib/binutils/ld/emulparams/sparcaout.sh U src/contrib/binutils/ld/emulparams/sparclinux.sh U src/contrib/binutils/ld/emulparams/sparcnbsd.sh U src/contrib/binutils/ld/emulparams/sun4.sh U src/contrib/binutils/ld/emulparams/tic30aout.sh U src/contrib/binutils/ld/emulparams/tic30coff.sh U src/contrib/binutils/ld/emulparams/v850.sh U src/contrib/binutils/ld/emulparams/vanilla.sh U src/contrib/binutils/ld/emulparams/vsta.sh U src/contrib/binutils/ld/emulparams/z8001.sh U src/contrib/binutils/ld/emulparams/z8002.sh U src/contrib/binutils/ld/emulparams/elf64_sparc.sh U src/contrib/binutils/ld/emulparams/elf32ppc_fbsd.sh U src/contrib/binutils/ld/emulparams/shelf_linux.sh U src/contrib/binutils/ld/emulparams/elf32lppc.sh U src/contrib/binutils/ld/emulparams/elf32lppcsim.sh U src/contrib/binutils/ld/emulparams/elf32ppc.sh U src/contrib/binutils/ld/emulparams/elf32ppcsim.sh U src/contrib/binutils/ld/emulparams/elf_i386_ldso.sh U src/contrib/binutils/ld/emulparams/elf64lppc.sh U src/contrib/binutils/ld/emulparams/elf64ppc.sh U src/contrib/binutils/ld/emulparams/armelf_nbsd.sh U src/contrib/binutils/ld/emulparams/elf64alpha_nbsd.sh U src/contrib/binutils/ld/emulparams/elf_x86_64_fbsd.sh U src/contrib/binutils/ld/emulparams/armelf_fbsd.sh U src/contrib/binutils/ld/emulparams/armelfb_nbsd.sh U src/contrib/binutils/ld/emulparams/i386nto.sh U src/contrib/binutils/ld/po/ld.pot U src/contrib/binutils/ld/po/Make-in U src/contrib/binutils/ld/po/POTFILES.in I src/contrib/binutils/ld/po/fr.po I src/contrib/binutils/ld/po/sv.po I src/contrib/binutils/ld/po/es.po I src/contrib/binutils/ld/po/tr.po U src/contrib/binutils/ld/emultempl/README U src/contrib/binutils/ld/emultempl/astring.sed U src/contrib/binutils/ld/emultempl/ostring.sed U src/contrib/binutils/ld/emultempl/armcoff.em U src/contrib/binutils/ld/emultempl/armelf.em U src/contrib/binutils/ld/emultempl/armelf_oabi.em C src/contrib/binutils/ld/emultempl/elf32.em U src/contrib/binutils/ld/emultempl/generic.em U src/contrib/binutils/ld/emultempl/linux.em U src/contrib/binutils/ld/emultempl/pe.em U src/contrib/binutils/ld/emultempl/sunos.em U src/contrib/binutils/ld/emultempl/vanilla.em U src/contrib/binutils/ld/emultempl/ticoff.em U src/contrib/binutils/ld/emultempl/needrelax.em U src/contrib/binutils/ld/emultempl/ppc64elf.em U src/contrib/binutils/ld/scripttempl/elf.sc U src/contrib/binutils/ld/scripttempl/v850.sc U src/contrib/binutils/ld/scripttempl/z8000.sc U src/contrib/binutils/ld/scripttempl/README U src/contrib/binutils/ld/scripttempl/alpha.sc U src/contrib/binutils/ld/scripttempl/aout.sc U src/contrib/binutils/ld/scripttempl/armaout.sc U src/contrib/binutils/ld/scripttempl/armcoff.sc U src/contrib/binutils/ld/scripttempl/i386coff.sc U src/contrib/binutils/ld/scripttempl/nw.sc U src/contrib/binutils/ld/scripttempl/pe.sc U src/contrib/binutils/ld/scripttempl/ppcpe.sc U src/contrib/binutils/ld/scripttempl/sh.sc U src/contrib/binutils/ld/scripttempl/sparccoff.sc U src/contrib/binutils/ld/scripttempl/tic30aout.sc U src/contrib/binutils/ld/scripttempl/tic30coff.sc U src/contrib/binutils/ld/scripttempl/vanilla.sc U src/contrib/binutils/config/mh-armpic U src/contrib/binutils/config/mh-cxux U src/contrib/binutils/config/mh-decstation U src/contrib/binutils/config/mh-elfalphapic U src/contrib/binutils/config/mh-mingw32 U src/contrib/binutils/config/mh-necv4 U src/contrib/binutils/config/mh-papic U src/contrib/binutils/config/mh-ppcpic U src/contrib/binutils/config/mh-sco U src/contrib/binutils/config/mh-solaris U src/contrib/binutils/config/mh-sysv U src/contrib/binutils/config/mh-sysv4 U src/contrib/binutils/config/mh-sysv5 U src/contrib/binutils/config/mh-x86pic U src/contrib/binutils/config/mt-linux U src/contrib/binutils/config/mt-ospace U src/contrib/binutils/config/mt-v810 U src/contrib/binutils/config/acinclude.m4 U src/contrib/binutils/config/ChangeLog U src/contrib/binutils/config/mh-ia64pic U src/contrib/binutils/config/mh-s390pic U src/contrib/binutils/config/mh-openedition U src/contrib/binutils/config/mh-sparcpic U src/contrib/binutils/config/mt-alphaieee I src/contrib/binutils/etc/configure.info U src/contrib/binutils/etc/ChangeLog U src/contrib/binutils/etc/Makefile.in U src/contrib/binutils/etc/add-log.el U src/contrib/binutils/etc/add-log.vi U src/contrib/binutils/etc/configbuild.ein U src/contrib/binutils/etc/configbuild.fig U src/contrib/binutils/etc/configbuild.jin U src/contrib/binutils/etc/configbuild.tin U src/contrib/binutils/etc/configdev.ein U src/contrib/binutils/etc/configdev.fig U src/contrib/binutils/etc/configdev.jin U src/contrib/binutils/etc/configdev.tin U src/contrib/binutils/etc/configure U src/contrib/binutils/etc/configure.in U src/contrib/binutils/etc/configure.texi C src/contrib/binutils/etc/make-stds.texi C src/contrib/binutils/etc/standards.texi I src/contrib/binutils/etc/standards.info U src/contrib/binutils/contrib/ChangeLog U src/contrib/binutils/contrib/texi2pod.pl 18 conflicts created by this import. Use the following command to help the merge: cvs checkout -jFSF:yesterday -jFSF src/contrib/binutils To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:14: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A23D37B401; Mon, 2 Dec 2002 01:14:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD37F43EC2; Mon, 2 Dec 2002 01:14:06 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29A3mV027735; Mon, 2 Dec 2002 01:10:03 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29A3PB027734; Mon, 2 Dec 2002 01:10:03 -0800 (PST) Message-Id: <200212020910.gB29A3PB027734@repoman.freebsd.org> From: Tilman Linneweh Date: Mon, 2 Dec 2002 01:10:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/tuxcards Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG arved 2002/12/02 01:10:03 PST Modified files: deskutils/tuxcards Makefile Log: Mark BROKEN on -CURRENT. Drop Maintainership. Revision Changes Path 1.5 +9 -3 ports/deskutils/tuxcards/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:16:45 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B64237B404; Mon, 2 Dec 2002 01:16:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C01643E88; Mon, 2 Dec 2002 01:16:44 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29CemV027929; Mon, 2 Dec 2002 01:12:40 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29Cenl027928; Mon, 2 Dec 2002 01:12:40 -0800 (PST) Message-Id: <200212020912.gB29Cenl027928@repoman.freebsd.org> From: Tilman Linneweh Date: Mon, 2 Dec 2002 01:12:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/gbib Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG arved 2002/12/02 01:12:40 PST Modified files: databases/gbib Makefile Log: Mark Broken on CURRENT. Drop Maintainership PR: 45908 Submitted by: Christian Brueffer Revision Changes Path 1.2 +8 -2 ports/databases/gbib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:18:31 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8158737B401; Mon, 2 Dec 2002 01:18:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 208A743ED8; Mon, 2 Dec 2002 01:18:29 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29EPmV028280; Mon, 2 Dec 2002 01:14:25 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29EPDx028279; Mon, 2 Dec 2002 01:14:25 -0800 (PST) Message-Id: <200212020914.gB29EPDx028279@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:14:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/bfd aout-tic30.c coff-mips.c coff-tic30.c coff-z8k.c cpu-mips.c cpu-tic30.c cpu-v850.c cpu-z8k.c elf32-mips.c elf32-v850.c elf64-mips.c mipsbsd.c pe-mips.c src/contrib/binutils/binutils rcparse.c rcparse.h ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:14:25 PST Removed files: contrib/binutils/bfd aout-tic30.c coff-mips.c coff-tic30.c coff-z8k.c cpu-mips.c cpu-tic30.c cpu-v850.c cpu-z8k.c elf32-mips.c elf32-v850.c elf64-mips.c mipsbsd.c pe-mips.c contrib/binutils/binutils rcparse.c rcparse.h contrib/binutils/gas/config tc-tic30.c tc-tic30.h tc-v850.c tc-v850.h tc-z8k.c tc-z8k.h contrib/binutils/gas/doc c-v850.texi c-z8k.texi contrib/binutils/include/opcode mips.h tic30.h v850.h contrib/binutils/ld/emulparams shelf.sh shelf_linux.sh tic30aout.sh tic30coff.sh v850.sh z8001.sh z8002.sh contrib/binutils/ld/scripttempl tic30aout.sc tic30coff.sc v850.sc z8000.sc contrib/binutils/opcodes tic30-dis.c v850-dis.c v850-opc.c z8k-dis.c z8k-opc.h z8kgen.c Log: GC some stuff I thought was long gone. Revision Changes Path 1.2 +0 -1062 src/contrib/binutils/bfd/aout-tic30.c (dead) 1.2 +0 -2716 src/contrib/binutils/bfd/coff-mips.c (dead) 1.2 +0 -206 src/contrib/binutils/bfd/coff-tic30.c (dead) 1.2 +0 -280 src/contrib/binutils/bfd/coff-z8k.c (dead) 1.2 +0 -86 src/contrib/binutils/bfd/cpu-mips.c (dead) 1.2 +0 -39 src/contrib/binutils/bfd/cpu-tic30.c (dead) 1.2 +0 -94 src/contrib/binutils/bfd/cpu-v850.c (dead) 1.2 +0 -198 src/contrib/binutils/bfd/cpu-z8k.c (dead) 1.2 +0 -7419 src/contrib/binutils/bfd/elf32-mips.c (dead) 1.2 +0 -1785 src/contrib/binutils/bfd/elf32-v850.c (dead) 1.2 +0 -2172 src/contrib/binutils/bfd/elf64-mips.c (dead) 1.2 +0 -468 src/contrib/binutils/bfd/mipsbsd.c (dead) 1.2 +0 -998 src/contrib/binutils/bfd/pe-mips.c (dead) 1.2 +0 -2993 src/contrib/binutils/binutils/rcparse.c (dead) 1.2 +0 -124 src/contrib/binutils/binutils/rcparse.h (dead) 1.2 +0 -1909 src/contrib/binutils/gas/config/tc-tic30.c (dead) 1.2 +0 -53 src/contrib/binutils/gas/config/tc-tic30.h (dead) 1.2 +0 -1902 src/contrib/binutils/gas/config/tc-v850.c (dead) 1.2 +0 -80 src/contrib/binutils/gas/config/tc-v850.h (dead) 1.2 +0 -1613 src/contrib/binutils/gas/config/tc-z8k.c (dead) 1.2 +0 -46 src/contrib/binutils/gas/config/tc-z8k.h (dead) 1.2 +0 -308 src/contrib/binutils/gas/doc/c-v850.texi (dead) 1.2 +0 -380 src/contrib/binutils/gas/doc/c-z8k.texi (dead) 1.2 +0 -715 src/contrib/binutils/include/opcode/mips.h (dead) 1.2 +0 -691 src/contrib/binutils/include/opcode/tic30.h (dead) 1.2 +0 -154 src/contrib/binutils/include/opcode/v850.h (dead) 1.2 +0 -17 src/contrib/binutils/ld/emulparams/shelf.sh (dead) 1.2 +0 -14 src/contrib/binutils/ld/emulparams/shelf_linux.sh (dead) 1.2 +0 -7 src/contrib/binutils/ld/emulparams/tic30aout.sh (dead) 1.2 +0 -7 src/contrib/binutils/ld/emulparams/tic30coff.sh (dead) 1.2 +0 -14 src/contrib/binutils/ld/emulparams/v850.sh (dead) 1.2 +0 -7 src/contrib/binutils/ld/emulparams/z8001.sh (dead) 1.2 +0 -6 src/contrib/binutils/ld/emulparams/z8002.sh (dead) 1.2 +0 -34 src/contrib/binutils/ld/scripttempl/tic30aout.sc (dead) 1.2 +0 -58 src/contrib/binutils/ld/scripttempl/tic30coff.sc (dead) 1.2 +0 -183 src/contrib/binutils/ld/scripttempl/v850.sc (dead) 1.2 +0 -54 src/contrib/binutils/ld/scripttempl/z8000.sc (dead) 1.2 +0 -711 src/contrib/binutils/opcodes/tic30-dis.c (dead) 1.2 +0 -253 src/contrib/binutils/opcodes/v850-dis.c (dead) 1.2 +0 -494 src/contrib/binutils/opcodes/v850-opc.c (dead) 1.2 +0 -571 src/contrib/binutils/opcodes/z8k-dis.c (dead) 1.2 +0 -4438 src/contrib/binutils/opcodes/z8k-opc.h (dead) 1.2 +0 -1313 src/contrib/binutils/opcodes/z8kgen.c (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:19:58 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3191437B401; Mon, 2 Dec 2002 01:19:57 -0800 (PST) Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2758043EDE; Mon, 2 Dec 2002 01:19:56 -0800 (PST) (envelope-from mark@grondar.org) Received: from storm.FreeBSD.org.uk (uucp@localhost [127.0.0.1]) by storm.FreeBSD.org.uk (8.12.6/8.12.6) with ESMTP id gB29Js8M057780; Mon, 2 Dec 2002 09:19:55 GMT (envelope-from mark@grondar.org) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.12.6/8.12.6/Submit) with UUCP id gB29JsF8057779; Mon, 2 Dec 2002 09:19:54 GMT Received: from grondar.org (localhost [127.0.0.1]) by grimreaper.grondar.org (8.12.6/8.12.6) with ESMTP id gB29Hare023966; Mon, 2 Dec 2002 09:17:36 GMT (envelope-from mark@grondar.org) Message-Id: <200212020917.gB29Hare023966@grimreaper.grondar.org> To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/binutils/bfd elflink.h src/contrib/binutils/binutils nm.c strings.c src/contrib/binutils/gas configure configure.in src/contrib/binutils/gas/config tc-i386.c tc-i386.h te-freebsd.h src/contrib/binutils/gas/doc as.1 src/contrib/binutils/ld ... In-Reply-To: Your message of "Mon, 02 Dec 2002 00:42:08 PST." <200212020842.gB28g87p025856@repoman.freebsd.org> Date: Mon, 02 Dec 2002 09:17:36 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Returning our build tools to unmodified status strikes me as very good work. Keep it up! :-) M > obrien 2002/12/02 00:42:08 PST > > Modified files: > contrib/binutils/bfd elflink.h > contrib/binutils/binutils nm.c strings.c > contrib/binutils/gas configure configure.in > contrib/binutils/gas/config tc-i386.c tc-i386.h te-freebsd.h > contrib/binutils/gas/doc as.1 > contrib/binutils/ld configure.host configure.tgt ld.1 > contrib/binutils/ld/emulparams elf64alpha.sh > Log: > Try to keep CVS from pissing over the next binutils import by returning > to purely stock files. > > Revision Changes Path > 1.12 +0 -2 src/contrib/binutils/bfd/elflink.h > 1.13 +0 -2 src/contrib/binutils/binutils/nm.c > 1.8 +0 -2 src/contrib/binutils/binutils/strings.c > 1.15 +0 -4 src/contrib/binutils/gas/config/tc-i386.c > 1.10 +0 -4 src/contrib/binutils/gas/config/tc-i386.h > 1.4 +0 -2 src/contrib/binutils/gas/config/te-freebsd.h > 1.16 +0 -4 src/contrib/binutils/gas/configure > 1.15 +0 -1 src/contrib/binutils/gas/configure.in > 1.8 +0 -3 src/contrib/binutils/gas/doc/as.1 > 1.9 +0 -3 src/contrib/binutils/ld/configure.host > 1.16 +0 -3 src/contrib/binutils/ld/configure.tgt > 1.8 +0 -3 src/contrib/binutils/ld/emulparams/elf64alpha.sh > 1.10 +0 -3 src/contrib/binutils/ld/ld.1 -- Mark Murray Beware! I'm umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:21:54 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38D8A37B401; Mon, 2 Dec 2002 01:21:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCD4E43EAF; Mon, 2 Dec 2002 01:21:53 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29HomV028696; Mon, 2 Dec 2002 01:17:50 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29HoKW028695; Mon, 2 Dec 2002 01:17:50 -0800 (PST) Message-Id: <200212020917.gB29HoKW028695@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:17:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/bfd elf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:17:50 PST Modified files: contrib/binutils/bfd elf.c Log: Merge our ELF branding into Binutils 2_13_2_20021127 snapshot. Revision Changes Path 1.18 +2 -32 src/contrib/binutils/bfd/elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:27: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AFD737B401; Mon, 2 Dec 2002 01:27:00 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-64-169-106-47.dsl.lsan03.pacbell.net [64.169.106.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id B38E543E4A; Mon, 2 Dec 2002 01:26:59 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 30DF366C61; Mon, 2 Dec 2002 01:26:59 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id E567E130A; Mon, 2 Dec 2002 01:26:58 -0800 (PST) Date: Mon, 2 Dec 2002 01:26:58 -0800 From: Kris Kennaway To: Dirk Meyer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11-toolkits/gnustep-gui Makefile Message-ID: <20021202092658.GA10252@rot13.obsecurity.org> References: <200212020821.gB28LNEc024433@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1yeeQ81UyVL57Vl7" Content-Disposition: inline In-Reply-To: <200212020821.gB28LNEc024433@repoman.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Dec 02, 2002 at 12:21:23AM -0800, Dirk Meyer wrote: > dinoex 2002/12/02 00:21:23 PST >=20 > Modified files: > x11-toolkits/gnustep-gui Makefile=20 > Log: > remove extra include No, you're completely misunderstanding. The problem with this port was that it does #include , which is a header that no longer exixts in 5.0 (and is a compatibility symlink on 4.x). The port just needed to be changed to #include on all versions of FreeBSD. Kris --1yeeQ81UyVL57Vl7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE96ydiWry0BWjoQKURAmPxAKDj9XZAnCUnO+gfoTrHNtVUzWrJJQCfVk+a Dy2qHh71UZsPGxHtqhx6+ck= =NZQU -----END PGP SIGNATURE----- --1yeeQ81UyVL57Vl7-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:27: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F9B637B417; Mon, 2 Dec 2002 01:27:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07C8B43E88; Mon, 2 Dec 2002 01:27:02 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29MwmV028862; Mon, 2 Dec 2002 01:22:58 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29MwTR028861; Mon, 2 Dec 2002 01:22:58 -0800 (PST) Message-Id: <200212020922.gB29MwTR028861@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:22:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/bfd elf32-i386.c elf64-alpha.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:22:58 PST Modified files: contrib/binutils/bfd elf32-i386.c elf64-alpha.c Log: Remove our custom ELF branding -- we have moved to our own ELF vectors that DTRT. Revision Changes Path 1.15 +28 -30 src/contrib/binutils/bfd/elf32-i386.c 1.15 +9 -10 src/contrib/binutils/bfd/elf64-alpha.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:31:23 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6A9837B401; Mon, 2 Dec 2002 01:31:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71F9D43E88; Mon, 2 Dec 2002 01:31:22 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29RImV029311; Mon, 2 Dec 2002 01:27:18 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29RIc0029310; Mon, 2 Dec 2002 01:27:18 -0800 (PST) Message-Id: <200212020927.gB29RIc0029310@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:27:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/bfd elf32-i386.c elf64-alpha.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:27:18 PST Modified files: contrib/binutils/bfd elf32-i386.c elf64-alpha.c Log: While it is true we moved over to our own elf*--fbsd files as the last comment said; these files didn't deal with ELF branding, but that the default ELF_DYNAMIC_INTERPRETER is wrong for us (and most everyone else!). We now have our own FBSD emulation and the ELF_DYNAMIC_INTERPRETER is handled thru the new emulation by 'ld'. Revision Changes Path 1.16 +0 -0 src/contrib/binutils/bfd/elf32-i386.c 1.16 +0 -0 src/contrib/binutils/bfd/elf64-alpha.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:35:47 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A36437B401; Mon, 2 Dec 2002 01:35:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC14243EDE; Mon, 2 Dec 2002 01:35:46 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29VhmV029491; Mon, 2 Dec 2002 01:31:43 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29VhlW029490; Mon, 2 Dec 2002 01:31:43 -0800 (PST) Message-Id: <200212020931.gB29VhlW029490@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:31:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/ld/emultempl elf32.em X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:31:42 PST Modified files: contrib/binutils/ld/emultempl elf32.em Log: Merge rev 1.2 (teach `ld' how to access FreeBSD's ld ELF hints) into the Binutils 2.13.2 20021128 snap. Revision Changes Path 1.13 +58 -45 src/contrib/binutils/ld/emultempl/elf32.em To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:38:37 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B8E837B401; Mon, 2 Dec 2002 01:38:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A6BB43EEC; Mon, 2 Dec 2002 01:38:36 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29YWmV029576; Mon, 2 Dec 2002 01:34:32 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29YWFK029575; Mon, 2 Dec 2002 01:34:32 -0800 (PST) Message-Id: <200212020934.gB29YWFK029575@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 2 Dec 2002 01:34:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/donations wantlist.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/02 01:34:32 PST Modified files: en/donations wantlist.sgml Log: David O'Brien kindly donated the KVM switch I wanted. Thanks! Revision Changes Path 1.45 +2 -2 www/en/donations/wantlist.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:42:26 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C42D37B401; Mon, 2 Dec 2002 01:42:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C29F43EE8; Mon, 2 Dec 2002 01:42:25 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29cLmV030364; Mon, 2 Dec 2002 01:38:21 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29cLhl030363; Mon, 2 Dec 2002 01:38:21 -0800 (PST) Message-Id: <200212020938.gB29cLhl030363@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:38:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:38:21 PST Modified files: . exclude Log: Exclude src/contrib/binutils from $FreeBSD$ while I finish up in contrib. Revision Changes Path 1.53 +1 -0 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:43: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30E2437B401; Mon, 2 Dec 2002 01:43:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCA2143E4A; Mon, 2 Dec 2002 01:43:06 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29d3mV030444; Mon, 2 Dec 2002 01:39:03 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29d3bR030443; Mon, 2 Dec 2002 01:39:03 -0800 (PST) Message-Id: <200212020939.gB29d3bR030443@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:39:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/bfd elf32-i386.c elf64-alpha.c elflink.h src/contrib/binutils/gas configure configure.in src/contrib/binutils/ld configure.host configure.tgt ld.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:39:03 PST Modified files: contrib/binutils/bfd elf32-i386.c elf64-alpha.c elflink.h contrib/binutils/gas configure configure.in contrib/binutils/ld configure.host configure.tgt ld.1 Log: Update HEAD with the stock files. Revision Changes Path 1.17 +0 -2 src/contrib/binutils/bfd/elf32-i386.c 1.17 +0 -2 src/contrib/binutils/bfd/elf64-alpha.c 1.13 +55 -41 src/contrib/binutils/bfd/elflink.h 1.17 +177 -196 src/contrib/binutils/gas/configure 1.16 +2 -8 src/contrib/binutils/gas/configure.in 1.10 +1 -1 src/contrib/binutils/ld/configure.host 1.17 +10 -2 src/contrib/binutils/ld/configure.tgt 1.11 +18 -5 src/contrib/binutils/ld/ld.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:43:15 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 890E037B41D; Mon, 2 Dec 2002 01:43:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 395CB43EE1; Mon, 2 Dec 2002 01:43:14 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29dAmV030473; Mon, 2 Dec 2002 01:39:10 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29dAHD030472; Mon, 2 Dec 2002 01:39:10 -0800 (PST) Message-Id: <200212020939.gB29dAHD030472@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:39:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:39:10 PST Modified files: . exclude Log: Done in contrib/binutils. Revision Changes Path 1.54 +0 -1 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:44: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DCE237B401; Mon, 2 Dec 2002 01:44:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B6B543EE8; Mon, 2 Dec 2002 01:44:06 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29e2mV030536; Mon, 2 Dec 2002 01:40:02 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29e20a030535; Mon, 2 Dec 2002 01:40:02 -0800 (PST) Message-Id: <200212020940.gB29e20a030535@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:40:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils Makefile.inc0 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:40:02 PST Modified files: gnu/usr.bin/binutils Makefile.inc0 Log: Update for the 2.13.2 2002-11-27 snapshot import. Revision Changes Path 1.32 +2 -2 src/gnu/usr.bin/binutils/Makefile.inc0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:45:40 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C714E37B401; Mon, 2 Dec 2002 01:45:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7494D43EEC; Mon, 2 Dec 2002 01:45:39 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29fZmV030614; Mon, 2 Dec 2002 01:41:35 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29fZnI030613; Mon, 2 Dec 2002 01:41:35 -0800 (PST) Message-Id: <200212020941.gB29fZnI030613@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:41:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/as Makefile.inc0 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:41:35 PST Modified files: gnu/usr.bin/binutils/as Makefile.inc0 Log: Binutils 2.13.2 is WARNS=2 clean for all our architectures. Revision Changes Path 1.21 +0 -5 src/gnu/usr.bin/binutils/as/Makefile.inc0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:47:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2986137B401; Mon, 2 Dec 2002 01:47:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C248943EC5; Mon, 2 Dec 2002 01:47:19 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29hGmV030726; Mon, 2 Dec 2002 01:43:16 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29hFno030725; Mon, 2 Dec 2002 01:43:15 -0800 (PST) Message-Id: <200212020943.gB29hFno030725@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:43:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/as/alpha-freebsd config.h src/gnu/usr.bin/binutils/as/i386-freebsd config.h src/gnu/usr.bin/binutils/as/sparc64-freebsd config.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:43:15 PST Modified files: gnu/usr.bin/binutils/as/alpha-freebsd config.h gnu/usr.bin/binutils/as/i386-freebsd config.h gnu/usr.bin/binutils/as/sparc64-freebsd config.h Log: Update for the Binutils 2.13.2 20021127 snapshot import. Revision Changes Path 1.9 +1 -1 src/gnu/usr.bin/binutils/as/alpha-freebsd/config.h 1.9 +1 -1 src/gnu/usr.bin/binutils/as/i386-freebsd/config.h 1.8 +1 -1 src/gnu/usr.bin/binutils/as/sparc64-freebsd/config.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:48: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF2BD37B401; Mon, 2 Dec 2002 01:48:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A34A343ECF; Mon, 2 Dec 2002 01:48:01 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29hvmV030771; Mon, 2 Dec 2002 01:43:57 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29hvLS030770; Mon, 2 Dec 2002 01:43:57 -0800 (PST) Message-Id: <200212020943.gB29hvLS030770@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:43:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/ld Makefile.alpha config.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:43:57 PST Modified files: gnu/usr.bin/binutils/ld Makefile.alpha config.h Log: Update for the Binutils 2.13.2 20021127 snapshot import. Revision Changes Path 1.18 +9 -3 src/gnu/usr.bin/binutils/ld/Makefile.alpha 1.7 +1 -1 src/gnu/usr.bin/binutils/ld/config.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:49: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E584937B401; Mon, 2 Dec 2002 01:49:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9344B43ED1; Mon, 2 Dec 2002 01:49:03 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29ixmV030821; Mon, 2 Dec 2002 01:44:59 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29ixSS030820; Mon, 2 Dec 2002 01:44:59 -0800 (PST) Message-Id: <200212020944.gB29ixSS030820@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:44:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/libiberty config.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:44:59 PST Modified files: gnu/usr.bin/binutils/libiberty config.h Log: We now have insque(). Revision Changes Path 1.5 +1 -1 src/gnu/usr.bin/binutils/libiberty/config.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:49:28 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CC6A37B401; Mon, 2 Dec 2002 01:49:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2939643EA9; Mon, 2 Dec 2002 01:49:27 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29jNmV030885; Mon, 2 Dec 2002 01:45:23 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29jNfJ030884; Mon, 2 Dec 2002 01:45:23 -0800 (PST) Message-Id: <200212020945.gB29jNfJ030884@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:45:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/libopcodes config.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:45:23 PST Modified files: gnu/usr.bin/binutils/libopcodes config.h Log: Update for the Binutils 2.13.2 20021127 snapshot import. Revision Changes Path 1.7 +10 -1 src/gnu/usr.bin/binutils/libopcodes/config.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:49:56 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F14337B401; Mon, 2 Dec 2002 01:49:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B0DA43EBE; Mon, 2 Dec 2002 01:49:55 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29jpmV030926; Mon, 2 Dec 2002 01:45:51 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29jpI5030925; Mon, 2 Dec 2002 01:45:51 -0800 (PST) Message-Id: <200212020945.gB29jpI5030925@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:45:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/libbinutils config.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:45:51 PST Modified files: gnu/usr.bin/binutils/libbinutils config.h Log: Update for the Binutils 2.13.2 20021127 snapshot import. Revision Changes Path 1.11 +1 -1 src/gnu/usr.bin/binutils/libbinutils/config.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:54: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D1A837B401; Mon, 2 Dec 2002 01:54:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D665043E4A; Mon, 2 Dec 2002 01:54:01 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29nwmV031413; Mon, 2 Dec 2002 01:49:58 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29nwCi031412; Mon, 2 Dec 2002 01:49:58 -0800 (PST) Message-Id: <200212020949.gB29nwCi031412@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:49:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/libbfd/alpha bfd.h src/gnu/usr.bin/binutils/libbfd/i386 bfd.h src/gnu/usr.bin/binutils/libbfd/ia64 bfd.h src/gnu/usr.bin/binutils/libbfd/powerpc bfd.h src/gnu/usr.bin/binutils/libbfd/sparc64 bfd.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:49:58 PST Modified files: gnu/usr.bin/binutils/libbfd/alpha bfd.h gnu/usr.bin/binutils/libbfd/i386 bfd.h gnu/usr.bin/binutils/libbfd/ia64 bfd.h gnu/usr.bin/binutils/libbfd/powerpc bfd.h gnu/usr.bin/binutils/libbfd/sparc64 bfd.h Log: Update for the Binutils 2.13.2 20021127 snapshot import. Among other things, we don't need to redefine ELF_DYNAMIC_INTERPRETER here. Revision Changes Path 1.15 +5 -8 src/gnu/usr.bin/binutils/libbfd/alpha/bfd.h 1.20 +5 -8 src/gnu/usr.bin/binutils/libbfd/i386/bfd.h 1.6 +5 -8 src/gnu/usr.bin/binutils/libbfd/ia64/bfd.h 1.6 +207 -85 src/gnu/usr.bin/binutils/libbfd/powerpc/bfd.h 1.13 +5 -5 src/gnu/usr.bin/binutils/libbfd/sparc64/bfd.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:58: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3150937B401; Mon, 2 Dec 2002 01:58:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E06DC43ECD; Mon, 2 Dec 2002 01:58:03 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29s0mV031576; Mon, 2 Dec 2002 01:54:00 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29s0au031575; Mon, 2 Dec 2002 01:54:00 -0800 (PST) Message-Id: <200212020954.gB29s0au031575@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:54:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/libbfd Makefile Makefile.alpha Makefile.i386 Makefile.ia64 Makefile.powerpc Makefile.sparc64 Makefile.x86-64 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:54:00 PST Modified files: gnu/usr.bin/binutils/libbfd Makefile Makefile.alpha Makefile.i386 Makefile.ia64 Makefile.powerpc Makefile.sparc64 Makefile.x86-64 Log: Handle the "HAVE_" defines via the VECS list. Revision Changes Path 1.23 +1 -0 src/gnu/usr.bin/binutils/libbfd/Makefile 1.8 +1 -2 src/gnu/usr.bin/binutils/libbfd/Makefile.alpha 1.11 +0 -2 src/gnu/usr.bin/binutils/libbfd/Makefile.i386 1.3 +0 -4 src/gnu/usr.bin/binutils/libbfd/Makefile.ia64 1.5 +1 -3 src/gnu/usr.bin/binutils/libbfd/Makefile.powerpc 1.6 +1 -2 src/gnu/usr.bin/binutils/libbfd/Makefile.sparc64 1.2 +0 -1 src/gnu/usr.bin/binutils/libbfd/Makefile.x86-64 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 1:58:46 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54E6937B401; Mon, 2 Dec 2002 01:58:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01FB543ED4; Mon, 2 Dec 2002 01:58:45 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29sfmV031628; Mon, 2 Dec 2002 01:54:41 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29sfL9031627; Mon, 2 Dec 2002 01:54:41 -0800 (PST) Message-Id: <200212020954.gB29sfL9031627@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:54:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/libbfd config.h.fbsd X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:54:41 PST Modified files: gnu/usr.bin/binutils/libbfd config.h.fbsd Log: Update for the Binutils 2.13.2 20021127 snapshot import. Revision Changes Path 1.5 +2 -8 src/gnu/usr.bin/binutils/libbfd/config.h.fbsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 2: 3:10 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9E2637B401; Mon, 2 Dec 2002 02:03:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 508EC43E9C; Mon, 2 Dec 2002 02:03:09 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB29x5mV032095; Mon, 2 Dec 2002 01:59:05 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB29x5GV032094; Mon, 2 Dec 2002 01:59:05 -0800 (PST) Message-Id: <200212020959.gB29x5GV032094@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 01:59:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/libbfd Makefile.alpha Makefile.i386 Makefile.ia64 Makefile.powerpc Makefile.sparc64 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 01:59:05 PST Modified files: gnu/usr.bin/binutils/libbfd Makefile.alpha Makefile.i386 Makefile.ia64 Makefile.powerpc Makefile.sparc64 Log: Cleaner support of a DEFAULT_VECTOR. Revision Changes Path 1.9 +4 -3 src/gnu/usr.bin/binutils/libbfd/Makefile.alpha 1.12 +4 -4 src/gnu/usr.bin/binutils/libbfd/Makefile.i386 1.4 +5 -4 src/gnu/usr.bin/binutils/libbfd/Makefile.ia64 1.6 +4 -3 src/gnu/usr.bin/binutils/libbfd/Makefile.powerpc 1.7 +4 -3 src/gnu/usr.bin/binutils/libbfd/Makefile.sparc64 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 2: 4:49 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE04A37B401; Mon, 2 Dec 2002 02:04:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AA6743EA9; Mon, 2 Dec 2002 02:04:48 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2A0imV032205; Mon, 2 Dec 2002 02:00:44 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2A0iJL032204; Mon, 2 Dec 2002 02:00:44 -0800 (PST) Message-Id: <200212021000.gB2A0iJL032204@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 02:00:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/libbfd Makefile.alpha X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 02:00:44 PST Modified files: gnu/usr.bin/binutils/libbfd Makefile.alpha Log: We can handle the bfd_elf64_alpha_vec vector at the same time as the bfd_elf64_alpha_freebsd_vec. This may help in intra-branch building. Revision Changes Path 1.10 +2 -2 src/gnu/usr.bin/binutils/libbfd/Makefile.alpha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 2: 5:23 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B74F637B401; Mon, 2 Dec 2002 02:05:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64D5043ECF; Mon, 2 Dec 2002 02:05:22 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2A1ImV032249; Mon, 2 Dec 2002 02:01:18 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2A1Ij1032248; Mon, 2 Dec 2002 02:01:18 -0800 (PST) Message-Id: <200212021001.gB2A1Ij1032248@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 02:01:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/libbfd Makefile.i386 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 02:01:18 PST Modified files: gnu/usr.bin/binutils/libbfd Makefile.i386 Log: We can handle the bfd_elf32_i386_vec vector at the same time as the bfd_elf32_i386_freebsd_vec. This may help in intra-branch building. Revision Changes Path 1.13 +2 -2 src/gnu/usr.bin/binutils/libbfd/Makefile.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 2:14:20 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A72537B401; Mon, 2 Dec 2002 02:14:20 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC95D43E88; Mon, 2 Dec 2002 02:14:19 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.6/8.12.2) with ESMTP id gB2AEIqe019147; Mon, 2 Dec 2002 02:14:18 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.6/8.12.6/Submit) id gB2AD2K5019138; Mon, 2 Dec 2002 02:13:02 -0800 (PST) Date: Mon, 2 Dec 2002 02:13:02 -0800 From: "David O'Brien" To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/binutils - Imported sources Message-ID: <20021202101302.GA19116@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org Mail-Followup-To: David O'Brien , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200212020906.gB296j1d027417@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200212020906.gB296j1d027417@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Dec 02, 2002 at 01:06:45AM -0800, David E. O'Brien wrote: > src/contrib/binutils - Imported sources > Log Message: > Import of Binutils from the FSF 2.13 branch (just pre-.2 release). > These bits are taken from the FSF anoncvs repo on 27-Oct-2002 21:12:00 EST. This and all associated commits were pre-approve by RE jhb, with a time extension by RE rwatson. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 2:20:58 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DC8637B401; Mon, 2 Dec 2002 02:20:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFFF043E88; Mon, 2 Dec 2002 02:20:57 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2AGsmV033353; Mon, 2 Dec 2002 02:16:54 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2AGrDA033349; Mon, 2 Dec 2002 02:16:53 -0800 (PST) Message-Id: <200212021016.gB2AGrDA033349@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 02:16:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 02:16:53 PST Modified files: . exclude Log: Missed one in the BU import. Revision Changes Path 1.55 +1 -0 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 2:24:58 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E182F37B401; Mon, 2 Dec 2002 02:24:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9187C43E9C; Mon, 2 Dec 2002 02:24:57 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2AKrmV033634; Mon, 2 Dec 2002 02:20:53 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2AKr1J033633; Mon, 2 Dec 2002 02:20:53 -0800 (PST) Message-Id: <200212021020.gB2AKr1J033633@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 02:20:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 02:20:53 PST Modified files: . exclude Log: Done now. Revision Changes Path 1.56 +0 -1 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 2:31: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9920937B401; Mon, 2 Dec 2002 02:31:07 -0800 (PST) Received: from kurush.osdn.org.ua (external.osdn.org.ua [212.40.34.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AB5943E9C; Mon, 2 Dec 2002 02:31:03 -0800 (PST) (envelope-from never@kurush.osdn.org.ua) Received: from kurush.osdn.org.ua (never@localhost [127.0.0.1]) by kurush.osdn.org.ua (8.12.6/8.12.6) with ESMTP id gB2AUwTP014372; Mon, 2 Dec 2002 12:30:59 +0200 (EET) (envelope-from never@kurush.osdn.org.ua) Received: (from never@localhost) by kurush.osdn.org.ua (8.12.6/8.12.6/Submit) id gB2AUwUT014371; Mon, 2 Dec 2002 12:30:58 +0200 (EET) Date: Mon, 2 Dec 2002 12:30:57 +0200 From: Alexandr Kovalenko To: Maxim Sobolev Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/netns ns.h ns_if.h src/sys/net ethernet.h if_gre.c if_gre.h src/sys/netatalk at.h src/sys/conf files options src/sys/netinet in.h in_proto.c ip_gre.c ip_gre.h src/sys/modules/if_gre Makefile src/sys/modules Makefile ... Message-ID: <20021202103057.GB14238@nevermind.kiev.ua> References: <200212011403.gB1E3BHD040751@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200212011403.gB1E3BHD040751@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Maxim Sobolev! On Sun, Dec 01, 2002 at 06:03:11AM -0800, you wrote: > sobomax 2002/12/01 06:03:11 PST > > Modified files: (Branch: RELENG_4) > sys/netns ns_if.h ns.h > sys/net ethernet.h > sys/netatalk at.h > sys/conf options files > sys/netinet in_proto.c in.h > sys/modules Makefile > sys/i386/conf LINT > share/man/man4 Makefile > Added files: (Branch: RELENG_4) > sys/net if_gre.c if_gre.h > sys/netinet ip_gre.c ip_gre.h > sys/modules/if_gre Makefile > share/man/man4 gre.4 > Log: > MFC: gre(4) kernel driver and associated changes. Thanx! -- NEVE-RIPE, will build world for food Ukrainian FreeBSD User Group http://uafug.org.ua/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 2:54:44 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B70237B401; Mon, 2 Dec 2002 02:54:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECD6343EA9; Mon, 2 Dec 2002 02:54:42 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2AocmV035529; Mon, 2 Dec 2002 02:50:38 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2Aoc7Q035528; Mon, 2 Dec 2002 02:50:38 -0800 (PST) Message-Id: <200212021050.gB2Aoc7Q035528@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 02:50:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/libbfd Makefile.i386 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 02:50:38 PST Modified files: gnu/usr.bin/binutils/libbfd Makefile.i386 Log: Remove the ancient PEI cruft that is useless. Revision Changes Path 1.14 +0 -4 src/gnu/usr.bin/binutils/libbfd/Makefile.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 3:30: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 613CD37B401; Mon, 2 Dec 2002 03:30:03 -0800 (PST) Received: from milan.hitnet.rwth-aachen.de (milan.hitnet.RWTH-Aachen.DE [137.226.181.144]) by mx1.FreeBSD.org (Postfix) with ESMTP id D303443EC2; Mon, 2 Dec 2002 03:30:02 -0800 (PST) (envelope-from chris@unixpages.org) Received: from gondor.middleearth (gondor.middleearth [192.168.1.42]) by milan.hitnet.rwth-aachen.de (Postfix) with ESMTP id D8B07A91E; Mon, 2 Dec 2002 12:30:01 +0100 (CET) Received: by gondor.middleearth (Postfix, from userid 1001) id 3D558154D2; Mon, 2 Dec 2002 12:30:01 +0100 (CET) Date: Mon, 2 Dec 2002 12:30:00 +0100 From: Christian Brueffer To: Thomas Quinot Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/ata ata-all.c Message-ID: <20021202113000.GB603@unixpages.org> References: <200212011420.gB1EK8AC041960@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="O5XBE6gyVG5Rl6Rj" Content-Disposition: inline In-Reply-To: <200212011420.gB1EK8AC041960@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT X-PGP-Key: http://www.unixpages.org/cbrueffer.asc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --O5XBE6gyVG5Rl6Rj Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Dec 01, 2002 at 06:20:08AM -0800, Thomas Quinot wrote: > thomas 2002/12/01 06:20:08 PST >=20 > Modified files: > sys/dev/ata ata-all.c=20 > Log: > In ata_reinit, when ata_getparam fails for a new device (indicating that > the device is not actually present), clear the corresponding bit in > the ch->devices bitmap. This resolves a panic that occurred with ATAPI/= CAM > after an APM suspend/resume, when the ATA hardware would erroneously > report an extra ATAPI device. > =20 > Approved by: re, sos > Reviewed by: roberto > MFC after: 7 days > =20 > Revision Changes Path > 1.159 +5 -4 src/sys/dev/ata/ata-all.c >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message >=20 >=20 Thanks! - Christian --=20 http://www.unixpages.org chris@unixpages.org GPG Pub-Key : www.unixpages.org/cbrueffer.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D GPG Key ID : 0xA0ED982D --O5XBE6gyVG5Rl6Rj Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQE960Q4bHYXjKDtmC0RApZQAKCTU2nZSthWMiIIDJygqcODtDsvpACePVWf GC/js+429tHWvW4S20ZxFq0= =Cnid -----END PGP SIGNATURE----- --O5XBE6gyVG5Rl6Rj-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 4:36:11 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47ACF37B401; Mon, 2 Dec 2002 04:36:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E382E43ECD; Mon, 2 Dec 2002 04:36:09 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2CW5mV041696; Mon, 2 Dec 2002 04:32:05 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2CW5F9041695; Mon, 2 Dec 2002 04:32:05 -0800 (PST) Message-Id: <200212021232.gB2CW5F9041695@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Mon, 2 Dec 2002 04:32:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/12/02 04:32:05 PST Modified files: (Branch: RELENG_4) sys/modules Makefile Log: Separate modules specific to i386 from a MACHINE_ARCH == i386 section into a MACHINE == i386 section. Revision Changes Path 1.110.2.64 +10 -8 src/sys/modules/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 5: 4: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8956437B401; Mon, 2 Dec 2002 05:04:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 351BA43EAF; Mon, 2 Dec 2002 05:04:03 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2CxwmV043391; Mon, 2 Dec 2002 04:59:58 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2Cxw1A043390; Mon, 2 Dec 2002 04:59:58 -0800 (PST) Message-Id: <200212021259.gB2Cxw1A043390@repoman.freebsd.org> From: Tilman Linneweh Date: Mon, 2 Dec 2002 04:59:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/kpsk Makefile ports/comms/kpsk/files patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG arved 2002/12/02 04:59:58 PST Modified files: comms/kpsk Makefile comms/kpsk/files patch-ac Log: Fix Build on -CURRENT Approved by: patrick (maintainer) Revision Changes Path 1.3 +1 -0 ports/comms/kpsk/Makefile 1.2 +1 -1 ports/comms/kpsk/files/patch-ac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 5:29: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FABF37B401; Mon, 2 Dec 2002 05:29:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1BEC43EAF; Mon, 2 Dec 2002 05:29:05 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2DP1mV044792; Mon, 2 Dec 2002 05:25:01 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2DP1J9044791; Mon, 2 Dec 2002 05:25:01 -0800 (PST) Message-Id: <200212021325.gB2DP1J9044791@repoman.freebsd.org> From: Robert Watson Date: Mon, 2 Dec 2002 05:25:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/setfmac setfmac.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/02 05:25:01 PST Modified files: usr.sbin/setfmac setfmac.c Log: Fix 32-bit/64-bit bug in format string. Approved by: re Submitted by: marcel Pointy hat to: green Revision Changes Path 1.3 +1 -1 src/usr.sbin/setfmac/setfmac.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 5:30:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC9BB37B401; Mon, 2 Dec 2002 05:30:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64B8443EC2; Mon, 2 Dec 2002 05:30:21 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2DQGmV044892; Mon, 2 Dec 2002 05:26:16 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2DQG9T044891; Mon, 2 Dec 2002 05:26:16 -0800 (PST) Message-Id: <200212021326.gB2DQG9T044891@repoman.freebsd.org> From: Robert Watson Date: Mon, 2 Dec 2002 05:26:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/setfmac setfmac.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/02 05:26:16 PST Modified files: usr.sbin/setfmac setfmac.c Log: Cast argument to (long), missed in prior pass. Approved by: re Submitted by: marcel Revision Changes Path 1.4 +1 -1 src/usr.sbin/setfmac/setfmac.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 6: 7:46 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06E3E37B401; Mon, 2 Dec 2002 06:07:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC5EF43EA9; Mon, 2 Dec 2002 06:07:45 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2E3fmV047197; Mon, 2 Dec 2002 06:03:41 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2E3eeS047196; Mon, 2 Dec 2002 06:03:40 -0800 (PST) Message-Id: <200212021403.gB2E3eeS047196@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 2 Dec 2002 06:03:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/12/02 06:03:40 PST Modified files: . Makefile.inc1 Log: For installkernel, use the fresh tools (if we've built them with buildworld). Reviewed by: imp, marcel Approved by: re (rwatson) Revision Changes Path 1.313 +2 -1 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 6:33: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5593437B401; Mon, 2 Dec 2002 06:33:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 036B843EB2; Mon, 2 Dec 2002 06:33:05 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2ET0mV048842; Mon, 2 Dec 2002 06:29:00 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2ET0NW048837; Mon, 2 Dec 2002 06:29:00 -0800 (PST) Message-Id: <200212021429.gB2ET0NW048837@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Mon, 2 Dec 2002 06:29:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/oleo/files patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2002/12/02 06:29:00 PST Added files: japanese/oleo/files patch-ac Log: Fix build with compile error on -current(conflicting types for `sys_nerr') Reported by: bento Revision Changes Path 1.1 +12 -0 ports/japanese/oleo/files/patch-ac (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 6:35:27 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 095DD37B401; Mon, 2 Dec 2002 06:35:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABFB943E88; Mon, 2 Dec 2002 06:35:26 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2EVLmV048946; Mon, 2 Dec 2002 06:31:21 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2EVLuv048945; Mon, 2 Dec 2002 06:31:21 -0800 (PST) Message-Id: <200212021431.gB2EVLuv048945@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 2 Dec 2002 06:31:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/12/02 06:31:21 PST Modified files: . Makefile Log: If /usr/bin/make fails to pass the regression tests, it might not be suitable for building. The old action here was to upgrade the make in /usr/bin. This is both bogus and does not work under non root. So, rather than overwriting the existing /usr/bin/make, we now install it into a safe location, and use it from there. Reviewed by: imp, marcel Approved by: re (rwatson) Revision Changes Path 1.270 +20 -7 src/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 6:49:44 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E071037B401; Mon, 2 Dec 2002 06:49:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CCBC43EC2; Mon, 2 Dec 2002 06:49:43 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2EjcmV049738; Mon, 2 Dec 2002 06:45:38 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2EjcNH049737; Mon, 2 Dec 2002 06:45:38 -0800 (PST) Message-Id: <200212021445.gB2EjcNH049737@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Mon, 2 Dec 2002 06:45:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/multimedia chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2002/12/02 06:45:38 PST Modified files: en_US.ISO8859-1/books/handbook/multimedia chapter.sgml Log: o Update references, a number of ports were moved from graphics to multimedia category o Replace "Thus " with "Therefore, " Revision Changes Path 1.45 +14 -14 doc/en_US.ISO8859-1/books/handbook/multimedia/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 6:57:13 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 862A837B401; Mon, 2 Dec 2002 06:57:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33F3643EAF; Mon, 2 Dec 2002 06:57:12 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2Er7mV050258; Mon, 2 Dec 2002 06:53:07 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2Er7c0050257; Mon, 2 Dec 2002 06:53:07 -0800 (PST) Message-Id: <200212021453.gB2Er7c0050257@repoman.freebsd.org> From: Robert Watson Date: Mon, 2 Dec 2002 06:53:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/02 06:53:07 PST Modified files: en/releases/5.0R todo.sgml Log: Add a "desired" task item for updating smp(4) and other documentation. No owner yet. Revision Changes Path 1.64 +11 -1 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 7: 8: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B712137B401; Mon, 2 Dec 2002 07:08:05 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BFC343EC2; Mon, 2 Dec 2002 07:07:58 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id gB2F7stV022168 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Mon, 2 Dec 2002 17:07:54 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id gB2F7ohA022150; Mon, 2 Dec 2002 17:07:51 +0200 (EET) Date: Mon, 2 Dec 2002 17:07:50 +0200 From: Ruslan Ermilov To: Mark Murray Cc: "David E. O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/binutils/bfd elflink.h src/contrib/binutils/binutils nm.c strings.c src/contrib/binutils/gas configure configure.in src/contrib/binutils/gas/config tc-i386.c tc-i386.h te-freebsd.h src/contrib/binutils/gas/doc as.1 src/contrib/binutils/ld ... Message-ID: <20021202150750.GC20500@sunbay.com> References: <200212020842.gB28g87p025856@repoman.freebsd.org> <200212020917.gB29Hare023966@grimreaper.grondar.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="aT9PWwzfKXlsBJM1" Content-Disposition: inline In-Reply-To: <200212020917.gB29Hare023966@grimreaper.grondar.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --aT9PWwzfKXlsBJM1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Dec 02, 2002 at 09:17:36AM +0000, Mark Murray wrote: > Returning our build tools to unmodified status strikes me as very good wo= rk. >=20 > Keep it up! :-) >=20 That can't be made to work, at least without some invisible repo surgery like returning files to their vendor branch (last time I suggested such technology, it was rejected). Please share the experience if it's possible somehow. > > obrien 2002/12/02 00:42:08 PST > >=20 > > Modified files: > > contrib/binutils/bfd elflink.h=20 > > contrib/binutils/binutils nm.c strings.c=20 > > contrib/binutils/gas configure configure.in=20 > > contrib/binutils/gas/config tc-i386.c tc-i386.h te-freebsd.h=20 > > contrib/binutils/gas/doc as.1=20 > > contrib/binutils/ld configure.host configure.tgt ld.1=20 > > contrib/binutils/ld/emulparams elf64alpha.sh=20 > > Log: > > Try to keep CVS from pissing over the next binutils import by returni= ng > > to purely stock files. > > =20 > > Revision Changes Path > > 1.12 +0 -2 src/contrib/binutils/bfd/elflink.h > > 1.13 +0 -2 src/contrib/binutils/binutils/nm.c > > 1.8 +0 -2 src/contrib/binutils/binutils/strings.c > > 1.15 +0 -4 src/contrib/binutils/gas/config/tc-i386.c > > 1.10 +0 -4 src/contrib/binutils/gas/config/tc-i386.h > > 1.4 +0 -2 src/contrib/binutils/gas/config/te-freebsd.h > > 1.16 +0 -4 src/contrib/binutils/gas/configure > > 1.15 +0 -1 src/contrib/binutils/gas/configure.in > > 1.8 +0 -3 src/contrib/binutils/gas/doc/as.1 > > 1.9 +0 -3 src/contrib/binutils/ld/configure.host > > 1.16 +0 -3 src/contrib/binutils/ld/configure.tgt > > 1.8 +0 -3 src/contrib/binutils/ld/emulparams/elf64alpha.sh > > 1.10 +0 -3 src/contrib/binutils/ld/ld.1 > -- > Mark Murray > Beware! I'm umop ap!sdn --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --aT9PWwzfKXlsBJM1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE963dGUkv4P6juNwoRAvmcAJ0QxiEtJsCZEhRw0y38GHHsxCGABgCfQ3TS 9GgX/EFHCyh8s0YPUsf0f6A= =Lm5p -----END PGP SIGNATURE----- --aT9PWwzfKXlsBJM1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 7:34:24 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C61A37B401; Mon, 2 Dec 2002 07:34:22 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11EF643EAF; Mon, 2 Dec 2002 07:34:12 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id gB2FY1tV024589 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Mon, 2 Dec 2002 17:34:01 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id gB2FY1nm024584; Mon, 2 Dec 2002 17:34:01 +0200 (EET) Date: Mon, 2 Dec 2002 17:34:01 +0200 From: Ruslan Ermilov To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/binutils/libiberty config.h Message-ID: <20021202153401.GE20500@sunbay.com> References: <200212020944.gB29ixSS030820@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="phCU5ROyZO6kBE05" Content-Disposition: inline In-Reply-To: <200212020944.gB29ixSS030820@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --phCU5ROyZO6kBE05 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Dec 02, 2002 at 01:44:59AM -0800, David E. O'Brien wrote: > obrien 2002/12/02 01:44:59 PST >=20 > Modified files: > gnu/usr.bin/binutils/libiberty config.h=20 > Log: > We now have insque(). > =20 > Revision Changes Path > 1.5 +1 -1 src/gnu/usr.bin/binutils/libiberty/config.h >=20 A proper solution would be to wrap this under __FreeBSD_version. This is not important here only because insque() is not used anywhere in binutils (AFAICT) (which can easily be proved by checking that libiberty did not compile its insque.c), but if it were, it would break source upgrades from not-so-old (earlier than October 16, 2002) systems. (__FreeBSD_version wasn't bumped for the insque() reincarnation, so we'd need to use the nearest safe approximate, 500043.) Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --phCU5ROyZO6kBE05 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE9631oUkv4P6juNwoRAs+wAKCGuf/jhsovWRwALu8LJcy0GPESNQCfTE/x M+iujWkHNUUPM0fHTzvyzMU= =hC2J -----END PGP SIGNATURE----- --phCU5ROyZO6kBE05-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 7:40:26 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12AA837B401 for ; Mon, 2 Dec 2002 07:40:25 -0800 (PST) Received: from mail.gmx.net (mail.gmx.net [213.165.65.60]) by mx1.FreeBSD.org (Postfix) with SMTP id 18A2443EAF for ; Mon, 2 Dec 2002 07:40:23 -0800 (PST) (envelope-from tmoestl@gmx.net) Received: (qmail 9445 invoked by uid 0); 2 Dec 2002 15:40:22 -0000 Received: from p508e5688.dip.t-dialin.net (HELO forge.local) (80.142.86.136) by mail.gmx.net (mp010-rz3) with SMTP; 2 Dec 2002 15:40:22 -0000 Received: from tmm by forge.local with local (Exim 4.10 #1) id 18IsgW-0000K3-00; Mon, 02 Dec 2002 16:40:37 +0100 Date: Mon, 2 Dec 2002 16:40:36 +0100 From: Thomas Moestl To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/binutils - Imported sources Message-ID: <20021202154036.GB263@crow.dom2ip.de> Mail-Followup-To: "David E. O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200212020906.gB296j1d027417@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200212020906.gB296j1d027417@repoman.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 2002/12/02 at 01:06:45 -0800, David E. O'Brien wrote: > obrien 2002/12/02 01:06:45 PST > > src/contrib/binutils - Imported sources > Update of /home/ncvs/src/contrib/binutils > In directory repoman.freebsd.org:/tmp/cvs-serv27102 > > Log Message: > Import of Binutils from the FSF 2.13 branch (just pre-.2 release). > These bits are taken from the FSF anoncvs repo on 27-Oct-2002 21:12:00 EST. Thanks! - Thomas -- Thomas Moestl http://www.tu-bs.de/~y0015675/ http://people.FreeBSD.org/~tmm/ PGP fingerprint: 1C97 A604 2BD0 E492 51D0 9C0F 1FE6 4F1D 419C 776C To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 8:18:56 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCED337B401; Mon, 2 Dec 2002 08:18:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BA3143EAF; Mon, 2 Dec 2002 08:18:55 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2GEomV055119; Mon, 2 Dec 2002 08:14:50 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2GEoii055118; Mon, 2 Dec 2002 08:14:50 -0800 (PST) Message-Id: <200212021614.gB2GEoii055118@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 2 Dec 2002 08:14:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/12/02 08:14:50 PST Modified files: en/releases/5.0R todo.sgml Log: Update the status and ownership of the ``awk(1) locale support'' item. Patches were developed and sent to the one-true-awk author, Brian Kernighan, and he was kind enough to integrate them fast, and has already published a new version with these fixes included. Robert Watson on behalf of re@ says that the import should be coordinated with the FreeBSD one-true-awk maintainer, obrien@. Revision Changes Path 1.65 +3 -3 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 8:20:54 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F294C37B401; Mon, 2 Dec 2002 08:20:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0CFC43EBE; Mon, 2 Dec 2002 08:20:53 -0800 (PST) (envelope-from alex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2GGmmV055458; Mon, 2 Dec 2002 08:16:48 -0800 (PST) (envelope-from alex@repoman.freebsd.org) Received: (from alex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2GGmKJ055456; Mon, 2 Dec 2002 08:16:48 -0800 (PST) Message-Id: <200212021616.gB2GGmKJ055456@repoman.freebsd.org> From: Alexander Langer Date: Mon, 2 Dec 2002 08:16:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/musixtex Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alex 2002/12/02 08:16:48 PST Modified files: print/musixtex Makefile pkg-plist Log: Fix last commit in case of absence of texhash. Submitted by: kris Pointy hat to: myself, the dependency guru wannabe (last commit was tested with teTex installed) Revision Changes Path 1.30 +1 -1 ports/print/musixtex/Makefile 1.13 +2 -2 ports/print/musixtex/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 8:26:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 413C437B401; Mon, 2 Dec 2002 08:26:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E017E43E4A; Mon, 2 Dec 2002 08:26:20 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2GMFmV055692; Mon, 2 Dec 2002 08:22:15 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2GMFEQ055691; Mon, 2 Dec 2002 08:22:15 -0800 (PST) Message-Id: <200212021622.gB2GMFEQ055691@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 2 Dec 2002 08:22:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/ming/files patch-src_actioncompiler_swf4compiler.y patch-src_actioncompiler_swf5compiler.y X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/02 08:22:15 PST Added files: japanese/ming/files patch-src_actioncompiler_swf4compiler.y patch-src_actioncompiler_swf5compiler.y Log: Fix build with bison 1.75. Reported by: bento Revision Changes Path 1.1 +26 -0 ports/japanese/ming/files/patch-src_actioncompiler_swf4compiler.y (new) 1.1 +96 -0 ports/japanese/ming/files/patch-src_actioncompiler_swf5compiler.y (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 8:36:17 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68DD037B401; Mon, 2 Dec 2002 08:36:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD6BB43EAF; Mon, 2 Dec 2002 08:36:13 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2GW8mV056322; Mon, 2 Dec 2002 08:32:08 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2GW8ku056321; Mon, 2 Dec 2002 08:32:08 -0800 (PST) Message-Id: <200212021632.gB2GW8ku056321@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 2 Dec 2002 08:32:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/ptoc/files patch-parser.y X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/02 08:32:08 PST Added files: lang/ptoc/files patch-parser.y Log: Fix build with bison 1.75. Reported by: bento Revision Changes Path 1.1 +459 -0 ports/lang/ptoc/files/patch-parser.y (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 8:42:19 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC12D37B401; Mon, 2 Dec 2002 08:42:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC91F43EB2; Mon, 2 Dec 2002 08:42:18 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2GcDmV056830; Mon, 2 Dec 2002 08:38:13 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2GcDCR056829; Mon, 2 Dec 2002 08:38:13 -0800 (PST) Message-Id: <200212021638.gB2GcDCR056829@repoman.freebsd.org> From: Robert Watson Date: Mon, 2 Dec 2002 08:38:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/smp Makefile article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/02 08:38:13 PST Added files: en_US.ISO8859-1/articles/smp Makefile article.sgml Log: Commit the draft SMPng architecture document John Baldwin posted to arch@ ages ago, with a number of updates I've added for things like the MAC Framework, locking of SIGIO, sysctl(), timeout(), credentials, jail, kernel modules, and a few other things. Note particularly large holes in documentation for file and file descriptor locking, pipe locking, select locking, process locking, scheduler locking. In fact, most sections need a lot of work, but I figured it was better to get this into the documentation tree where people could see/fix it, than let it rot more. This is not currently hooked up to the build since it's not yet ready, but can be built easily. Revision Changes Path 1.1 +18 -0 doc/en_US.ISO8859-1/articles/smp/Makefile (new) 1.1 +934 -0 doc/en_US.ISO8859-1/articles/smp/article.sgml (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 8:44:51 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2605C37B401; Mon, 2 Dec 2002 08:44:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C47C143EBE; Mon, 2 Dec 2002 08:44:49 -0800 (PST) (envelope-from shige@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2GeimV056972; Mon, 2 Dec 2002 08:40:44 -0800 (PST) (envelope-from shige@repoman.freebsd.org) Received: (from shige@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2Gei4L056971; Mon, 2 Dec 2002 08:40:44 -0800 (PST) Message-Id: <200212021640.gB2Gei4L056971@repoman.freebsd.org> From: Shigeyuki Fukushima Date: Mon, 2 Dec 2002 08:40:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/perl5 Makefile distinfo ports/japanese/perl5/files patch-ad patch-ag X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG shige 2002/12/02 08:40:44 PST Modified files: japanese/perl5 Makefile distinfo japanese/perl5/files patch-ad patch-ag Log: Update japanized perl5 patch to 20000401. PORTREVISION bump. Fix build error on 5-CURRENT. Revision Changes Path 1.27 +3 -2 ports/japanese/perl5/Makefile 1.9 +1 -1 ports/japanese/perl5/distinfo 1.8 +18 -7 ports/japanese/perl5/files/patch-ad 1.3 +11 -2 ports/japanese/perl5/files/patch-ag To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 8:53:38 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5586137B401; Mon, 2 Dec 2002 08:53:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0510243EB2; Mon, 2 Dec 2002 08:53:36 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2GnUmV057524; Mon, 2 Dec 2002 08:49:30 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2GnURU057523; Mon, 2 Dec 2002 08:49:30 -0800 (PST) Message-Id: <200212021649.gB2GnURU057523@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 2 Dec 2002 08:49:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/wxbasic/files patch-wxbasic.y X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/02 08:49:30 PST Added files: lang/wxbasic/files patch-wxbasic.y Log: Fix build with bison 1.75. Reported by: bento Revision Changes Path 1.1 +97 -0 ports/lang/wxbasic/files/patch-wxbasic.y (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 8:56:47 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B44937B401; Mon, 2 Dec 2002 08:56:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC9C643E4A; Mon, 2 Dec 2002 08:56:46 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2GqfmV057652; Mon, 2 Dec 2002 08:52:41 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2Gqfsv057651; Mon, 2 Dec 2002 08:52:41 -0800 (PST) Message-Id: <200212021652.gB2Gqfsv057651@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 2 Dec 2002 08:52:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/xstroke/files patch-rec_parse.y X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/02 08:52:41 PST Added files: x11/xstroke/files patch-rec_parse.y Log: Fix build with bison 1.75. Reported by: bento Revision Changes Path 1.1 +17 -0 ports/x11/xstroke/files/patch-rec_parse.y (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 9: 1:50 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB94737B406; Mon, 2 Dec 2002 09:01:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 160B543ED1; Mon, 2 Dec 2002 09:01:49 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2GvhmV058121; Mon, 2 Dec 2002 08:57:43 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2GvhIW058120; Mon, 2 Dec 2002 08:57:43 -0800 (PST) Message-Id: <200212021657.gB2GvhIW058120@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 2 Dec 2002 08:57:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/flasm/files patch-assembler.y X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/02 08:57:43 PST Modified files: graphics/flasm/files patch-assembler.y Log: Fix build with bison 1.75. Reported by: bento Revision Changes Path 1.2 +57 -4 ports/graphics/flasm/files/patch-assembler.y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 9:10: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E68637B401; Mon, 2 Dec 2002 09:10:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E97043EB2; Mon, 2 Dec 2002 09:10:08 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2H62mV058456; Mon, 2 Dec 2002 09:06:02 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2H62VD058455; Mon, 2 Dec 2002 09:06:02 -0800 (PST) Message-Id: <200212021706.gB2H62VD058455@repoman.freebsd.org> From: Robert Watson Date: Mon, 2 Dec 2002 09:06:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/02 09:06:02 PST Modified files: en/releases/5.0R todo.sgml Log: Chown inpcb panic task to mux, since he's managed to find a crash dump. Revision Changes Path 1.66 +3 -3 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 9:22:31 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2801437B401; Mon, 2 Dec 2002 09:22:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D5FE43EB2; Mon, 2 Dec 2002 09:22:30 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2HIPmV059410; Mon, 2 Dec 2002 09:18:25 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2HIPQC059409; Mon, 2 Dec 2002 09:18:25 -0800 (PST) Message-Id: <200212021718.gB2HIPQC059409@repoman.freebsd.org> From: Robert Watson Date: Mon, 2 Dec 2002 09:18:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news/status report-sept-2002-oct-2002.xml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/02 09:18:25 PST Modified files: en/news/status report-sept-2002-oct-2002.xml Log: Fix KSE URL apparently broken in a prior commit; add URL to KSE web page. Revision Changes Path 1.4 +2 -1 www/en/news/status/report-sept-2002-oct-2002.xml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 9:27:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E689437B401; Mon, 2 Dec 2002 09:27:21 -0800 (PST) Received: from kurush.osdn.org.ua (external.osdn.org.ua [212.40.34.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DE9B43EA9; Mon, 2 Dec 2002 09:27:17 -0800 (PST) (envelope-from never@kurush.osdn.org.ua) Received: from kurush.osdn.org.ua (never@localhost [127.0.0.1]) by kurush.osdn.org.ua (8.12.6/8.12.6) with ESMTP id gB2HRBTP063641; Mon, 2 Dec 2002 19:27:11 +0200 (EET) (envelope-from never@kurush.osdn.org.ua) Received: (from never@localhost) by kurush.osdn.org.ua (8.12.6/8.12.6/Submit) id gB2HRA9i063640; Mon, 2 Dec 2002 19:27:10 +0200 (EET) Date: Mon, 2 Dec 2002 19:27:10 +0200 From: Alexandr Kovalenko To: Robert Watson Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: www/en/news/status report-sept-2002-oct-2002.xml Message-ID: <20021202172710.GA43892@nevermind.kiev.ua> References: <200212021718.gB2HIPQC059409@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200212021718.gB2HIPQC059409@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Robert Watson! On Mon, Dec 02, 2002 at 09:18:25AM -0800, you wrote: > rwatson 2002/12/02 09:18:25 PST > > Modified files: > en/news/status report-sept-2002-oct-2002.xml > Log: > Fix KSE URL apparently broken in a prior commit; add URL to KSE web > page. Thank you! -- NEVE-RIPE, will build world for food Ukrainian FreeBSD User Group http://uafug.org.ua/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 9:38:12 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00EFB37B401; Mon, 2 Dec 2002 09:38:12 -0800 (PST) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4826543E88; Mon, 2 Dec 2002 09:38:11 -0800 (PST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.6/8.12.6) with ESMTP id gB2Hc6lI031939 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Mon, 2 Dec 2002 12:38:06 -0500 (EST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.6/8.12.6/Submit) id gB2Hc6af031936; Mon, 2 Dec 2002 12:38:06 -0500 (EST) (envelope-from wollman) Date: Mon, 2 Dec 2002 12:38:06 -0500 (EST) From: Garrett Wollman Message-Id: <200212021738.gB2Hc6af031936@khavrinen.lcs.mit.edu> To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdtime localtime.c In-Reply-To: <200212020105.gB21596L092766@repoman.freebsd.org> References: <200212020105.gB21596L092766@repoman.freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG < said: > This solves the problem of mktime/localtime looping on ia64. Unfortunately, > the standards say that tm_year is an 'int', so we are still stuck with a > y2147483647 bug. Not necessarily a bug: the Standard also says that, if any field in the broken-down time is too narrow to represent the correct value, localtime() should fail with [EOVERFLOW]. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 10:45:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DB6437B401; Mon, 2 Dec 2002 10:45:21 -0800 (PST) Received: from kayak.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACE5E43EB2; Mon, 2 Dec 2002 10:45:20 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by kayak.xcllnt.net (8.12.6/8.12.6) with ESMTP id gB2IjKrT021078; Mon, 2 Dec 2002 10:45:20 -0800 (PST) (envelope-from marcel@kayak.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.6/8.12.6) with ESMTP id gB2IjXJo000759; Mon, 2 Dec 2002 10:45:33 -0800 (PST) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.6/8.12.6/Submit) id gB2IjWd1000758; Mon, 2 Dec 2002 10:45:32 -0800 (PST) Date: Mon, 2 Dec 2002 10:45:32 -0800 From: Marcel Moolenaar To: Garrett Wollman Cc: Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/stdtime localtime.c Message-ID: <20021202184532.GD605@dhcp01.pn.xcllnt.net> References: <200212020105.gB21596L092766@repoman.freebsd.org> <200212021738.gB2Hc6af031936@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200212021738.gB2Hc6af031936@khavrinen.lcs.mit.edu> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Dec 02, 2002 at 12:38:06PM -0500, Garrett Wollman wrote: > < said: > > > This solves the problem of mktime/localtime looping on ia64. Unfortunately, > > the standards say that tm_year is an 'int', so we are still stuck with a > > y2147483647 bug. > > Not necessarily a bug: the Standard also says that, if any field in > the broken-down time is too narrow to represent the correct value, > localtime() should fail with [EOVERFLOW]. I guess this proofs there's a time we'll all be late :-) -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 10:52:34 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 351C537B407 for ; Mon, 2 Dec 2002 10:52:32 -0800 (PST) Received: from mail.speakeasy.net (mail16.speakeasy.net [216.254.0.216]) by mx1.FreeBSD.org (Postfix) with ESMTP id F26A943ECF for ; Mon, 2 Dec 2002 10:52:28 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 3535 invoked from network); 2 Dec 2002 18:52:34 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail16.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 2 Dec 2002 18:52:34 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.6/8.12.6) with ESMTP id gB2IqIuH034255; Mon, 2 Dec 2002 13:52:21 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Mon, 02 Dec 2002 13:52:26 -0500 (EST) From: John Baldwin To: Dag-Erling Smorgrav Subject: Re: cvs commit: src/usr.sbin/sysinstall devices.c Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 28-Nov-2002 Dag-Erling Smorgrav wrote: > John Baldwin writes: >> Log: >> Don't use fake 'c' or 'a' BSD partitions for CD-ROM devices. This fixes >> sysinstall to create /cdrom entries in /etc/fstab that just use the >> raw CD-ROM device /dev/cd0, etc. > > I've also had this in my tree for ages: > > Index: usr.sbin/cdcontrol/cdcontrol.c > =================================================================== > RCS file: /home/ncvs/src/usr.sbin/cdcontrol/cdcontrol.c,v > retrieving revision 1.42 > diff -u -r1.42 cdcontrol.c > --- usr.sbin/cdcontrol/cdcontrol.c 18 Oct 2002 22:03:38 -0000 1.42 > +++ usr.sbin/cdcontrol/cdcontrol.c 20 Oct 2002 13:15:03 -0000 > @@ -51,7 +51,7 @@ > #define ASTS_VOID 0x15 /* No current audio status to return */ > > #ifndef DEFAULT_CD_DRIVE > -# define DEFAULT_CD_DRIVE "/dev/cd0c" > +# define DEFAULT_CD_DRIVE "/dev/cd0" > #endif > > #ifndef DEFAULT_CD_PARTITION > > Without this patch, you get > > cdcontrol: no CD device name specified, defaulting to /dev/cd0c > cdcontrol: /dev/cd0cc: No such file or directory Looks good to me. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 11: 0:38 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54E0F37B406; Mon, 2 Dec 2002 11:00:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 049B043EAF; Mon, 2 Dec 2002 11:00:36 -0800 (PST) (envelope-from tmm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2IuUmV064967; Mon, 2 Dec 2002 10:56:30 -0800 (PST) (envelope-from tmm@repoman.freebsd.org) Received: (from tmm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2IuUpU064966; Mon, 2 Dec 2002 10:56:30 -0800 (PST) Message-Id: <200212021856.gB2IuUpU064966@repoman.freebsd.org> From: Thomas Moestl Date: Mon, 2 Dec 2002 10:56:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 elf_machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tmm 2002/12/02 10:56:30 PST Modified files: sys/sparc64/sparc64 elf_machdep.c Log: Remove a workaround for a binutils bug that was fixed in the recent import, as it breaks the relocation kernel modules built with the new binutils. Note that this, together with the binutils import, marks a kernel module flag day on sparc64: modules built with the old binutils will not work with new kernels and vice versa. Mismatches will result in panics. Approved by: re Revision Changes Path 1.12 +4 -19 src/sys/sparc64/sparc64/elf_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 11: 9:26 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C01F37B401; Mon, 2 Dec 2002 11:09:25 -0800 (PST) Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06B5943EA9; Mon, 2 Dec 2002 11:09:24 -0800 (PST) (envelope-from jake@k6.locore.ca) Received: from k6.locore.ca (jake@localhost.locore.ca [127.0.0.1]) by k6.locore.ca (8.12.6/8.12.6) with ESMTP id gB2JO6xQ040982; Mon, 2 Dec 2002 14:24:06 -0500 (EST) (envelope-from jake@k6.locore.ca) Received: (from jake@localhost) by k6.locore.ca (8.12.6/8.12.6/Submit) id gB2JO5pf040981; Mon, 2 Dec 2002 14:24:05 -0500 (EST) Date: Mon, 2 Dec 2002 14:24:05 -0500 From: Jake Burkholder To: Thomas Moestl Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sparc64/sparc64 elf_machdep.c Message-ID: <20021202142404.C35729@locore.ca> References: <200212021856.gB2IuUpU064966@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200212021856.gB2IuUpU064966@repoman.freebsd.org>; from tmm@FreeBSD.org on Mon, Dec 02, 2002 at 10:56:30AM -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Apparently, On Mon, Dec 02, 2002 at 10:56:30AM -0800, Thomas Moestl said words to the effect of; > tmm 2002/12/02 10:56:30 PST > > Modified files: > sys/sparc64/sparc64 elf_machdep.c > Log: > Remove a workaround for a binutils bug that was fixed in the recent > import, as it breaks the relocation kernel modules built with the new > binutils. > Note that this, together with the binutils import, marks a kernel module > flag day on sparc64: modules built with the old binutils will not work > with new kernels and vice versa. Mismatches will result in panics. > > Approved by: re Thanks. > > Revision Changes Path > 1.12 +4 -19 src/sys/sparc64/sparc64/elf_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 11:34:44 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 710AF37B401; Mon, 2 Dec 2002 11:34:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F83543EBE; Mon, 2 Dec 2002 11:34:43 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2JUbmV067128; Mon, 2 Dec 2002 11:30:37 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2JUb4m067127; Mon, 2 Dec 2002 11:30:37 -0800 (PST) Message-Id: <200212021930.gB2JUb4m067127@repoman.freebsd.org> From: Kirk McKusick Date: Mon, 2 Dec 2002 11:30:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/fsck_ffs setup.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2002/12/02 11:30:37 PST Modified files: sbin/fsck_ffs setup.c Log: Verify that alternate superblocks have a correct magic number before trying to use them. Set a minimum value for numdirs when using an alternate superblock to avoid spurious numdirs == 0 error. Calculate new fields when using an alternate superblock from a UFS1 filesystem to avoid segment faulting. Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.42 +10 -9 src/sbin/fsck_ffs/setup.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 11:36: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4391F37B401; Mon, 2 Dec 2002 11:36:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7B8C43EB2; Mon, 2 Dec 2002 11:35:59 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2JVsmV067190; Mon, 2 Dec 2002 11:31:54 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2JVsnf067189; Mon, 2 Dec 2002 11:31:54 -0800 (PST) Message-Id: <200212021931.gB2JVsnf067189@repoman.freebsd.org> From: Kirk McKusick Date: Mon, 2 Dec 2002 11:31:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs mkfs.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2002/12/02 11:31:54 PST Modified files: sbin/newfs mkfs.c Log: Correctly calculate the initial number of fragments in a filesystem so that fsck does not complain with `SUMMARY BLK COUNT(S) WRONG IN SUPERBLK' the first time it is run on a new filesystem. Reported by: Poul-Henning Kamp Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.67 +2 -2 src/sbin/newfs/mkfs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 11:40:21 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C398C37B401; Mon, 2 Dec 2002 11:40:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71AA143E4A; Mon, 2 Dec 2002 11:40:20 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2JaEmV067429; Mon, 2 Dec 2002 11:36:14 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2JaEx8067428; Mon, 2 Dec 2002 11:36:14 -0800 (PST) Message-Id: <200212021936.gB2JaEx8067428@repoman.freebsd.org> From: Robert Watson Date: Mon, 2 Dec 2002 11:36:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/smp article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/02 11:36:14 PST Modified files: en_US.ISO8859-1/articles/smp article.sgml Log: Minor language tweaks. Discussed with: Hiten Pandya Revision Changes Path 1.2 +7 -8 doc/en_US.ISO8859-1/articles/smp/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 11:52: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 440F337B404; Mon, 2 Dec 2002 11:52:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E879B43EAF; Mon, 2 Dec 2002 11:52:04 -0800 (PST) (envelope-from emoore@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2JlxmV068373; Mon, 2 Dec 2002 11:47:59 -0800 (PST) (envelope-from emoore@repoman.freebsd.org) Received: (from emoore@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2Jlwgr068372; Mon, 2 Dec 2002 11:47:58 -0800 (PST) Message-Id: <200212021947.gB2Jlwgr068372@repoman.freebsd.org> From: Eric Moore Date: Mon, 2 Dec 2002 11:47:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/amr amr_pci.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG emoore 2002/12/02 11:47:58 PST Modified files: (Branch: RELENG_4) sys/dev/amr amr_pci.c Log: Added support for DELL Perc4/DI. Revision Changes Path 1.1.2.8 +4 -1 src/sys/dev/amr/amr_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 12: 3: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 478F237B401; Mon, 2 Dec 2002 12:03:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDE2843EB2; Mon, 2 Dec 2002 12:03:01 -0800 (PST) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2JwtmV069047; Mon, 2 Dec 2002 11:58:55 -0800 (PST) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2JwtF6069046; Mon, 2 Dec 2002 11:58:55 -0800 (PST) Message-Id: <200212021958.gB2JwtF6069046@repoman.freebsd.org> From: Daniel Eischen Date: Mon, 2 Dec 2002 11:58:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 genassym.c locore.s machdep.c src/sys/i386/include signal.h ucontext.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG deischen 2002/12/02 11:58:55 PST Modified files: sys/i386/i386 genassym.c locore.s machdep.c sys/i386/include signal.h ucontext.h Log: Align the FPU state in the ucontext and sigcontext to 16 bytes to accomodate the new SSE/XMM floating point save/restore instructions. This commit is mostly from bde and includes some style nits. Approved by: re (jhb) Revision Changes Path 1.132 +3 -0 src/sys/i386/i386/genassym.c 1.161 +14 -10 src/sys/i386/i386/locore.s 1.551 +6 -3 src/sys/i386/i386/machdep.c 1.20 +2 -2 src/sys/i386/include/signal.h 1.10 +6 -4 src/sys/i386/include/ucontext.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 12: 3:32 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D04137B401; Mon, 2 Dec 2002 12:03:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1C5D43EC5; Mon, 2 Dec 2002 12:03:31 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2JxPmV069088; Mon, 2 Dec 2002 11:59:25 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2JxPVu069087; Mon, 2 Dec 2002 11:59:25 -0800 (PST) Message-Id: <200212021959.gB2JxPVu069087@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 2 Dec 2002 11:59:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_slice.c geom_slice.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/12/02 11:59:25 PST Modified files: sys/geom geom_slice.c geom_slice.h Log: Add a simplified version of the hot-spot code to enable us to protect in-band disklabels from in-band vandalism. Approve by: re Revision Changes Path 1.28 +86 -4 src/sys/geom/geom_slice.c 1.9 +9 -4 src/sys/geom/geom_slice.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 12: 9:43 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5953B37B401; Mon, 2 Dec 2002 12:09:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05BDC43EC5; Mon, 2 Dec 2002 12:09:42 -0800 (PST) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2K5amV069420; Mon, 2 Dec 2002 12:05:36 -0800 (PST) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2K5ZJ4069419; Mon, 2 Dec 2002 12:05:35 -0800 (PST) Message-Id: <200212022005.gB2K5ZJ4069419@repoman.freebsd.org> From: Luigi Rizzo Date: Mon, 2 Dec 2002 12:05:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/mfs_tree/etc rc X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG luigi 2002/12/02 12:05:35 PST Modified files: (Branch: RELENG_4) release/picobsd/mfs_tree/etc rc Log: MFC: Upgrade the root partition mount to r/w before trying to write to it. Revision Changes Path 1.2.2.8 +2 -0 src/release/picobsd/mfs_tree/etc/rc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 12:11:24 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E131437B401; Mon, 2 Dec 2002 12:11:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90D7F43EC5; Mon, 2 Dec 2002 12:11:23 -0800 (PST) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2K7HmV069800; Mon, 2 Dec 2002 12:07:17 -0800 (PST) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2K7HTx069799; Mon, 2 Dec 2002 12:07:17 -0800 (PST) Message-Id: <200212022007.gB2K7HTx069799@repoman.freebsd.org> From: Luigi Rizzo Date: Mon, 2 Dec 2002 12:07:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 umass.4 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG luigi 2002/12/02 12:07:17 PST Modified files: (Branch: RELENG_4) share/man/man4 umass.4 Log: MFC: List some of the Compact Flash readers known to work with this driver. Revision Changes Path 1.9.2.6 +11 -3 src/share/man/man4/umass.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 12:19:24 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E30237B401; Mon, 2 Dec 2002 12:19:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D383043E9C; Mon, 2 Dec 2002 12:19:22 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2KFGmV070049; Mon, 2 Dec 2002 12:15:16 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2KFGau070048; Mon, 2 Dec 2002 12:15:16 -0800 (PST) Message-Id: <200212022015.gB2KFGau070048@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 2 Dec 2002 12:15:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall install.c misc.c sysinstall.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcel 2002/12/02 12:15:16 PST Modified files: usr.sbin/sysinstall install.c misc.c sysinstall.h Log: ia64 specific. o Mount the EFI file system as msdosfs and not ufs as it's a FAT file system. Introduce Mount_msdos() for this to go side-by-side with Mount(). o Also, since mounting is performed as a command (which means it's queued, sorted, lost, found and executed), we cannot create a directory on the file system by calling mkdir. We must make sure the mkdir happens after the mount. Introduce Mkdir_command() to allow mkdir operations to be queued, sorted, lost, found and executed as well. Approved by: re (jhb, rwatson) Revision Changes Path 1.336 +6 -3 src/usr.sbin/sysinstall/install.c 1.42 +46 -1 src/usr.sbin/sysinstall/misc.c 1.235 +2 -0 src/usr.sbin/sysinstall/sysinstall.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 12:21: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 765D137B401; Mon, 2 Dec 2002 12:21:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 255C843E4A; Mon, 2 Dec 2002 12:21:02 -0800 (PST) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2KGumV070427; Mon, 2 Dec 2002 12:16:56 -0800 (PST) (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2KGuBY070426; Mon, 2 Dec 2002 12:16:56 -0800 (PST) Message-Id: <200212022016.gB2KGuBY070426@repoman.freebsd.org> From: Alexander Leidinger Date: Mon, 2 Dec 2002 12:16:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/interchange Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG netchild 2002/12/02 12:16:56 PST Modified files: www/interchange Makefile Log: - This port needs a tty at configure time, so IGNORE on the package build cluster. - Give maintainership back to ports@. Approved by: kris Revision Changes Path 1.9 +7 -3 ports/www/interchange/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 12:23:20 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 912C437B401; Mon, 2 Dec 2002 12:23:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4064C43EAF; Mon, 2 Dec 2002 12:23:19 -0800 (PST) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2KJDmV070503; Mon, 2 Dec 2002 12:19:13 -0800 (PST) (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2KJDFr070502; Mon, 2 Dec 2002 12:19:13 -0800 (PST) Message-Id: <200212022019.gB2KJDFr070502@repoman.freebsd.org> From: Alexander Leidinger Date: Mon, 2 Dec 2002 12:19:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/lame Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG netchild 2002/12/02 12:19:13 PST Modified files: audio/lame Makefile distinfo Log: Update to 3.93.1 (bug fixes which affect the quality of a MP3). Approved by: kris Revision Changes Path 1.28 +1 -2 ports/audio/lame/Makefile 1.12 +1 -1 ports/audio/lame/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 12:28: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11A5837B401; Mon, 2 Dec 2002 12:28:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B727943EAF; Mon, 2 Dec 2002 12:28:00 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2KNsmV070669; Mon, 2 Dec 2002 12:23:54 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2KNsks070668; Mon, 2 Dec 2002 12:23:54 -0800 (PST) Message-Id: <200212022023.gB2KNsks070668@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 2 Dec 2002 12:23:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_bsd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/12/02 12:23:54 PST Modified files: sys/geom geom_bsd.c Log: Use the hotspot code to prevent people from overwriting their disklabel with stuff which would ruin the day for any open parititons. Approved by: re Revision Changes Path 1.32 +90 -11 src/sys/geom/geom_bsd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 12:33:16 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BA4C37B401; Mon, 2 Dec 2002 12:33:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E00FE43E88; Mon, 2 Dec 2002 12:33:14 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2KT8mV071218; Mon, 2 Dec 2002 12:29:08 -0800 (PST) (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2KT8KP071217; Mon, 2 Dec 2002 12:29:08 -0800 (PST) Message-Id: <200212022029.gB2KT8KP071217@repoman.freebsd.org> From: Peter Pentchev Date: Mon, 2 Dec 2002 12:29:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/raycontrol raycontrol.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/12/02 12:29:08 PST Modified files: usr.sbin/raycontrol raycontrol.c Log: Replace the remaining strcpy() instances with strlcpy(), fixing a segfault when parsing a malformed command-line parameter. Rearrange a risky usage of sprintf() in a loop. Reported by: phrail@division7.us via the vuln-dev mailing list Approved by: re (rwatson) Revision Changes Path 1.4 +7 -9 src/usr.sbin/raycontrol/raycontrol.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 12:40:33 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 427E837B401; Mon, 2 Dec 2002 12:40:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1D2A43E88; Mon, 2 Dec 2002 12:40:31 -0800 (PST) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2KaPmV071672; Mon, 2 Dec 2002 12:36:25 -0800 (PST) (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2KaPLX071671; Mon, 2 Dec 2002 12:36:25 -0800 (PST) Message-Id: <200212022036.gB2KaPLX071671@repoman.freebsd.org> From: Joerg Wunsch Date: Mon, 2 Dec 2002 12:36:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/pcemu Makefile ports/emulators/pcemu/files patch-e1-gcc3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joerg 2002/12/02 12:36:25 PST Modified files: emulators/pcemu Makefile Added files: emulators/pcemu/files patch-e1-gcc3 Log: Make this port build under -current. (Of course, it'll also build under -stable still. ;-) gcc 3 is (correctly) a lot more picky about some suspicious cpp constructs that remained undetected in the original sources until now. Revision Changes Path 1.18 +2 -1 ports/emulators/pcemu/Makefile 1.1 +33 -0 ports/emulators/pcemu/files/patch-e1-gcc3 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 12:42:19 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10A4137B401; Mon, 2 Dec 2002 12:42:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B409E43EC2; Mon, 2 Dec 2002 12:42:18 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2KcCmV071976; Mon, 2 Dec 2002 12:38:12 -0800 (PST) (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2KcCaW071975; Mon, 2 Dec 2002 12:38:12 -0800 (PST) Message-Id: <200212022038.gB2KcCaW071975@repoman.freebsd.org> From: Peter Pentchev Date: Mon, 2 Dec 2002 12:38:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/finger net.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/12/02 12:38:12 PST Modified files: usr.bin/finger net.c Log: Make a CR/LF sequence measure up to its name: the order of the CR and LF characters was reversed, resulting in some network appliances, including at least some NAS devices from Ascend, not recognizing our finger(1) request. PR: 45914 Submitted by: J R Matthews Approved by: re (rwatson) MFC after: 2 weeks Revision Changes Path 1.22 +1 -1 src/usr.bin/finger/net.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 13: 1:48 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA25337B401 for ; Mon, 2 Dec 2002 13:01:47 -0800 (PST) Received: from barquito.iddx.net (barquito.iddx.net [208.42.115.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BE7E43E9C for ; Mon, 2 Dec 2002 13:01:47 -0800 (PST) (envelope-from MAnderson@iddx.net) Received: from DoifII (spam.houseofskark.net [208.42.115.81]) by barquito.iddx.net (Postfix) with ESMTP id B812EF418 for ; Mon, 2 Dec 2002 12:20:43 -0600 (CST) Reply-To: From: "Matthew Anderson" To: Subject: subscribe Date: Mon, 2 Dec 2002 12:20:51 -0600 Organization: Internet Distributed Data Exchange Message-ID: <000101c29a2f$8b46f960$51732ad0@DoifII> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 13: 4:41 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC61D37B401; Mon, 2 Dec 2002 13:04:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CFA143EB2; Mon, 2 Dec 2002 13:04:40 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2L0YmV073325; Mon, 2 Dec 2002 13:00:34 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2L0Y6D073324; Mon, 2 Dec 2002 13:00:34 -0800 (PST) Message-Id: <200212022100.gB2L0Y6D073324@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 2 Dec 2002 13:00:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/mrproject Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/02 13:00:34 PST Modified files: deskutils/mrproject Makefile Log: Gak! Replace pre-patch with post-patch to allow gnomehack to do it's magic. Reported by: bento Revision Changes Path 1.10 +1 -1 ports/deskutils/mrproject/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 13:16: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9269237B401; Mon, 2 Dec 2002 13:16:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 436F343E4A; Mon, 2 Dec 2002 13:16:02 -0800 (PST) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2LBumV074227; Mon, 2 Dec 2002 13:11:56 -0800 (PST) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2LBu3C074226; Mon, 2 Dec 2002 13:11:56 -0800 (PST) Message-Id: <200212022111.gB2LBu3C074226@repoman.freebsd.org> From: Marc Fonvieille Date: Mon, 2 Dec 2002 13:11:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/console-server article.sgml doc/en_US.ISO8859-1/articles/diskless-x article.sgml doc/en_US.ISO8859-1/articles/serial-uart article.sgml doc/en_US.ISO8859-1/books/developers-handbook/driverbasics chapter.sgml doc/en_US.ISO8859-1/books/faq book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG blackend 2002/12/02 13:11:55 PST Modified files: en_US.ISO8859-1/articles/console-server article.sgml en_US.ISO8859-1/articles/diskless-x article.sgml en_US.ISO8859-1/articles/serial-uart article.sgml en_US.ISO8859-1/books/developers-handbook/driverbasics chapter.sgml en_US.ISO8859-1/books/faq book.sgml Log: Add infos about devfs(5) where needed. Submitted by: keramida Revision Changes Path 1.9 +4 -0 doc/en_US.ISO8859-1/articles/console-server/article.sgml 1.10 +3 -1 doc/en_US.ISO8859-1/articles/diskless-x/article.sgml 1.7 +16 -3 doc/en_US.ISO8859-1/articles/serial-uart/article.sgml 1.21 +4 -2 doc/en_US.ISO8859-1/books/developers-handbook/driverbasics/chapter.sgml 1.500 +42 -3 doc/en_US.ISO8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 13:26:51 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EC2A37B401; Mon, 2 Dec 2002 13:26:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0F4543E88; Mon, 2 Dec 2002 13:26:49 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2LMhmV074861; Mon, 2 Dec 2002 13:22:43 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2LMhsm074860; Mon, 2 Dec 2002 13:22:43 -0800 (PST) Message-Id: <200212022122.gB2LMhsm074860@repoman.freebsd.org> From: "Bruce A. Mah" Date: Mon, 2 Dec 2002 13:22:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/12/02 13:22:43 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Updated release notes: Binutils 2.13.1-20021011, CVS 1.11.2.1-20021201. MFCs noted: gre(4), Heimdal Kerberos 0.5.1. Revision Changes Path 1.463 +4 -4 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 13:27:38 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6916C37B401; Mon, 2 Dec 2002 13:27:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1890643E88; Mon, 2 Dec 2002 13:27:37 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2LNUmV074911; Mon, 2 Dec 2002 13:23:30 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2LNU9W074910; Mon, 2 Dec 2002 13:23:30 -0800 (PST) Message-Id: <200212022123.gB2LNU9W074910@repoman.freebsd.org> From: "Bruce A. Mah" Date: Mon, 2 Dec 2002 13:23:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/12/02 13:23:30 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: gre(4), Heimdal Kerberos-0.5.1. Revision Changes Path 1.22.2.312 +6 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 13:33:11 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0403537B401; Mon, 2 Dec 2002 13:33:10 -0800 (PST) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9FC543EA9; Mon, 2 Dec 2002 13:33:08 -0800 (PST) (envelope-from bmah@employees.org) Received: from bmah.dyndns.org (12-240-204-110.client.attbi.com[12.240.204.110]) by sccrmhc02.attbi.com (sccrmhc02) with ESMTP id <20021202213307002001hj8ve>; Mon, 2 Dec 2002 21:33:07 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.6/8.12.6) with ESMTP id gB2LX6ns024357; Mon, 2 Dec 2002 13:33:06 -0800 (PST) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.6/8.12.6/Submit) id gB2LX6le024356; Mon, 2 Dec 2002 13:33:06 -0800 (PST) Message-Id: <200212022133.gB2LX6le024356@intruder.bmah.org> X-Mailer: exmh version 2.5+ 20021120 with nmh-1.0.4 To: "Bruce A. Mah" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml In-Reply-To: <200212022122.gB2LMhsm074860@repoman.freebsd.org> References: <200212022122.gB2LMhsm074860@repoman.freebsd.org> Comments: In-reply-to "Bruce A. Mah" message dated "Mon, 02 Dec 2002 13:22:43 -0800." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_1775087330P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Mon, 02 Dec 2002 13:33:06 -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --==_Exmh_1775087330P Content-Type: text/plain; charset=us-ascii If memory serves me right, "Bruce A. Mah" wrote: > bmah 2002/12/02 13:22:43 PST > > Modified files: > release/doc/en_US.ISO8859-1/relnotes/common new.sgml > Log: > Updated release notes: Binutils 2.13.1-20021011, CVS > 1.11.2.1-20021201. > > MFCs noted: gre(4), Heimdal Kerberos 0.5.1. Argh. Approved by: re (implicitly) Bruce. --==_Exmh_1775087330P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) Comment: Exmh version 2.5+ 20020506 iD8DBQE969GS2MoxcVugUsMRAjs2AKCTw0LWaYc+HnjpceDV4IUqNv51oQCfQkIV n8PIhY+H7xF0OyVsmoa8EUI= =UrY8 -----END PGP SIGNATURE----- --==_Exmh_1775087330P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 13:46:36 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC08A37B401; Mon, 2 Dec 2002 13:46:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A0F843E88; Mon, 2 Dec 2002 13:46:35 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2LgTmV076162; Mon, 2 Dec 2002 13:42:29 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2LgTil076161; Mon, 2 Dec 2002 13:42:29 -0800 (PST) Message-Id: <200212022142.gB2LgTil076161@repoman.freebsd.org> From: John Baldwin Date: Mon, 2 Dec 2002 13:42:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libdisk chunk.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/12/02 13:42:29 PST Modified files: lib/libdisk chunk.c Log: Break up a bunch of crazy if statements to use a case statement instead to be cleaner. Also, when deleting a chunk, try to find the mother chunk as a whole chunk by default if this isn't a BSD partition or a unused or whole chunk. Before we just did this for FreeBSD and FAT slices, which means that other chunk types such as EFI and mbr (mbr is used for slices that don't have their own chunk type). Submitted by: nyan (mostly) Approved by: re Revision Changes Path 1.46 +16 -14 src/lib/libdisk/chunk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 14:37:58 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D93AC37B401; Mon, 2 Dec 2002 14:37:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87AE643EAF; Mon, 2 Dec 2002 14:37:57 -0800 (PST) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2MXpmV079234; Mon, 2 Dec 2002 14:33:51 -0800 (PST) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2MXo1w079233; Mon, 2 Dec 2002 14:33:50 -0800 (PST) Message-Id: <200212022233.gB2MXo1w079233@repoman.freebsd.org> From: Luigi Rizzo Date: Mon, 2 Dec 2002 14:33:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/build picobsd X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG luigi 2002/12/02 14:33:50 PST Modified files: (Branch: RELENG_4) release/picobsd/build picobsd Log: Fix a long standing problem with ssh-keygen missing the '-t rsa1' option. Remove historical '-p 0' option from newfs Use 'strings' and 'dd' magic instead of perl (unavailable in -current) to patch the boot2 block. Will go into -current as soon as re@ approve Submitted by: Bruce Montague MFC After: 3 days Revision Changes Path 1.1.2.28 +9 -5 src/release/picobsd/build/picobsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 15: 4:27 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FF4D37B401; Mon, 2 Dec 2002 15:04:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0087043E9C; Mon, 2 Dec 2002 15:04:26 -0800 (PST) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2N0JmV080998; Mon, 2 Dec 2002 15:00:19 -0800 (PST) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2N0I9b080997; Mon, 2 Dec 2002 15:00:18 -0800 (PST) Message-Id: <200212022300.gB2N0I9b080997@repoman.freebsd.org> From: Luigi Rizzo Date: Mon, 2 Dec 2002 15:00:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_dc.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG luigi 2002/12/02 15:00:18 PST Modified files: (Branch: RELENG_4) sys/pci if_dc.c Log: MFC: correct handling of IFF_ALLMULTI Revision Changes Path 1.9.2.36 +6 -9 src/sys/pci/if_dc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 15:54: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56A5637B401; Mon, 2 Dec 2002 15:54:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C41B843EB2; Mon, 2 Dec 2002 15:54:06 -0800 (PST) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2No0mV083882; Mon, 2 Dec 2002 15:50:00 -0800 (PST) (envelope-from grog@repoman.freebsd.org) Received: (from grog@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2NnxTX083881; Mon, 2 Dec 2002 15:49:59 -0800 (PST) Message-Id: <200212022349.gB2NnxTX083881@repoman.freebsd.org> From: Greg Lehey Date: Mon, 2 Dec 2002 15:49:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/disklabel disklabel.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG grog 2002/12/02 15:49:59 PST Modified files: sbin/disklabel disklabel.c Log: Relax partition overlap check to allow Vinum partitions to overlap other partitiosns. This is necessary when migrating conventional partitions to Vinum and was broken by recent more stringent overlap checks. This is arguably the wrong way to do it. A better method would be to have the loader understand a subset of Vinum partitioning and allow an install directly to Vinum, but until then, this is the best we have. Reviewed by: jhb Approved by: re (rwatson) Revision Changes Path 1.64 +6 -3 src/sbin/disklabel/disklabel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 15:57:40 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2A2C37B401; Mon, 2 Dec 2002 15:57:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A179943EA9; Mon, 2 Dec 2002 15:57:39 -0800 (PST) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2NrWmV084020; Mon, 2 Dec 2002 15:53:32 -0800 (PST) (envelope-from grog@repoman.freebsd.org) Received: (from grog@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2NrWX9084019; Mon, 2 Dec 2002 15:53:32 -0800 (PST) Message-Id: <200212022353.gB2NrWX9084019@repoman.freebsd.org> From: Greg Lehey Date: Mon, 2 Dec 2002 15:53:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/vinum vinumconfig.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG grog 2002/12/02 15:53:32 PST Modified files: sys/dev/vinum vinumconfig.c Log: Don't blindly call make_dev when configuring an object: the device could already exist, and this triggers a booby trap panic in make_dev. remove_plex_entry: Don't remove the stripe mutex here, it gets done in free_plex. Approved by: re (rwatson) Revision Changes Path 1.51 +24 -23 src/sys/dev/vinum/vinumconfig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 16: 1: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE7F437B401; Mon, 2 Dec 2002 16:01:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E91F43E9C; Mon, 2 Dec 2002 16:01:06 -0800 (PST) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2NuxmV084488; Mon, 2 Dec 2002 15:56:59 -0800 (PST) (envelope-from grog@repoman.freebsd.org) Received: (from grog@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2NuxcG084487; Mon, 2 Dec 2002 15:56:59 -0800 (PST) Message-Id: <200212022356.gB2NuxcG084487@repoman.freebsd.org> From: Greg Lehey Date: Mon, 2 Dec 2002 15:56:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/vinum vinumioctl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG grog 2002/12/02 15:56:59 PST Modified files: sys/dev/vinum vinumioctl.c Log: Implement DIOCGDINFO for volumes. newfs will no longer build a file system on a volume without a disk label. Approved by: re (rwatson) Revision Changes Path 1.38 +4 -0 src/sys/dev/vinum/vinumioctl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 17:22: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF3CF37B401; Mon, 2 Dec 2002 17:21:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E27843EBE; Mon, 2 Dec 2002 17:21:59 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB31HqmV089513; Mon, 2 Dec 2002 17:17:52 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB31HqA2089512; Mon, 2 Dec 2002 17:17:52 -0800 (PST) Message-Id: <200212030117.gB31HqA2089512@repoman.freebsd.org> From: Peter Wemm Date: Mon, 2 Dec 2002 17:17:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if_gre.c if_gre.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/12/02 17:17:52 PST Modified files: (Branch: RELENG_4) sys/net if_gre.c if_gre.h Log: Forced commit to repair cvs breakage. Folks, do not use -k flags when adding files. eg: do NOT do this: 'cvs add -kk -rRELENG_4' Pointy hat to: sobomax (I think) Revision Changes Path 1.9.2.2 +1 -1 src/sys/net/if_gre.c 1.6.2.2 +1 -1 src/sys/net/if_gre.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 20: 4:52 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D34137B401; Mon, 2 Dec 2002 20:04:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F162543E88; Mon, 2 Dec 2002 20:04:50 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB340hmV098885; Mon, 2 Dec 2002 20:00:43 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB340hHQ098884; Mon, 2 Dec 2002 20:00:43 -0800 (PST) Message-Id: <200212030400.gB340hHQ098884@repoman.freebsd.org> From: Alan Cox Date: Mon, 2 Dec 2002 20:00:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 pmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2002/12/02 20:00:43 PST Modified files: sys/i386/i386 pmap.c Log: Avoid recursive acquisition of the page queues lock in pmap_unuse_pt(). Approved by: re Revision Changes Path 1.376 +3 -1 src/sys/i386/i386/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 20: 6:14 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 779E137B401; Mon, 2 Dec 2002 20:06:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23DBA43EAF; Mon, 2 Dec 2002 20:06:13 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3425mV098950; Mon, 2 Dec 2002 20:02:05 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3425oN098949; Mon, 2 Dec 2002 20:02:05 -0800 (PST) Message-Id: <200212030402.gB3425oN098949@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 2 Dec 2002 20:02:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/nntp/files patch-xmit-nntpxmit.c patch-xmit-shlock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/12/02 20:02:05 PST Modified files: news/nntp/files patch-xmit-nntpxmit.c patch-xmit-shlock.c Log: Fix for bento on CURRENT (u_long problem) Revision Changes Path 1.4 +31 -8 ports/news/nntp/files/patch-xmit-nntpxmit.c 1.2 +28 -4 ports/news/nntp/files/patch-xmit-shlock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 20: 6:23 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 269FA37B401; Mon, 2 Dec 2002 20:06:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C793D43EB2; Mon, 2 Dec 2002 20:06:21 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB342EmV098976; Mon, 2 Dec 2002 20:02:14 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB342EbB098975; Mon, 2 Dec 2002 20:02:14 -0800 (PST) Message-Id: <200212030402.gB342EbB098975@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 2 Dec 2002 20:02:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/12/02 20:02:14 PST Modified files: release Makefile Log: Add lib/libfetch and usr.bin/fetch to FIXCRYPTO since they need the crypto libraries for SSL support. Approved by: re (rwatson) Revision Changes Path 1.732 +2 -1 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 20:20:35 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2199F37B401; Mon, 2 Dec 2002 20:20:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCA9243E4A; Mon, 2 Dec 2002 20:20:33 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB34GPmV099998; Mon, 2 Dec 2002 20:16:25 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB34GPCY099997; Mon, 2 Dec 2002 20:16:25 -0800 (PST) Message-Id: <200212030416.gB34GPCY099997@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 2 Dec 2002 20:16:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/screem Makefile distinfo ports/www/screem/files patch-src_fileops.c patch-src_screem-markup.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/02 20:16:25 PST Modified files: www/screem Makefile distinfo Added files: www/screem/files patch-src_screem-markup.c Removed files: www/screem/files patch-src_fileops.c Log: Update to 0.5.6 which fixes some persistent crashes. Submitted by: maintainer Approved by: portmgr (kris) Revision Changes Path 1.30 +1 -1 ports/www/screem/Makefile 1.10 +1 -1 ports/www/screem/distinfo 1.2 +0 -31 ports/www/screem/files/patch-src_fileops.c (dead) 1.1 +22 -0 ports/www/screem/files/patch-src_screem-markup.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 20:26:50 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B48037B401; Mon, 2 Dec 2002 20:26:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 153CF43EBE; Mon, 2 Dec 2002 20:26:49 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB34MfmV000506; Mon, 2 Dec 2002 20:22:41 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB34MfdV000505; Mon, 2 Dec 2002 20:22:41 -0800 (PST) Message-Id: <200212030422.gB34MfdV000505@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 2 Dec 2002 20:22:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/libzvt Makefile ports/x11-toolkits/libzvt/files patch-configure X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/12/02 20:22:41 PST Modified files: x11-toolkits/libzvt Makefile x11-toolkits/libzvt/files patch-configure Log: Make sure that gnome-pty-helper is installed setuid to root. This fixes a bug where commands like mesg would fail in gnome-terminal. Approved by: portmgr (kris) Revision Changes Path 1.13 +1 -0 ports/x11-toolkits/libzvt/Makefile 1.2 +13 -6 ports/x11-toolkits/libzvt/files/patch-configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 20:35:28 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C935C37B401; Mon, 2 Dec 2002 20:35:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 782FD43E88; Mon, 2 Dec 2002 20:35:27 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB34VJmV001083; Mon, 2 Dec 2002 20:31:19 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB34VJBN001082; Mon, 2 Dec 2002 20:31:19 -0800 (PST) Message-Id: <200212030431.gB34VJBN001082@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 20:31:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config freebsd-spec.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 20:31:19 PST Modified files: contrib/gcc/config freebsd-spec.h Log: Add spaces around FBSD_ENDFILE_SPEC as it is used in string concatenation. Approved by: re(bmah) Revision Changes Path 1.7 +1 -1 src/contrib/gcc/config/freebsd-spec.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 20:39:16 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A93A137B404; Mon, 2 Dec 2002 20:39:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B5BC43ECF; Mon, 2 Dec 2002 20:39:15 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB34Z7mV001225; Mon, 2 Dec 2002 20:35:07 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB34Z78K001224; Mon, 2 Dec 2002 20:35:07 -0800 (PST) Message-Id: <200212030435.gB34Z78K001224@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 20:35:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc31 Makefile ports/lang/gcc32 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 20:35:07 PST Modified files: lang/gcc31 Makefile lang/gcc32 Makefile Log: Fix cklatest paths. Reported by: gerald Approved by: kris Revision Changes Path 1.136 +1 -1 ports/lang/gcc31/Makefile 1.136 +1 -1 ports/lang/gcc32/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 20:41:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4316937B401; Mon, 2 Dec 2002 20:41:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6F9A43E88; Mon, 2 Dec 2002 20:41:21 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB34bEmV001704; Mon, 2 Dec 2002 20:37:14 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB34bEIh001703; Mon, 2 Dec 2002 20:37:14 -0800 (PST) Message-Id: <200212030437.gB34bEIh001703@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 2 Dec 2002 20:37:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/spigot Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/02 20:37:14 PST Modified files: graphics/spigot Makefile Log: Mark ONLY_FOR_ARCHS=i386 Revision Changes Path 1.13 +2 -1 ports/graphics/spigot/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 20:46:26 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07B6737B401; Mon, 2 Dec 2002 20:46:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA5AC43E4A; Mon, 2 Dec 2002 20:46:25 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB34gHmV001875; Mon, 2 Dec 2002 20:42:17 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB34gH8L001874; Mon, 2 Dec 2002 20:42:17 -0800 (PST) Message-Id: <200212030442.gB34gH8L001874@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 2 Dec 2002 20:42:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/cpmemu Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/02 20:42:17 PST Modified files: emulators/cpmemu Makefile Log: ONLY_FOR_ARCHS=i386 Revision Changes Path 1.19 +3 -1 ports/emulators/cpmemu/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 20:56:48 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DFBB37B401; Mon, 2 Dec 2002 20:56:47 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3ACD43EC2; Mon, 2 Dec 2002 20:56:46 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 69ECB2A8A9; Mon, 2 Dec 2002 20:56:46 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/binutils/libbfd/alpha bfd.h src/gnu/usr.bin/binutils/libbfd/i386 bfd.h src/gnu/usr.bin/binutils/libbfd/ia64 bfd.h src/gnu/usr.bin/binutils/libbfd/powerpc bfd.h src/gnu/usr.bin/binutils/libbfd/sparc64 bfd.h In-Reply-To: <200212020949.gB29nwCi031412@repoman.freebsd.org> Date: Mon, 02 Dec 2002 20:56:46 -0800 From: Peter Wemm Message-Id: <20021203045646.69ECB2A8A9@canning.wemm.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "David E. O'Brien" wrote: > obrien 2002/12/02 01:49:58 PST > > Modified files: > gnu/usr.bin/binutils/libbfd/alpha bfd.h > gnu/usr.bin/binutils/libbfd/i386 bfd.h > gnu/usr.bin/binutils/libbfd/ia64 bfd.h > gnu/usr.bin/binutils/libbfd/powerpc bfd.h > gnu/usr.bin/binutils/libbfd/sparc64 bfd.h > Log: > Update for the Binutils 2.13.2 20021127 snapshot import. > Among other things, we don't need to redefine ELF_DYNAMIC_INTERPRETER here. > > Revision Changes Path > 1.15 +5 -8 src/gnu/usr.bin/binutils/libbfd/alpha/bfd.h > 1.20 +5 -8 src/gnu/usr.bin/binutils/libbfd/i386/bfd.h > 1.6 +5 -8 src/gnu/usr.bin/binutils/libbfd/ia64/bfd.h > 1.6 +207 -85 src/gnu/usr.bin/binutils/libbfd/powerpc/bfd.h > 1.13 +5 -5 src/gnu/usr.bin/binutils/libbfd/sparc64/bfd.h This appears to break ia64: ===> gnu/usr.bin/binutils/libbfd elf64-ia64.c: In function `elf64_ia64_size_dynamic_sections': elf64-ia64.c:2744: `ELF_DYNAMIC_INTERPRETER' undeclared (first use in this function) elf64-ia64.c:2744: (Each undeclared identifier is reported only once elf64-ia64.c:2744: for each function it appears in.) *** Error code 1 Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 20:58:53 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC33537B401; Mon, 2 Dec 2002 20:58:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5817943EBE; Mon, 2 Dec 2002 20:58:52 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB34simV002513; Mon, 2 Dec 2002 20:54:44 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB34siKm002512; Mon, 2 Dec 2002 20:54:44 -0800 (PST) Message-Id: <200212030454.gB34siKm002512@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 2 Dec 2002 20:54:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/vb2c Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/02 20:54:44 PST Modified files: devel/vb2c Makefile Log: Uh, there are .o's in the distfile; and guess what. One can't build a sparc64 binary using an i386 object. Revision Changes Path 1.2 +3 -0 ports/devel/vb2c/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 21: 9:44 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05FEA37B401; Mon, 2 Dec 2002 21:09:42 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FD0043E9C; Mon, 2 Dec 2002 21:09:41 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.6/8.12.2) with ESMTP id gB359fqe061351; Mon, 2 Dec 2002 21:09:41 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.6/8.12.6/Submit) id gB358PZr061346; Mon, 2 Dec 2002 21:08:25 -0800 (PST) Date: Mon, 2 Dec 2002 21:08:25 -0800 From: "David O'Brien" To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/binutils/libbfd/alpha bfd.h src/gnu/usr.bin/binutils/libbfd/i386 bfd.h src/gnu/usr.bin/binutils/libbfd/ia64 bfd.h src/gnu/usr.bin/binutils/libbfd/powerpc bfd.h src/gnu/usr.bin/binutils/libbfd/sparc64 bfd.h Message-ID: <20021203050825.GA61322@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org Mail-Followup-To: David O'Brien , Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200212020949.gB29nwCi031412@repoman.freebsd.org> <20021203045646.69ECB2A8A9@canning.wemm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021203045646.69ECB2A8A9@canning.wemm.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Dec 02, 2002 at 08:56:46PM -0800, Peter Wemm wrote: > > Log: > > Update for the Binutils 2.13.2 20021127 snapshot import. > > Among other things, we don't need to redefine ELF_DYNAMIC_INTERPRETER here. Should have added you to this email to Marcel: Index: Makefile.ia64 =================================================================== RCS file: /home/ncvs/src/gnu/usr.bin/binutils/libbfd/Makefile.ia64,v retrieving revision 1.4 diff -u -r1.4 Makefile.ia64 --- Makefile.ia64 2 Dec 2002 09:59:05 -0000 1.4 +++ Makefile.ia64 3 Dec 2002 04:06:42 -0000 @@ -26,8 +26,7 @@ sed -e s/NN/64/g ${.ALLSRC} > ${.TARGET} elf64-ia64.c: elfxx-ia64.c - sed -e s/NN/64/g -e 's/^.*#.*define.*ELF_DYNAMIC_INTERPRETER.*$$//g' \ - ${.ALLSRC} > ${.TARGET} + sed -e s/NN/64/g ${.ALLSRC} > ${.TARGET} pepigen.c: peXXigen.c sed -e s/XX/pep/g ${.ALLSRC} > ${.TARGET} This patch will most likely also be needed: Index: ld/Makefile.ia64 =================================================================== RCS file: /home/ncvs/src/gnu/usr.bin/binutils/ld/Makefile.ia64,v retrieving revision 1.4 diff -u -r1.4 Makefile.ia64 --- ld/Makefile.ia64 29 Mar 2002 00:41:01 -0000 1.4 +++ ld/Makefile.ia64 3 Dec 2002 04:24:46 -0000 @@ -3,8 +3,8 @@ TARGET_TUPLE?= ia64-unknown-freebsd .if ${TARGET_ARCH} == "ia64" -NATIVE_EMULATION= elf64_ia64 -HOST= ${TARGET_TUPLE} # do what?? how does this work for a cross-build?? +NATIVE_EMULATION= elf64_ia64_fbsd +HOST= ${TARGET_TUPLE} CFLAGS+= -DDEFAULT_EMULATION=\"${NATIVE_EMULATION}\" CFLAGS+= -DTARGET=\"${TARGET_TUPLE}\" _ia64_path= \"${TOOLS_PREFIX}/usr/lib\" @@ -15,11 +15,19 @@ EMS+= ${NATIVE_EMULATION} LDSCRIPTS+= ${NATIVE_EMULATION}.x ${NATIVE_EMULATION}.xbn ${NATIVE_EMULATION}.xn ${NATIVE_EMULATION}.xr \ ${NATIVE_EMULATION}.xs ${NATIVE_EMULATION}.xu ${NATIVE_EMULATION}.xc ${NATIVE_EMULATION}.xsc + SRCS+= e${NATIVE_EMULATION}.c CLEANFILES+= e${NATIVE_EMULATION}.c - -e${NATIVE_EMULATION}.c: emulparams/${NATIVE_EMULATION}.sh emultempl/elf32.em scripttempl/elf.sc \ - genscripts.sh stringify.sed +e${NATIVE_EMULATION}.c: emulparams/${NATIVE_EMULATION}.sh emultempl/elf32.em \ + scripttempl/elf.sc genscripts.sh stringify.sed sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${_ia64_path} \ ${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \ "${NATIVE_EMULATION}" "" ${NATIVE_EMULATION} "${TARGET_TUPLE}" + +SRCS+= eelf64_ia64.c +CLEANFILES+= eelf64_ia64.c +eelf64_ia64.c: emulparams/elf64_ia64.sh emultempl/elf32.em \ + scripttempl/elf.sc genscripts.sh stringify.sed + sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${_ia64_path} \ + ${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \ + "elf64_ia64" "" elf64_ia64 ${TARGET_TUPLE} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 21:11:29 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADD3E37B401; Mon, 2 Dec 2002 21:11:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D7D143EC2; Mon, 2 Dec 2002 21:11:28 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB357KmV003519; Mon, 2 Dec 2002 21:07:20 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB357KHE003518; Mon, 2 Dec 2002 21:07:20 -0800 (PST) Message-Id: <200212030507.gB357KHE003518@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 2 Dec 2002 21:07:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/st Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/02 21:07:20 PST Modified files: devel/st Makefile Log: ONLY_FOR_ARCHS=i386 alpha Revision Changes Path 1.5 +1 -0 ports/devel/st/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 21:14:16 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3F4B37B401; Mon, 2 Dec 2002 21:14:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FAB743E9C; Mon, 2 Dec 2002 21:14:15 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB35A7mV003608; Mon, 2 Dec 2002 21:10:07 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB35A7uV003607; Mon, 2 Dec 2002 21:10:07 -0800 (PST) Message-Id: <200212030510.gB35A7uV003607@repoman.freebsd.org> From: Kirk McKusick Date: Mon, 2 Dec 2002 21:10:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dump traverse.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2002/12/02 21:10:07 PST Modified files: sbin/dump traverse.c Log: Properly handle UFS2 sparsely allocated inodes. The UFS2 filesystem only preallocates a small number of inodes. The dump program tries to scan through all the allocated inodes on a filesystem which causes bad behavior if they have never been allocated. Thus dump must calculate the set of inodes that have actually been allocated and scan only those inodes. Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.29 +66 -25 src/sbin/dump/traverse.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 21:15: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BB7337B401; Mon, 2 Dec 2002 21:15:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B0F643EAF; Mon, 2 Dec 2002 21:15:07 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB35AxmV003679; Mon, 2 Dec 2002 21:10:59 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB35Axth003678; Mon, 2 Dec 2002 21:10:59 -0800 (PST) Message-Id: <200212030510.gB35Axth003678@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 2 Dec 2002 21:10:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/dbregc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/02 21:10:59 PST Modified files: devel/dbregc Makefile Log: ONLY_FOR_ARCHS=i386 Revision Changes Path 1.2 +1 -0 ports/devel/dbregc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 21:17: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C779F37B401; Mon, 2 Dec 2002 21:17:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75F8C43E9C; Mon, 2 Dec 2002 21:17:01 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB35CrmV003747; Mon, 2 Dec 2002 21:12:53 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB35CrQl003746; Mon, 2 Dec 2002 21:12:53 -0800 (PST) Message-Id: <200212030512.gB35CrQl003746@repoman.freebsd.org> From: Kirk McKusick Date: Mon, 2 Dec 2002 21:12:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dump dump.h traverse.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2002/12/02 21:12:53 PST Modified files: sbin/dump dump.h traverse.c Log: Correct the estimated block count calculated by dump to account for the minimal amount of space used by a snapshot. Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.21 +0 -1 src/sbin/dump/dump.h 1.30 +4 -1 src/sbin/dump/traverse.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 21:17:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B1A237B401; Mon, 2 Dec 2002 21:17:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A07D43EB2; Mon, 2 Dec 2002 21:17:21 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB35DDmV003801; Mon, 2 Dec 2002 21:13:13 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB35DD6Y003800; Mon, 2 Dec 2002 21:13:13 -0800 (PST) Message-Id: <200212030513.gB35DD6Y003800@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 2 Dec 2002 21:13:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/asl Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/02 21:13:13 PST Modified files: devel/asl Makefile Log: ONLY_FOR_ARCHS=i386 alpha Revision Changes Path 1.14 +1 -0 ports/devel/asl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 21:18:36 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4116237B401; Mon, 2 Dec 2002 21:18:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E53CF43E4A; Mon, 2 Dec 2002 21:18:35 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB35ESmV003847; Mon, 2 Dec 2002 21:14:28 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB35ERdO003846; Mon, 2 Dec 2002 21:14:27 -0800 (PST) Message-Id: <200212030514.gB35ERdO003846@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 2 Dec 2002 21:14:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ald Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/02 21:14:27 PST Modified files: devel/ald Makefile Log: ONLY_FOR_ARCHS=i386 Revision Changes Path 1.5 +1 -0 ports/devel/ald/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 21:26:44 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA0C137B401; Mon, 2 Dec 2002 21:26:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 986D943EAF; Mon, 2 Dec 2002 21:26:43 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB35MZmV004410; Mon, 2 Dec 2002 21:22:35 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB35MZvD004409; Mon, 2 Dec 2002 21:22:35 -0800 (PST) Message-Id: <200212030522.gB35MZvD004409@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 2 Dec 2002 21:22:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/crossword/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/02 21:22:35 PST Added files: games/crossword/files patch-aa Log: Use ${CXX} to build/link, instead of gcc -lstdc++ (fixes build on sparc64) Revision Changes Path 1.1 +37 -0 ports/games/crossword/files/patch-aa (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 21:35:59 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC8E637B401; Mon, 2 Dec 2002 21:35:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CF5743EB2; Mon, 2 Dec 2002 21:35:58 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB35VomV006443; Mon, 2 Dec 2002 21:31:50 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB35VoUv006442; Mon, 2 Dec 2002 21:31:50 -0800 (PST) Message-Id: <200212030531.gB35VoUv006442@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 2 Dec 2002 21:31:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/fmio Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/02 21:31:50 PST Modified files: audio/fmio Makefile Log: ONLY_FOR_ARCHS=i386 Revision Changes Path 1.11 +1 -1 ports/audio/fmio/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 21:37:40 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96CED37B401; Mon, 2 Dec 2002 21:37:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4700B43EBE; Mon, 2 Dec 2002 21:37:39 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB35XVmV006517; Mon, 2 Dec 2002 21:33:31 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB35XVZ8006516; Mon, 2 Dec 2002 21:33:31 -0800 (PST) Message-Id: <200212030533.gB35XVZ8006516@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 2 Dec 2002 21:33:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/ac3dec Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/02 21:33:31 PST Modified files: audio/ac3dec Makefile Log: ONLY_FOR_ARCHS=i386 alpha Revision Changes Path 1.5 +1 -0 ports/audio/ac3dec/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 21:45:19 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAAFF37B401; Mon, 2 Dec 2002 21:45:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A174D43EAF; Mon, 2 Dec 2002 21:45:17 -0800 (PST) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB35f9mV007219; Mon, 2 Dec 2002 21:41:09 -0800 (PST) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB35f9E0007218; Mon, 2 Dec 2002 21:41:09 -0800 (PST) Message-Id: <200212030541.gB35f9E0007218@repoman.freebsd.org> From: Scott Long Date: Mon, 2 Dec 2002 21:41:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/adduser Makefile adduser.8 adduser.perl adduser.sh rmuser.8 rmuser.perl rmuser.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG scottl 2002/12/02 21:41:09 PST Modified files: usr.sbin/adduser Makefile adduser.8 rmuser.8 Added files: usr.sbin/adduser adduser.sh rmuser.sh Removed files: usr.sbin/adduser adduser.perl rmuser.perl Log: Replace the perl versions of adduser and rmuser with shell script versions. Submitted by: Mike Makonnen Approved by: re Revision Changes Path 1.18 +1 -1 src/usr.sbin/adduser/Makefile 1.45 +217 -103 src/usr.sbin/adduser/adduser.8 1.60 +0 -1558 src/usr.sbin/adduser/adduser.perl (dead) 1.3 +874 -0 src/usr.sbin/adduser/adduser.sh (new) 1.17 +41 -28 src/usr.sbin/adduser/rmuser.8 1.25 +0 -601 src/usr.sbin/adduser/rmuser.perl (dead) 1.1 +325 -0 src/usr.sbin/adduser/rmuser.sh (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 21:46:38 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DFB337B401; Mon, 2 Dec 2002 21:46:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3C9A43E4A; Mon, 2 Dec 2002 21:46:36 -0800 (PST) (envelope-from gad@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB35gSmV007280; Mon, 2 Dec 2002 21:42:28 -0800 (PST) (envelope-from gad@repoman.freebsd.org) Received: (from gad@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB35gSsh007279; Mon, 2 Dec 2002 21:42:28 -0800 (PST) Message-Id: <200212030542.gB35gSsh007279@repoman.freebsd.org> From: Garance A Drosehn Date: Mon, 2 Dec 2002 21:42:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/diff util.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gad 2002/12/02 21:42:28 PST Modified files: (Branch: RELENG_4) contrib/diff util.c Log: MFC 1.5: Add back the "\ No newline at end of file" marker printed when comparing two files, if only one of them is missing the final newline character. This returns 'diff' to how it behaved before July 2000 (which is okay now that we updated 'patch' to understand that line). Revision Changes Path 1.2.6.3 +2 -2 src/contrib/diff/util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 21:53:55 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1377537B401; Mon, 2 Dec 2002 21:53:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B793743EAF; Mon, 2 Dec 2002 21:53:54 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB35nkmV007784; Mon, 2 Dec 2002 21:49:46 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB35nk77007783; Mon, 2 Dec 2002 21:49:46 -0800 (PST) Message-Id: <200212030549.gB35nk77007783@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 2 Dec 2002 21:49:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/db2/files patch-ad X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/02 21:49:46 PST Added files: databases/db2/files patch-ad Log: Use -fPIC instead of -fpic to fix build on sparc64 Revision Changes Path 1.1 +11 -0 ports/databases/db2/files/patch-ad (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 22: 2:13 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC1DB37B401; Mon, 2 Dec 2002 22:02:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5933243EB2; Mon, 2 Dec 2002 22:02:12 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB35w4mV008342; Mon, 2 Dec 2002 21:58:04 -0800 (PST) (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB35w4PC008341; Mon, 2 Dec 2002 21:58:04 -0800 (PST) Message-Id: <200212030558.gB35w4PC008341@repoman.freebsd.org> From: Jun Kuriyama Date: Mon, 2 Dec 2002 21:58:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/cvsup README X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/12/02 21:58:04 PST Modified files: (Branch: RELENG_4) share/examples/cvsup README Log: "standard-supfile" is tracking "this branch", not -current. Found by: max Revision Changes Path 1.15.2.5 +3 -1 src/share/examples/cvsup/README To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 22:14:11 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DC4D37B401; Mon, 2 Dec 2002 22:14:10 -0800 (PST) Received: from smtp02.iprimus.net.au (smtp02.iprimus.net.au [210.50.76.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id F310A43E4A; Mon, 2 Dec 2002 22:14:08 -0800 (PST) (envelope-from tim@robbins.dropbear.id.au) Received: from dilbert.robbins.dropbear.id.au ([210.50.202.189]) by smtp02.iprimus.net.au with Microsoft SMTPSVC(5.0.2195.5600); Tue, 3 Dec 2002 17:13:56 +1100 Received: from dilbert.robbins.dropbear.id.au (n8ac74l0m9lgxlg3@localhost [127.0.0.1]) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6) with ESMTP id gB36DjWo070564; Tue, 3 Dec 2002 17:13:46 +1100 (EST) (envelope-from tim@dilbert.robbins.dropbear.id.au) Received: (from tim@localhost) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6/Submit) id gB36DgnM070563; Tue, 3 Dec 2002 17:13:42 +1100 (EST) (envelope-from tim) Date: Tue, 3 Dec 2002 17:13:41 +1100 From: Tim Robbins Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, Mike Makonnen Subject: Re: cvs commit: src/usr.sbin/adduser Makefile adduser.8 adduser.perl adduser.sh rmuser.8 rmuser.perl rmuser.sh Message-ID: <20021203171341.A69835@dilbert.robbins.dropbear.id.au> References: <200212030541.gB35f9E0007218@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200212030541.gB35f9E0007218@repoman.freebsd.org>; from scottl@FreeBSD.ORG on Mon, Dec 02, 2002 at 09:41:09PM -0800 X-OriginalArrivalTime: 03 Dec 2002 06:13:57.0265 (UTC) FILETIME=[29D77010:01C29A93] Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Dec 02, 2002 at 09:41:09PM -0800, Scott Long wrote: > scottl 2002/12/02 21:41:09 PST > > Modified files: > usr.sbin/adduser Makefile adduser.8 rmuser.8 > Added files: > usr.sbin/adduser adduser.sh rmuser.sh > Removed files: > usr.sbin/adduser adduser.perl rmuser.perl > Log: > Replace the perl versions of adduser and rmuser with shell script versions. I think this loop is unsafe, mainly because it does not escape "$_file" adequately, and could be tricked by filenames beginning with a dash (-) or containing IFS characters. filecount=0 _ownedfiles=`find 2>/dev/null $_dir -maxdepth 1 -user $login -print` for _file in $_ownedfiles ; do rm -fd $_file filecount=`expr $filecount + 1` done echo " $filecount removed." Consider using find ... -delete instead filecount=`find "$_dir" -user "$login" -delete -print | wc -l` I'm also not sure what the point of -maxdepth 1 is. I think find(1) is smart enough not to get stuck in symlink loops. Thanks for writing the replacement scripts, though. Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 22:29:51 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81BC337B401; Mon, 2 Dec 2002 22:29:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C79E43EB2; Mon, 2 Dec 2002 22:29:50 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB36PgmV009813; Mon, 2 Dec 2002 22:25:42 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB36PfNT009812; Mon, 2 Dec 2002 22:25:41 -0800 (PST) Message-Id: <200212030625.gB36PfNT009812@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 2 Dec 2002 22:25:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/okphone/files patch-af patch-ag patch-ah X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/12/02 22:25:41 PST Added files: japanese/okphone/files patch-af patch-ag patch-ah Log: Partially fix build on -current (remove bogus duplicate declarations and #include ). Revision Changes Path 1.1 +12 -0 ports/japanese/okphone/files/patch-af (new) 1.1 +21 -0 ports/japanese/okphone/files/patch-ag (new) 1.1 +16 -0 ports/japanese/okphone/files/patch-ah (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 22:32: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6332B37B401; Mon, 2 Dec 2002 22:31:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D6B943EBE; Mon, 2 Dec 2002 22:31:59 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB36RomV010179; Mon, 2 Dec 2002 22:27:50 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB36Rola010178; Mon, 2 Dec 2002 22:27:50 -0800 (PST) Message-Id: <200212030627.gB36Rola010178@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 2 Dec 2002 22:27:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/linux_base Makefile distinfo.alpha distinfo.i386 pkg-plist.i386 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcel 2002/12/02 22:27:50 PST Modified files: emulators/linux_base Makefile distinfo.alpha distinfo.i386 pkg-plist.i386 Log: Fix both alpha and i386. The major change is that glibc has been updated. Reviewed by: kris Revision Changes Path 1.69 +7 -8 ports/emulators/linux_base/Makefile 1.8 +2 -3 ports/emulators/linux_base/distinfo.alpha 1.6 +4 -5 ports/emulators/linux_base/distinfo.i386 1.10 +0 -2 ports/emulators/linux_base/pkg-plist.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 22:50: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4923B37B401; Mon, 2 Dec 2002 22:50:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBA1843ECD; Mon, 2 Dec 2002 22:50:04 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB36jumV011149; Mon, 2 Dec 2002 22:45:56 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB36juok011148; Mon, 2 Dec 2002 22:45:56 -0800 (PST) Message-Id: <200212030645.gB36juok011148@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 2 Dec 2002 22:45:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/linux_base Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcel 2002/12/02 22:45:56 PST Modified files: emulators/linux_base Makefile Log: The previous commit deserved a revision bump. Acknowledged by: kris Revision Changes Path 1.70 +1 -1 ports/emulators/linux_base/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 2 23:19:31 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52ED337B401; Mon, 2 Dec 2002 23:19:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB9E943E88; Mon, 2 Dec 2002 23:19:29 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB37FLmV012896; Mon, 2 Dec 2002 23:15:21 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB37FLWk012895; Mon, 2 Dec 2002 23:15:21 -0800 (PST) Message-Id: <200212030715.gB37FLWk012895@repoman.freebsd.org> From: Ying-Chieh Liao Date: Mon, 2 Dec 2002 23:15:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/rascal Makefile distinfo pkg-plist ports/math/rascal/files patch-Makefile patch-hoc.y patch-rascal.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/12/02 23:15:21 PST Modified files: math/rascal Makefile distinfo pkg-plist math/rascal/files patch-Makefile patch-hoc.y Added files: math/rascal/files patch-rascal.1 Log: fix build on -current by upgrading to 0.3.2 Revision Changes Path 1.19 +19 -11 ports/math/rascal/Makefile 1.15 +1 -1 ports/math/rascal/distinfo 1.5 +14 -6 ports/math/rascal/files/patch-Makefile 1.2 +22 -28 ports/math/rascal/files/patch-hoc.y 1.1 +70 -0 ports/math/rascal/files/patch-rascal.1 (new) 1.6 +2 -2 ports/math/rascal/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 0:17:50 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70C7737B406 for ; Tue, 3 Dec 2002 00:17:47 -0800 (PST) Received: from mail.identd.net (matrix.identd.net [64.172.21.201]) by mx1.FreeBSD.org (Postfix) with SMTP id 3028443ECF for ; Tue, 3 Dec 2002 00:17:46 -0800 (PST) (envelope-from mtm@identd.net) Received: (qmail 69278 invoked by uid 1007); 3 Dec 2002 08:17:45 -0000 Date: Tue, 3 Dec 2002 00:17:45 -0800 From: Mike Makonnen To: Tim Robbins Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/adduser Makefile adduser.8 adduser.perl adduser.sh rmuser.8 rmuser.perl rmuser.sh Message-ID: <20021203081745.GA67653@matrix.identd.net> References: <200212030541.gB35f9E0007218@repoman.freebsd.org> <20021203171341.A69835@dilbert.robbins.dropbear.id.au> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="i0/AhcQY5QxfSsSZ" Content-Disposition: inline In-Reply-To: <20021203171341.A69835@dilbert.robbins.dropbear.id.au> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD/4.7-STABLE (i386) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --i0/AhcQY5QxfSsSZ Content-Type: multipart/mixed; boundary="NzB8fVQJ5HfG6fxh" Content-Disposition: inline --NzB8fVQJ5HfG6fxh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 03, 2002 at 05:13:41PM +1100, Tim Robbins wrote: > containing IFS characters. > filecount=3D0 > _ownedfiles=3D`find 2>/dev/null $_dir -maxdepth 1 -user $login -print` > for _file in $_ownedfiles ; do > rm -fd $_file > filecount=3D`expr $filecount + 1` > done > echo " $filecount removed." >=20 > Consider using find ... -delete instead > filecount=3D`find "$_dir" -user "$login" -delete -print | wc -l` Good catch. I've fixed it (attached diff). Thanks. >=20 > I'm also not sure what the point of -maxdepth 1 is. I think find(1) is sm= art > enough not to get stuck in symlink loops. I'm not sure myself, either (I wrote it almost 1 year ago). But, I think it was to treat subdirectories individually. Fixed that too. >=20 > Thanks for writing the replacement scripts, though. You're welcome. Cheers. --=20 Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc mtm@identd.net | Fingerprint: D228 1A6F C64E 120A A1C9 A3AA DAE1 E2AF DBCC= 68B9 --NzB8fVQJ5HfG6fxh Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="rmuser.patch" Content-Transfer-Encoding: quoted-printable Index: usr.sbin/adduser/rmuser.sh =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/usr.sbin/adduser/rmuser.sh,v retrieving revision 1.1 diff -u -r1.1 rmuser.sh --- usr.sbin/adduser/rmuser.sh 2002/12/03 05:41:09 1.1 +++ usr.sbin/adduser/rmuser.sh 2002/12/03 08:13:13 @@ -33,7 +33,7 @@ CRONJOBDIR=3D"/var/cron/tabs" MAILSPOOL=3D"/var/mail" SIGKILL=3D"-KILL" -TEMPDIRS=3D"/tmp /var/tmp /var/tmp/vi.recover" +TEMPDIRS=3D"/tmp /var/tmp" THISCMD=3D`/usr/bin/basename $0` =20 # err msg @@ -57,12 +57,8 @@ continue fi echo -n "Removing files owned by ($login) in $_dir:" - filecount=3D0 - _ownedfiles=3D`find 2>/dev/null $_dir -maxdepth 1 -user $login -print` - for _file in $_ownedfiles ; do - rm -fd $_file - filecount=3D`expr $filecount + 1` - done + filecount=3D`find 2>/dev/null "$_dir" -user "$login" -delete -print | \ + wc -l | sed 's/ *//'` echo " $filecount removed." done } --NzB8fVQJ5HfG6fxh-- --i0/AhcQY5QxfSsSZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE97Gio2uHir9vMaLkRAo7cAJ4j491HL1juofrxZyW0iQS2uGDzAwCgtNej O1pslTOeJSCWD4RKub32dLU= =ZxQ5 -----END PGP SIGNATURE----- --i0/AhcQY5QxfSsSZ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 0:38:31 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B2B937B401; Tue, 3 Dec 2002 00:38:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1C2443EB2; Tue, 3 Dec 2002 00:38:29 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB38YLmV017767; Tue, 3 Dec 2002 00:34:21 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB38YLFX017766; Tue, 3 Dec 2002 00:34:21 -0800 (PST) Message-Id: <200212030834.gB38YLFX017766@repoman.freebsd.org> From: Warner Losh Date: Tue, 3 Dec 2002 00:34:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pci pci_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/12/03 00:34:21 PST Modified files: sys/dev/pci pci_pci.c Log: Properly account for prefetchable memory when a request is being made. We allow the request to go through if it matches either a prefetchable or a non-prefetchable part of the bridge. We do not check to make sure it is the right kind of memory because most drivers to not yet properly set RF_PREFETCHABLE (only cardbus seems to do so, and I'm not entirely sure it does it right). RF_PREFETCHABLE was invented for cardbus, so hasn't been properly documented yet. This is still overridable by hw.pci.allow_unsupported_io_ranges, but the need for that is greatly reduced, especially for the nvida driver. Approved by: re Reviewed by: jhb and many testers Submitted by: Matt Emmerton (although this has been reworked somewhat) Revision Changes Path 1.22 +112 -47 src/sys/dev/pci/pci_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 0:43:17 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 589F537B401; Tue, 3 Dec 2002 00:43:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06C1643EA9; Tue, 3 Dec 2002 00:43:16 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB38d7mV018286; Tue, 3 Dec 2002 00:39:07 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB38d7bJ018285; Tue, 3 Dec 2002 00:39:07 -0800 (PST) Message-Id: <200212030839.gB38d7bJ018285@repoman.freebsd.org> From: "David E. O'Brien" Date: Tue, 3 Dec 2002 00:39:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/urlview Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/03 00:39:07 PST Modified files: textproc/urlview Makefile Log: Fix make fetch. Revision Changes Path 1.17 +3 -6 ports/textproc/urlview/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 1: 0:20 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DB3C37B404; Tue, 3 Dec 2002 01:00:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C85B243ECD; Tue, 3 Dec 2002 01:00:18 -0800 (PST) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB38uAmV019127; Tue, 3 Dec 2002 00:56:10 -0800 (PST) (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB38u97q019126; Tue, 3 Dec 2002 00:56:10 -0800 (PST) Message-Id: <200212030856.gB38u97q019126@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 3 Dec 2002 00:56:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/irssi Makefile ports/chinese/irssi/files patch-irssi.conf patch-src::fe-text::gui-entry.c patch-src::fe-text::gui-entry.h patch-src::fe-text::term-terminfo.c patch-src::fe-text::textbuffer-view.c patch-src::fe-text::utf8.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG vanilla 2002/12/03 00:56:09 PST Modified files: chinese/irssi Makefile chinese/irssi/files patch-irssi.conf patch-src::fe-text::gui-entry.c patch-src::fe-text::gui-entry.h patch-src::fe-text::term-terminfo.c patch-src::fe-text::textbuffer-view.c patch-src::fe-text::utf8.h Log: Fix BROKEN. PR: ports/45912 Submitted by: Michael Hsin Revision Changes Path 1.10 +0 -2 ports/chinese/irssi/Makefile 1.3 +62 -12 ports/chinese/irssi/files/patch-irssi.conf 1.4 +7 -7 ports/chinese/irssi/files/patch-src::fe-text::gui-entry.c 1.2 +2 -2 ports/chinese/irssi/files/patch-src::fe-text::gui-entry.h 1.2 +3 -3 ports/chinese/irssi/files/patch-src::fe-text::term-terminfo.c 1.2 +29 -39 ports/chinese/irssi/files/patch-src::fe-text::textbuffer-view.c 1.2 +6 -4 ports/chinese/irssi/files/patch-src::fe-text::utf8.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 2: 4:45 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B17C37B401; Tue, 3 Dec 2002 02:04:44 -0800 (PST) Received: from MX1.estpak.ee (ld1.estpak.ee [194.126.101.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 574D943E4A; Tue, 3 Dec 2002 02:04:43 -0800 (PST) (envelope-from kalts@estpak.ee) Received: from tiiu.internal (80-235-35-100-dsl.mus.estpak.ee [80.235.35.100]) by MX1.estpak.ee (Postfix) with ESMTP id A01C888869; Tue, 3 Dec 2002 12:03:44 +0200 (EET) Received: from tiiu.internal (localhost [127.0.0.1]) by tiiu.internal (8.12.6/8.12.6) with ESMTP id gB3A4fx3001787; Tue, 3 Dec 2002 12:04:41 +0200 (EET) (envelope-from vallo@tiiu.internal) Received: (from vallo@localhost) by tiiu.internal (8.12.6/8.12.6/Submit) id gB3A4f4q001786; Tue, 3 Dec 2002 12:04:41 +0200 (EET) (envelope-from vallo) Date: Tue, 3 Dec 2002 12:04:40 +0200 From: Vallo Kallaste To: Greg Lehey Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/vinum vinumioctl.c Message-ID: <20021203100440.GA1652@tiiu.internal> Reply-To: kalts@estpak.ee References: <200212022356.gB2NuxcG084487@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200212022356.gB2NuxcG084487@repoman.freebsd.org> User-Agent: Mutt/1.5.1i-ja.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Dec 02, 2002 at 03:56:59PM -0800, Greg Lehey wrote: > grog 2002/12/02 15:56:59 PST > > Modified files: > sys/dev/vinum vinumioctl.c > Log: > Implement DIOCGDINFO for volumes. newfs will no longer build a file > system on a volume without a disk label. > > Approved by: re (rwatson) It's the reverse currently as I understand. The vinum(8) states that "vinum label somevolume" is deprecated and not needed for newfs(8). The man page needs to be fixed. If I'm mistaken please ignore me. -- Vallo Kallaste kalts@estpak.ee To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 2:32:59 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 271F737B401; Tue, 3 Dec 2002 02:32:58 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4955643E88; Tue, 3 Dec 2002 02:32:57 -0800 (PST) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.6/8.12.6) with ESMTP id gB3AWlfN092540; Tue, 3 Dec 2002 11:32:47 +0100 (CET) (envelope-from phk@critter.freebsd.dk) To: kalts@estpak.ee Cc: Greg Lehey , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/vinum vinumioctl.c In-Reply-To: Your message of "Tue, 03 Dec 2002 12:04:40 +0200." <20021203100440.GA1652@tiiu.internal> Date: Tue, 03 Dec 2002 11:32:47 +0100 Message-ID: <92539.1038911567@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20021203100440.GA1652@tiiu.internal>, Vallo Kallaste writes: >On Mon, Dec 02, 2002 at 03:56:59PM -0800, Greg Lehey > wrote: > >> grog 2002/12/02 15:56:59 PST >> >> Modified files: >> sys/dev/vinum vinumioctl.c >> Log: >> Implement DIOCGDINFO for volumes. newfs will no longer build a file >> system on a volume without a disk label. >> >> Approved by: re (rwatson) > >It's the reverse currently as I understand. The vinum(8) states that >"vinum label somevolume" is deprecated and not needed for newfs(8). >The man page needs to be fixed. If I'm mistaken please ignore me. My guess on this trouble is that vinum kludges up the answers to the DIOCGMEDIASIZE and DIOCGSECTORSIZE ioctls from the BSD label, and fails if there isn't one. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 2:41: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBAD237B401; Tue, 3 Dec 2002 02:41:07 -0800 (PST) Received: from kurush.osdn.org.ua (external.osdn.org.ua [212.40.34.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA2C243E88; Tue, 3 Dec 2002 02:40:54 -0800 (PST) (envelope-from never@kurush.osdn.org.ua) Received: from kurush.osdn.org.ua (never@localhost [127.0.0.1]) by kurush.osdn.org.ua (8.12.6/8.12.6) with ESMTP id gB3AenTP047767; Tue, 3 Dec 2002 12:40:49 +0200 (EET) (envelope-from never@kurush.osdn.org.ua) Received: (from never@localhost) by kurush.osdn.org.ua (8.12.6/8.12.6/Submit) id gB3Aenke047762; Tue, 3 Dec 2002 12:40:49 +0200 (EET) Date: Tue, 3 Dec 2002 12:40:49 +0200 From: Alexandr Kovalenko To: Julian Elischer Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/conf newvers.sh src/lib/libc/net getaddrinfo.c gethostbydns.c getnetbydns.c name6.c res_mkquery.c Message-ID: <20021203104048.GA47311@nevermind.kiev.ua> References: <200211222156.gAMLu7G1087129@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200211222156.gAMLu7G1087129@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Julian Elischer! On Fri, Nov 22, 2002 at 01:56:07PM -0800, you wrote: > julian 2002/11/22 13:56:07 PST > > Modified files: (Branch: RELENG_4_4) > sys/conf newvers.sh > lib/libc/net getaddrinfo.c gethostbydns.c > getnetbydns.c name6.c res_mkquery.c > Log: > Commit SA-02:42 to the 4.4 branch > bump the release number to p31 so we can tell if it's been done or not. Please, do not forget updating UPDATING :) -- NEVE-RIPE, will build world for food Ukrainian FreeBSD User Group http://uafug.org.ua/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 3:29:32 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7AE537B401; Tue, 3 Dec 2002 03:29:30 -0800 (PST) Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id F21AA43E9C; Tue, 3 Dec 2002 03:29:29 -0800 (PST) (envelope-from mark@grondar.org) Received: from storm.FreeBSD.org.uk (uucp@localhost [127.0.0.1]) by storm.FreeBSD.org.uk (8.12.6/8.12.6) with ESMTP id gB3BTS8M027896; Tue, 3 Dec 2002 11:29:28 GMT (envelope-from mark@grondar.org) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.12.6/8.12.6/Submit) with UUCP id gB3BTS0S027895; Tue, 3 Dec 2002 11:29:28 GMT Received: from grondar.org (localhost [127.0.0.1]) by grimreaper.grondar.org (8.12.6/8.12.6) with ESMTP id gB3BQSP3003391; Tue, 3 Dec 2002 11:26:28 GMT (envelope-from mark@grondar.org) Message-Id: <200212031126.gB3BQSP3003391@grimreaper.grondar.org> To: Scott Long Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/adduser Makefile adduser.8 adduser.perl adduser.sh rmuser.8 rmuser.perl rmuser.sh In-Reply-To: Your message of "Mon, 02 Dec 2002 21:41:09 PST." <200212030541.gB35f9E0007218@repoman.freebsd.org> Date: Tue, 03 Dec 2002 11:26:28 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thank you very much! I was wondering when I'd get the time, and concluding "no time soon". I owe you and Mike beer! M > scottl 2002/12/02 21:41:09 PST > > Modified files: > usr.sbin/adduser Makefile adduser.8 rmuser.8 > Added files: > usr.sbin/adduser adduser.sh rmuser.sh > Removed files: > usr.sbin/adduser adduser.perl rmuser.perl > Log: > Replace the perl versions of adduser and rmuser with shell script versions. > > Submitted by: Mike Makonnen > Approved by: re > > Revision Changes Path > 1.18 +1 -1 src/usr.sbin/adduser/Makefile > 1.45 +217 -103 src/usr.sbin/adduser/adduser.8 > 1.60 +0 -1558 src/usr.sbin/adduser/adduser.perl (dead) > 1.3 +874 -0 src/usr.sbin/adduser/adduser.sh (new) > 1.17 +41 -28 src/usr.sbin/adduser/rmuser.8 > 1.25 +0 -601 src/usr.sbin/adduser/rmuser.perl (dead) > 1.1 +325 -0 src/usr.sbin/adduser/rmuser.sh (new) -- Mark Murray Beware! I'm umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 3:30: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3C6837B401; Tue, 3 Dec 2002 03:29:59 -0800 (PST) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8789043ECF; Tue, 3 Dec 2002 03:29:58 -0800 (PST) (envelope-from pfeifer@dbai.tuwien.ac.at) Received: from [128.130.111.28] (naos [128.130.111.28]) by vexpert.dbai.tuwien.ac.at (8.12.6/8.12.6) with ESMTP id gB3BTuHO023677; Tue, 3 Dec 2002 12:29:57 +0100 (CET) Date: Tue, 3 Dec 2002 12:29:55 +0100 (CET) From: Gerald Pfeifer To: Akinori MUSHA Cc: Mark Pulford , "" , "" Subject: ports/MOVED (was: cvs commit: CVSROOT modules ports/palm Makefile ports/palm/xcopilot Makefile distinfo pkg-comment pkg-descr pkg-plist ports/palm/xcopilot/files patch-aa patch-ab) In-Reply-To: <86n0nzm8d5.wl@archon.local.idaemons.org> Message-ID: References: <200211241246.gAOCkUNn067389@repoman.freebsd.org> <86n0nzm8d5.wl@archon.local.idaemons.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 24 Nov 2002, Akinori MUSHA wrote: > Add a ports/MOVED entry, please. (palm/xcopilot -> palm/pose) BTW, is ports/MOVED documented somewhere (for new developers,...)? The FreeBSD Porter's Handbook doesn't seem to mention it, but perhaps I missed something obvious? Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.pfeifer.com/gerald/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 5:19:51 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F132C37B401; Tue, 3 Dec 2002 05:19:48 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5293C43ECD; Tue, 3 Dec 2002 05:19:37 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id gB3DJKVX022306 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 3 Dec 2002 15:19:21 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id gB3DJK8W022301; Tue, 3 Dec 2002 15:19:20 +0200 (EET) Date: Tue, 3 Dec 2002 15:19:20 +0200 From: Ruslan Ermilov To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/cvs/cvs Makefile options.h src/gnu/usr.bin/cvs/lib config.h Message-ID: <20021203131920.GC18118@sunbay.com> References: <200212020320.gB23KPe8003631@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mJm6k4Vb/yFcL9ZU" Content-Disposition: inline In-Reply-To: <200212020320.gB23KPe8003631@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --mJm6k4Vb/yFcL9ZU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Dec 01, 2002 at 07:20:25PM -0800, Peter Wemm wrote: > peter 2002/12/01 19:20:25 PST >=20 > Modified files: > gnu/usr.bin/cvs/cvs Makefile=20 > gnu/usr.bin/cvs/lib config.h=20 > Removed files: > gnu/usr.bin/cvs/cvs options.h=20 > Log: > Update bmake glue after 1.11.2.1-20021201 import. options.h is no long= er > touched by configure in the autoconf system and a standard version is > now used. > =20 > Approved by: re > =20 > Revision Changes Path > 1.39 +1 -8 src/gnu/usr.bin/cvs/cvs/Makefile > 1.9 +0 -201 src/gnu/usr.bin/cvs/cvs/options.h (dead) > 1.12 +345 -219 src/gnu/usr.bin/cvs/lib/config.h >=20 %%% Index: config.h =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/gnu/usr.bin/cvs/lib/config.h,v retrieving revision 1.12 diff -u -r1.12 config.h --- config.h 2 Dec 2002 03:20:25 -0000 1.12 +++ config.h 3 Dec 2002 13:18:57 -0000 @@ -364,13 +364,13 @@ #define PACKAGE_NAME "Concurrent Versions System (CVS)" =20 /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "Concurrent Versions System (CVS) 1.11.2.1-20021024= -FreeBSD" +#define PACKAGE_STRING "Concurrent Versions System (CVS) 1.11.2.1-20021201= -FreeBSD" =20 /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "cvs" =20 /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.11.2.1-20021024-FreeBSD" +#define PACKAGE_VERSION "1.11.2.1-20021201-FreeBSD" =20 /* Path to the pr utility */ #define PR_PROGRAM "/usr/bin/pr" %%% Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --mJm6k4Vb/yFcL9ZU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE97K9YUkv4P6juNwoRApMpAJ4sjpY6WqhTMnGkuxU8ILaClD9VxQCfSbN2 TRfJviy6amFf632Z2UagJB8= =YN80 -----END PGP SIGNATURE----- --mJm6k4Vb/yFcL9ZU-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 6: 7:45 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 620FB37B401; Tue, 3 Dec 2002 06:07:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB42F43EA9; Tue, 3 Dec 2002 06:07:43 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3E3XmV037199; Tue, 3 Dec 2002 06:03:33 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3E3Xjw037198; Tue, 3 Dec 2002 06:03:33 -0800 (PST) Message-Id: <200212031403.gB3E3Xjw037198@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 06:03:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 06:03:33 PST Modified files: en/releases/5.0R todo.sgml Log: Update the perl->somethingelse task: Mike Makonnen has submitted adduser and rmuser scripts (committed by scottl), so we're now mostly done. All that remain are mmroff and afmtodit. Chown task to Mark Murray since he's a guilty-looking party. Thanks Mike, Scott. Revision Changes Path 1.67 +3 -4 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 6:27: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B70A37B401; Tue, 3 Dec 2002 06:27:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B8B643EC5; Tue, 3 Dec 2002 06:27:08 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3EMwmV040608; Tue, 3 Dec 2002 06:22:58 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3EMwRQ040607; Tue, 3 Dec 2002 06:22:58 -0800 (PST) Message-Id: <200212031422.gB3EMwRQ040607@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 06:22:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 06:22:58 PST Modified files: en/releases/5.0R todo.sgml Log: Chown the fdisk non-FreeBSD deletion task to jhb@/nyan@; change status to patches circulating. Unless I missed the commit of the patches, which is also possible. Update MAC Framework userland merge task: recursive file system labeling is now supported. A few other minor tweaks remain, if time happens. Update the mac_lomac task: it's pretty much complete, but we need to merge the sample policy file for src/share (commit request pending approval of re@) and commit the documentation. We also need to scrub the old LOMAC from the tree (currently not built). Commit request also pending on that. Add a task to make sysinstall know how to speak UFS2 for partition labeling and newfsing. I own the task; am currently circulating patches. Revision Changes Path 1.68 +17 -12 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 6:29:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9E1137B401; Tue, 3 Dec 2002 06:29:21 -0800 (PST) Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 623E943E88; Tue, 3 Dec 2002 06:29:20 -0800 (PST) (envelope-from sheldonh@starjuice.net) Received: from sheldonh by axl.seasidesoftware.co.za with local (Exim 4.10) id 18JE32-000DKW-00; Tue, 03 Dec 2002 16:29:16 +0200 Date: Tue, 3 Dec 2002 16:29:16 +0200 From: Sheldon Hearn To: Joe Marcus Clarke Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/mozilla Makefile [...] Message-ID: <20021203142916.GL44543@starjuice.net> Mail-Followup-To: Joe Marcus Clarke , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200211240024.gAO0O4Db010483@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200211240024.gAO0O4Db010483@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On (2002/11/23 16:24), Joe Marcus Clarke wrote: > Modified files: > www/mozilla Makefile > www/mozilla/files mozilla.sh > www/mozilla-devel Makefile > www/mozilla-devel/files mozilla.sh > www/mozilla-devel-gtk2 Makefile > www/mozilla-vendor Makefile > www/mozilla-vendor/files mozilla.sh > Log: > Make the Mozilla startup scripts a little smarter. Instead of launching a > new Mozilla instance each time, check to see if one already exists, and if > so, spawn a new browser tab in the current window. Cool. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 6:46:55 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDC9C37B401; Tue, 3 Dec 2002 06:46:53 -0800 (PST) Received: from milan.hitnet.rwth-aachen.de (milan.hitnet.RWTH-Aachen.DE [137.226.181.144]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6868043ED1; Tue, 3 Dec 2002 06:46:46 -0800 (PST) (envelope-from chris@unixpages.org) Received: from gondor.middleearth (gondor.middleearth [192.168.1.42]) by milan.hitnet.rwth-aachen.de (Postfix) with ESMTP id 52680A91E; Tue, 3 Dec 2002 15:46:45 +0100 (CET) Received: by gondor.middleearth (Postfix, from userid 1001) id B6676154D4; Tue, 3 Dec 2002 15:46:44 +0100 (CET) Date: Tue, 3 Dec 2002 15:46:44 +0100 From: Christian Brueffer To: Robert Watson Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: www/en/releases/5.0R todo.sgml Message-ID: <20021203144644.GC603@unixpages.org> References: <200212031422.gB3EMwRQ040607@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="m51xatjYGsM+13rf" Content-Disposition: inline In-Reply-To: <200212031422.gB3EMwRQ040607@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT X-PGP-Key: http://www.unixpages.org/cbrueffer.asc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --m51xatjYGsM+13rf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 03, 2002 at 06:22:58AM -0800, Robert Watson wrote: > rwatson 2002/12/03 06:22:58 PST >=20 > Modified files: > en/releases/5.0R todo.sgml=20 > Log: > Chown the fdisk non-FreeBSD deletion task to jhb@/nyan@; change > status to patches circulating. Unless I missed the commit of the > patches, which is also possible. > =20 > Update MAC Framework userland merge task: recursive file system > labeling is now supported. A few other minor tweaks remain, if > time happens. > =20 > Update the mac_lomac task: it's pretty much complete, but we need > to merge the sample policy file for src/share (commit request > pending approval of re@) and commit the documentation. We also > need to scrub the old LOMAC from the tree (currently not built). > Commit request also pending on that. > =20 > Add a task to make sysinstall know how to speak UFS2 for partition > labeling and newfsing. I own the task; am currently circulating > patches. > =20 > Revision Changes Path > 1.68 +17 -12 www/en/releases/5.0R/todo.sgml >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message >=20 >=20 Will there be a repo-copy of lomac.4 to mac_lomac.9 or something similar? - Christian --=20 http://www.unixpages.org chris@unixpages.org GPG Pub-Key : www.unixpages.org/cbrueffer.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D GPG Key ID : 0xA0ED982D --m51xatjYGsM+13rf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQE97MPUbHYXjKDtmC0RAmX4AJ91oCdX6Bwk5dtL20plfZISROqd2QCcCWR5 F/aSaJFWoysnOXmBwCom+gw= =D6PH -----END PGP SIGNATURE----- --m51xatjYGsM+13rf-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 6:57:20 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB64A37B401; Tue, 3 Dec 2002 06:57:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A30E43EBE; Tue, 3 Dec 2002 06:57:19 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3Er9mV050999; Tue, 3 Dec 2002 06:53:09 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3Er97E050998; Tue, 3 Dec 2002 06:53:09 -0800 (PST) Message-Id: <200212031453.gB3Er97E050998@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 3 Dec 2002 06:53:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/donations donors.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2002/12/03 06:53:09 PST Modified files: en/donations donors.sgml Log: obrien sent kris a KVM switch. Document it. Revision Changes Path 1.6 +8 -1 www/en/donations/donors.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 7: 2:37 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 601FD37B401; Tue, 3 Dec 2002 07:02:36 -0800 (PST) Received: from rhadamanth.submonkey.net (pc1-cdif2-5-cust47.cdf.cable.ntl.com [81.101.150.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CDE943E9C; Tue, 3 Dec 2002 07:02:35 -0800 (PST) (envelope-from setantae@submonkey.net) Received: from setantae by rhadamanth.submonkey.net with local (Exim 4.10) id 18JEZF-000FUv-00; Tue, 03 Dec 2002 15:02:33 +0000 Date: Tue, 3 Dec 2002 15:02:33 +0000 From: Ceri Davies To: Tom Rhodes Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/donations donors.sgml Message-ID: <20021203150233.GA59558@submonkey.net> Mail-Followup-To: Ceri Davies , Tom Rhodes , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200212031453.gB3Er97E050998@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200212031453.gB3Er97E050998@repoman.freebsd.org> X-message-flag: All your linuxconf-configured redhat are belong to us. X-message-flag-attribution: suresh, sdm. User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Dec 03, 2002 at 06:53:09AM -0800, Tom Rhodes wrote: > trhodes 2002/12/03 06:53:09 PST > > Modified files: > en/donations donors.sgml > Log: > obrien sent kris a KVM switch. Document it. Shouldn't these also be added to the contributors article ? Ceri -- For the hills of my elders! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 7: 9:44 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A03037B401; Tue, 3 Dec 2002 07:09:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04EE543EAF; Tue, 3 Dec 2002 07:09:43 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3F5WmV053827; Tue, 3 Dec 2002 07:05:32 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3F5WL2053826; Tue, 3 Dec 2002 07:05:32 -0800 (PST) Message-Id: <200212031505.gB3F5WL2053826@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 07:05:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include Makefile src/etc/mtree BSD.include.dist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 07:05:32 PST Modified files: include Makefile etc/mtree BSD.include.dist Log: Don't install old LOMAC include files; do install new mac_lomac include files. Approved by: re (jhb) Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.63 +2 -2 src/etc/mtree/BSD.include.dist 1.191 +1 -1 src/include/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 7:10:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DF0437B401; Tue, 3 Dec 2002 07:10:21 -0800 (PST) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id C53C043E9C; Tue, 3 Dec 2002 07:10:20 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from moble.pittgoth.com ([192.168.0.5]) by pittgoth.com (8.12.6/8.12.6) with SMTP id gB3FAJ4p023229; Tue, 3 Dec 2002 10:10:20 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Tue, 3 Dec 2002 10:10:49 -0500 From: Tom Rhodes To: Ceri Davies Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/donations donors.sgml Message-Id: <20021203101049.10ee1661.trhodes@FreeBSD.org> In-Reply-To: <20021203150233.GA59558@submonkey.net> References: <200212031453.gB3Er97E050998@repoman.freebsd.org> <20021203150233.GA59558@submonkey.net> X-Mailer: Sylpheed version 0.8.6claws (GTK+ 1.2.10; i386-portbld-freebsd4.7) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 3 Dec 2002 15:02:33 +0000 Ceri Davies wrote: > On Tue, Dec 03, 2002 at 06:53:09AM -0800, Tom Rhodes wrote: > > trhodes 2002/12/03 06:53:09 PST > > > > Modified files: > > en/donations donors.sgml > > Log: > > obrien sent kris a KVM switch. Document it. > > Shouldn't these also be added to the contributors article ? > > Ceri > -- > For the hills of my elders! > I think that area of the contributers article (hardware) is going to be dissolved and a link pointing to this page added. To keep track of all the donations from users, developers, and companies will expand this article too much, IMO. Otherwise, this is just an opinion and has yet to be discussed. -- Tom Rhodes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 7:14:11 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FCDA37B401; Tue, 3 Dec 2002 07:14:10 -0800 (PST) Received: from rhadamanth.submonkey.net (pc1-cdif2-5-cust47.cdf.cable.ntl.com [81.101.150.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A8A443ECF; Tue, 3 Dec 2002 07:14:09 -0800 (PST) (envelope-from setantae@submonkey.net) Received: from setantae by rhadamanth.submonkey.net with local (Exim 4.10) id 18JEkS-000FX9-00; Tue, 03 Dec 2002 15:14:08 +0000 Date: Tue, 3 Dec 2002 15:14:08 +0000 From: Ceri Davies To: Tom Rhodes Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/donations donors.sgml Message-ID: <20021203151408.GA59690@submonkey.net> Mail-Followup-To: Ceri Davies , Tom Rhodes , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200212031453.gB3Er97E050998@repoman.freebsd.org> <20021203150233.GA59558@submonkey.net> <20021203101049.10ee1661.trhodes@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021203101049.10ee1661.trhodes@FreeBSD.org> X-message-flag: All your linuxconf-configured redhat are belong to us. X-message-flag-attribution: suresh, sdm. User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Dec 03, 2002 at 10:10:49AM -0500, Tom Rhodes wrote: > On Tue, 3 Dec 2002 15:02:33 +0000 > Ceri Davies wrote: > > > On Tue, Dec 03, 2002 at 06:53:09AM -0800, Tom Rhodes wrote: > > > trhodes 2002/12/03 06:53:09 PST > > > > > > Modified files: > > > en/donations donors.sgml > > > Log: > > > obrien sent kris a KVM switch. Document it. > > > > Shouldn't these also be added to the contributors article ? > > I think that area of the contributers article (hardware) is going > to be dissolved and a link pointing to this page added. To keep track > of all the donations from users, developers, and companies will > expand this article too much, IMO. That's the answer I was hoping for. Thanks. Ceri -- The legions of a 250 pound woman have come! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 7:16:45 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 527BE37B401; Tue, 3 Dec 2002 07:16:44 -0800 (PST) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C9E943EA9; Tue, 3 Dec 2002 07:16:43 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from moble.pittgoth.com ([192.168.0.5]) by pittgoth.com (8.12.6/8.12.6) with SMTP id gB3FGg4p023259; Tue, 3 Dec 2002 10:16:42 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Tue, 3 Dec 2002 10:17:12 -0500 From: Tom Rhodes To: Ceri Davies Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/donations donors.sgml Message-Id: <20021203101712.32d313a3.trhodes@FreeBSD.org> In-Reply-To: <20021203151408.GA59690@submonkey.net> References: <200212031453.gB3Er97E050998@repoman.freebsd.org> <20021203150233.GA59558@submonkey.net> <20021203101049.10ee1661.trhodes@FreeBSD.org> <20021203151408.GA59690@submonkey.net> X-Mailer: Sylpheed version 0.8.6claws (GTK+ 1.2.10; i386-portbld-freebsd4.7) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 3 Dec 2002 15:14:08 +0000 Ceri Davies wrote: > On Tue, Dec 03, 2002 at 10:10:49AM -0500, Tom Rhodes wrote: > > On Tue, 3 Dec 2002 15:02:33 +0000 > > Ceri Davies wrote: > > > > > On Tue, Dec 03, 2002 at 06:53:09AM -0800, Tom Rhodes wrote: > > > > trhodes 2002/12/03 06:53:09 PST > > > > > > > > Modified files: > > > > en/donations donors.sgml > > > > Log: > > > > obrien sent kris a KVM switch. Document it. > > > > > > Shouldn't these also be added to the contributors article ? > > > > I think that area of the contributers article (hardware) is going > > to be dissolved and a link pointing to this page added. To keep > > track of all the donations from users, developers, and companies > > will expand this article too much, IMO. > > That's the answer I was hoping for. Thanks. > Never a problem. I think we both agree that its useless to keep 2 areas of the same documentation. And it can be maintained a little bit better if we keep it around the donations team directory. Its on my list of things to do. -- Tom Rhodes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 7:16:52 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5936C37B426; Tue, 3 Dec 2002 07:16:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F333343EA9; Tue, 3 Dec 2002 07:16:46 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3FCamV054518; Tue, 3 Dec 2002 07:12:36 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3FCanq054517; Tue, 3 Dec 2002 07:12:36 -0800 (PST) Message-Id: <200212031512.gB3FCanq054517@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 07:12:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules Makefile src/sys/modules/lomac Makefile Makefile.inc src/sys/modules/lomac/plm Makefile src/sys/modules/lomac/syscall_gate Makefile src/sys/security/lomac kernel_interface.c kernel_interface.h kernel_lkm.c kernel_log.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 07:12:36 PST Modified files: sys/modules Makefile Removed files: sys/modules/lomac Makefile Makefile.inc sys/modules/lomac/plm Makefile sys/modules/lomac/syscall_gate Makefile sys/security/lomac kernel_interface.c kernel_interface.h kernel_lkm.c kernel_log.c kernel_log.h kernel_mediate.c kernel_mediate.h kernel_mmap.c kernel_monitor.c kernel_monitor.h kernel_pipe.c kernel_pipe.h kernel_plm.c kernel_plm.h kernel_socket.c kernel_socket.h kernel_util.c kernel_util.h lomac.h lomacfs.h lomacfs_subr.c lomacfs_vfsops.c lomacfs_vnops.c lomacio.h policy_plm.h syscall_gate.c syscall_gate.h Log: Unhook the old LOMAC module, now replaced with mac_lomac. Approved by: re (jhb) Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.290 +0 -2 src/sys/modules/Makefile 1.5 +0 -41 src/sys/modules/lomac/Makefile (dead) 1.3 +0 -3 src/sys/modules/lomac/Makefile.inc (dead) 1.6 +0 -14 src/sys/modules/lomac/plm/Makefile (dead) 1.5 +0 -13 src/sys/modules/lomac/syscall_gate/Makefile (dead) 1.6 +0 -506 src/sys/security/lomac/kernel_interface.c (dead) 1.3 +0 -101 src/sys/security/lomac/kernel_interface.h (dead) 1.4 +0 -286 src/sys/security/lomac/kernel_lkm.c (dead) 1.5 +0 -206 src/sys/security/lomac/kernel_log.c (dead) 1.3 +0 -77 src/sys/security/lomac/kernel_log.h (dead) 1.3 +0 -289 src/sys/security/lomac/kernel_mediate.c (dead) 1.3 +0 -68 src/sys/security/lomac/kernel_mediate.h (dead) 1.7 +0 -591 src/sys/security/lomac/kernel_mmap.c (dead) 1.3 +0 -206 src/sys/security/lomac/kernel_monitor.c (dead) 1.3 +0 -62 src/sys/security/lomac/kernel_monitor.h (dead) 1.3 +0 -241 src/sys/security/lomac/kernel_pipe.c (dead) 1.3 +0 -44 src/sys/security/lomac/kernel_pipe.h (dead) 1.3 +0 -382 src/sys/security/lomac/kernel_plm.c (dead) 1.3 +0 -45 src/sys/security/lomac/kernel_plm.h (dead) 1.10 +0 -813 src/sys/security/lomac/kernel_socket.c (dead) 1.3 +0 -45 src/sys/security/lomac/kernel_socket.h (dead) 1.9 +0 -696 src/sys/security/lomac/kernel_util.c (dead) 1.3 +0 -64 src/sys/security/lomac/kernel_util.h (dead) 1.3 +0 -114 src/sys/security/lomac/lomac.h (dead) 1.3 +0 -115 src/sys/security/lomac/lomacfs.h (dead) 1.5 +0 -127 src/sys/security/lomac/lomacfs_subr.c (dead) 1.4 +0 -199 src/sys/security/lomac/lomacfs_vfsops.c (dead) 1.10 +0 -1151 src/sys/security/lomac/lomacfs_vnops.c (dead) 1.3 +0 -59 src/sys/security/lomac/lomacio.h (dead) 1.3 +0 -119 src/sys/security/lomac/policy_plm.h (dead) 1.3 +0 -125 src/sys/security/lomac/syscall_gate.c (dead) 1.3 +0 -56 src/sys/security/lomac/syscall_gate.h (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 7:20:21 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB63237B401; Tue, 3 Dec 2002 07:20:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8840743EA9; Tue, 3 Dec 2002 07:20:20 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3FGAmV054803; Tue, 3 Dec 2002 07:16:10 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3FGAFm054801; Tue, 3 Dec 2002 07:16:10 -0800 (PST) Message-Id: <200212031516.gB3FGAFm054801@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 07:16:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/security lomac-policy.contexts X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 07:16:10 PST Added files: share/security lomac-policy.contexts Log: Hook up a sample LOMAC labeling policy. Unlike the old LOMAC module, the file system initial labeling policy exists in userland, and is fed into setfsmac(1). This is based on the old LOMAC PLM. Approved by: re Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.1 +29 -0 src/share/security/lomac-policy.contexts (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 7:23:27 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9054337B401; Tue, 3 Dec 2002 07:23:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E8FF43E9C; Tue, 3 Dec 2002 07:23:26 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3FJGmV055125; Tue, 3 Dec 2002 07:19:16 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3FJFNC055124; Tue, 3 Dec 2002 07:19:15 -0800 (PST) Message-Id: <200212031519.gB3FJFNC055124@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 07:19:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/setfmac setfmac.8 setfmac.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 07:19:15 PST Modified files: usr.sbin/setfmac setfmac.8 setfmac.c Log: Mdoc markup and language fixes. Submitted by: ru Approved by: re (jhb) Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.4 +12 -7 src/usr.sbin/setfmac/setfmac.8 1.5 +2 -2 src/usr.sbin/setfmac/setfmac.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 7:30:13 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82D5C37B401; Tue, 3 Dec 2002 07:30:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3036243EA9; Tue, 3 Dec 2002 07:30:12 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3FQ2mV055389; Tue, 3 Dec 2002 07:26:02 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3FQ1qJ055387; Tue, 3 Dec 2002 07:26:01 -0800 (PST) Message-Id: <200212031526.gB3FQ1qJ055387@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 07:26:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/security/mac_lomac mac_lomac.c mac_lomac.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 07:26:01 PST Modified files: sys/security/mac_lomac mac_lomac.c mac_lomac.h Log: License tweak: remove clause 3 per permission of NAI. Approved by: re Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.3 +0 -3 src/sys/security/mac_lomac/mac_lomac.c 1.2 +0 -3 src/sys/security/mac_lomac/mac_lomac.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 7:41:25 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9344737B401; Tue, 3 Dec 2002 07:41:24 -0800 (PST) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98F1943EB2; Tue, 3 Dec 2002 07:41:23 -0800 (PST) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.12.6/8.12.5) with SMTP id gB3FfIBF099200; Tue, 3 Dec 2002 10:41:18 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Tue, 3 Dec 2002 10:41:17 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Christian Brueffer , chris@FreeBSD.org, bfeldman@tislabs.com Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/releases/5.0R todo.sgml In-Reply-To: <20021203144644.GC603@unixpages.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 3 Dec 2002, Christian Brueffer wrote: > Will there be a repo-copy of lomac.4 to mac_lomac.9 or something > similar? We're currently working the documentation issue, but the basic answer is yes, "or something". Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Network Associates Laboratories To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 7:45:41 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E464E37B401; Tue, 3 Dec 2002 07:45:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92CF343EB2; Tue, 3 Dec 2002 07:45:40 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3FfUmV056579; Tue, 3 Dec 2002 07:41:30 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3FfUUJ056578; Tue, 3 Dec 2002 07:41:30 -0800 (PST) Message-Id: <200212031541.gB3FfUUJ056578@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 3 Dec 2002 07:41:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/cdcontrol cdcontrol.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/12/03 07:41:30 PST Modified files: usr.sbin/cdcontrol cdcontrol.c Log: The default CD drive is /dev/cd0, not /dev/cd0c. Reviewed by: jhb Approved by: re (rwatson) Revision Changes Path 1.43 +1 -1 src/usr.sbin/cdcontrol/cdcontrol.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 7:45:55 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C44A637B406; Tue, 3 Dec 2002 07:45:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1ACC043EC5; Tue, 3 Dec 2002 07:45:53 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3FfgmV056614; Tue, 3 Dec 2002 07:41:42 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3Ffgne056613; Tue, 3 Dec 2002 07:41:42 -0800 (PST) Message-Id: <200212031541.gB3Ffgne056613@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 07:41:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 07:41:42 PST Modified files: en/releases/5.0R todo.sgml Log: Trim the fdisk editor bug -- it's now been fixed thanks to nyan@ and jhb@. Thanks guys :-) Revision Changes Path 1.69 +1 -9 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 7:52:23 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D4AF37B401; Tue, 3 Dec 2002 07:52:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDCCD43E88; Tue, 3 Dec 2002 07:52:21 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3FmBmV057186; Tue, 3 Dec 2002 07:48:11 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3FmBXC057185; Tue, 3 Dec 2002 07:48:11 -0800 (PST) Message-Id: <200212031548.gB3FmBXC057185@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 3 Dec 2002 07:48:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/pam.d sshd src/crypto/openssh acconfig.h config.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/12/03 07:48:11 PST Modified files: etc/pam.d sshd crypto/openssh acconfig.h config.h Log: Since OpenSSH drops privileges before calling pam_open_session(3), pam_lastlog(8) can't possibly work, so let OpenSSH handle lastlog. Approved by: re (rwatson) Revision Changes Path 1.5 +1 -1 src/crypto/openssh/acconfig.h 1.4 +201 -169 src/crypto/openssh/config.h 1.9 +1 -1 src/etc/pam.d/sshd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 8:14: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C454C37B401; Tue, 3 Dec 2002 08:14:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 724F443E4A; Tue, 3 Dec 2002 08:14:06 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3G9umV058529; Tue, 3 Dec 2002 08:09:56 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3G9uVe058528; Tue, 3 Dec 2002 08:09:56 -0800 (PST) Message-Id: <200212031609.gB3G9uVe058528@repoman.freebsd.org> From: John Baldwin Date: Tue, 3 Dec 2002 08:09:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall disks.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/12/03 08:09:56 PST Modified files: usr.sbin/sysinstall disks.c Log: Fix a bug in the fdisk editor that partially masked the chunk deletion bug fixed yesterday. New slices created in the fdisk editor and slices whose sub-type is changed are of type 'mbr' if their sub-type is not a magic type, not type 'unknown'. Approved by: re Revision Changes Path 1.143 +2 -2 src/usr.sbin/sysinstall/disks.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 8:15: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA42B37B401; Tue, 3 Dec 2002 08:15:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 599F943EA9; Tue, 3 Dec 2002 08:15:08 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3GAwmV058640; Tue, 3 Dec 2002 08:10:58 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3GAvf8058639; Tue, 3 Dec 2002 08:10:57 -0800 (PST) Message-Id: <200212031610.gB3GAvf8058639@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Tue, 3 Dec 2002 08:10:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/multimedia/mplayerxp pkg-comment X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2002/12/03 08:10:57 PST Modified files: multimedia/mplayerxp pkg-comment Log: Fix typo Revision Changes Path 1.4 +1 -1 ports/multimedia/mplayerxp/pkg-comment To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 8:22:30 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42A3237B401; Tue, 3 Dec 2002 08:22:29 -0800 (PST) Received: from watery.cc.kogakuin.ac.jp (watery.cc.kogakuin.ac.jp [133.80.152.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1923643ECF; Tue, 3 Dec 2002 08:22:28 -0800 (PST) (envelope-from nyan@jp.FreeBSD.org) Received: from localhost (localhost [IPv6:::1]) by watery.cc.kogakuin.ac.jp (8.12.6/8.12.6) with ESMTP id gB3GMLnq071862; Wed, 4 Dec 2002 01:22:21 +0900 (JST) (envelope-from nyan@jp.FreeBSD.org) Date: Wed, 04 Dec 2002 01:21:24 +0900 (JST) Message-Id: <20021204.012124.41686993.nyan@jp.FreeBSD.org> To: jhb@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall disks.c From: Takahashi Yoshihiro In-Reply-To: <200212031609.gB3G9uVe058528@repoman.freebsd.org> References: <200212031609.gB3G9uVe058528@repoman.freebsd.org> X-Mailer: Mew version 2.3 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In article <200212031609.gB3G9uVe058528@repoman.freebsd.org> John Baldwin writes: > jhb 2002/12/03 08:09:56 PST > > Modified files: > usr.sbin/sysinstall disks.c > Log: > Fix a bug in the fdisk editor that partially masked the chunk deletion > bug fixed yesterday. New slices created in the fdisk editor and slices > whose sub-type is changed are of type 'mbr' if their sub-type is not a > magic type, not type 'unknown'. It needs to use 'pc98' as the partition type in PC98 case. --- TAKAHASHI Yoshihiro To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 8:23:34 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09E0237B401; Tue, 3 Dec 2002 08:23:33 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83BD143ECD; Tue, 3 Dec 2002 08:23:26 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id gB3GNFVX039994 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 3 Dec 2002 18:23:15 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id gB3GNFm7039989; Tue, 3 Dec 2002 18:23:15 +0200 (EET) Date: Tue, 3 Dec 2002 18:23:15 +0200 From: Ruslan Ermilov To: Robert Watson , Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/releases/5.0R todo.sgml Message-ID: <20021203162315.GB37607@sunbay.com> References: <200212031403.gB3E3Xjw037198@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mojUlQ0s9EVzWg2t" Content-Disposition: inline In-Reply-To: <200212031403.gB3E3Xjw037198@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --mojUlQ0s9EVzWg2t Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 03, 2002 at 06:03:33AM -0800, Robert Watson wrote: > rwatson 2002/12/03 06:03:33 PST >=20 > Modified files: > en/releases/5.0R todo.sgml=20 > Log: > Update the perl->somethingelse task: Mike Makonnen has > submitted adduser and rmuser scripts (committed by scottl), so we're > now mostly done. All that remain are mmroff and afmtodit. Chown > task to Mark Murray since he's a guilty-looking party. > =20 I can't believe that! Are you going to rewrite contrib/ stuff? That would be much appreciated. These scripts are part of Groff. :-) Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --mojUlQ0s9EVzWg2t Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE97NpzUkv4P6juNwoRArCfAJ99XQ0kkFAwPdFAgkzG/RyWgpyJBACdGzVx QkWwcdgJVTogfYcTecABSC8= =CrHX -----END PGP SIGNATURE----- --mojUlQ0s9EVzWg2t-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 8:29:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 494DD37B401; Tue, 3 Dec 2002 08:29:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4C0243EB2; Tue, 3 Dec 2002 08:29:39 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3GPTmV059519; Tue, 3 Dec 2002 08:25:29 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3GPTCl059518; Tue, 3 Dec 2002 08:25:29 -0800 (PST) Message-Id: <200212031625.gB3GPTCl059518@repoman.freebsd.org> From: Jake Burkholder Date: Tue, 3 Dec 2002 08:25:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libstand ufs.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2002/12/03 08:25:29 PST Modified files: lib/libstand ufs.c Log: Update the second copy of libstand to deal with the new ufs2 superblock format. The one in sys/boot/libstand is not connected to the build. Approved by: re Revision Changes Path 1.13 +1 -1 src/lib/libstand/ufs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 8:50:10 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0707937B401; Tue, 3 Dec 2002 08:50:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA7B743E4A; Tue, 3 Dec 2002 08:50:09 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3GjxmV060800; Tue, 3 Dec 2002 08:45:59 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3Gjx7P060799; Tue, 3 Dec 2002 08:45:59 -0800 (PST) Message-Id: <200212031645.gB3Gjx7P060799@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 08:45:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news/status status.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 08:45:59 PST Modified files: en/news/status status.sgml Log: Correct link: the new status report is through October, not August. Submitted by: "R. Imura" Revision Changes Path 1.13 +3 -3 www/en/news/status/status.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 9:18:37 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C98BE37B401 for ; Tue, 3 Dec 2002 09:18:36 -0800 (PST) Received: from mail.speakeasy.net (mail16.speakeasy.net [216.254.0.216]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0457943E88 for ; Tue, 3 Dec 2002 09:18:36 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 30110 invoked from network); 3 Dec 2002 17:18:39 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail16.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 3 Dec 2002 17:18:39 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.6/8.12.6) with ESMTP id gB3HIXuH037641; Tue, 3 Dec 2002 12:18:33 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20021204.012124.41686993.nyan@jp.FreeBSD.org> Date: Tue, 03 Dec 2002 12:18:40 -0500 (EST) From: John Baldwin To: Takahashi Yoshihiro Subject: Re: cvs commit: src/usr.sbin/sysinstall disks.c Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 03-Dec-2002 Takahashi Yoshihiro wrote: > In article <200212031609.gB3G9uVe058528@repoman.freebsd.org> > John Baldwin writes: > >> jhb 2002/12/03 08:09:56 PST >> >> Modified files: >> usr.sbin/sysinstall disks.c >> Log: >> Fix a bug in the fdisk editor that partially masked the chunk deletion >> bug fixed yesterday. New slices created in the fdisk editor and slices >> whose sub-type is changed are of type 'mbr' if their sub-type is not a >> magic type, not type 'unknown'. > > It needs to use 'pc98' as the partition type in PC98 case. Ok. If you can whip up a patch and test it and run it by re@ I'll approve it. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 9:43:55 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ADE837B401; Tue, 3 Dec 2002 09:43:53 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 710C443EC5; Tue, 3 Dec 2002 09:43:47 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id gB3HhZVX046923 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 3 Dec 2002 19:43:35 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id gB3HhY9U046918; Tue, 3 Dec 2002 19:43:35 +0200 (EET) Date: Tue, 3 Dec 2002 19:43:34 +0200 From: Ruslan Ermilov To: Luigi Rizzo Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/picobsd/build picobsd Message-ID: <20021203174334.GD43956@sunbay.com> References: <200212022233.gB2MXo1w079233@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="65ImJOski3p8EhYV" Content-Disposition: inline In-Reply-To: <200212022233.gB2MXo1w079233@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --65ImJOski3p8EhYV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Dec 02, 2002 at 02:33:50PM -0800, Luigi Rizzo wrote: > luigi 2002/12/02 14:33:50 PST >=20 > Modified files: (Branch: RELENG_4) > release/picobsd/build picobsd=20 > Log: > Fix a long standing problem with ssh-keygen missing the '-t rsa1' optio= n. > =20 > Remove historical '-p 0' option from newfs > =20 > Use 'strings' and 'dd' magic instead of perl (unavailable in -current) > to patch the boot2 block. > =20 > Will go into -current as soon as re@ approve > =20 > Submitted by: Bruce Montague > MFC After: 3 days > =20 > Revision Changes Path > 1.1.2.28 +9 -5 src/release/picobsd/build/picobsd >=20 MFC or MFS? :-) Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --65ImJOski3p8EhYV Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE97O1GUkv4P6juNwoRAlgEAJ4p3Mzr+n0AZrTdNITu0evk6I2FWwCdE3eh AcATQYaTl1QO8nyk+CQmEeQ= =F0gE -----END PGP SIGNATURE----- --65ImJOski3p8EhYV-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 9:52:40 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7135837B401; Tue, 3 Dec 2002 09:52:39 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CD8243EA9; Tue, 3 Dec 2002 09:52:39 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.3/8.12.3) with ESMTP id gB3HqXTO069108; Tue, 3 Dec 2002 09:52:33 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.3/8.12.3/Submit) id gB3HqXN3069107; Tue, 3 Dec 2002 09:52:33 -0800 (PST) (envelope-from rizzo) Date: Tue, 3 Dec 2002 09:52:33 -0800 From: Luigi Rizzo To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/picobsd/build picobsd Message-ID: <20021203095233.A69070@xorpc.icir.org> References: <200212022233.gB2MXo1w079233@repoman.freebsd.org> <20021203174334.GD43956@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20021203174334.GD43956@sunbay.com>; from ru@FreeBSD.org on Tue, Dec 03, 2002 at 07:43:34PM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Dec 03, 2002 at 07:43:34PM +0200, Ruslan Ermilov wrote: ... > > Submitted by: Bruce Montague > > MFC After: 3 days > > > > Revision Changes Path > > 1.1.2.28 +9 -5 src/release/picobsd/build/picobsd > > > MFC or MFS? :-) MFS but i think that is not a supported tag and i wanted to receive a reminder... :) One question for you-- i notice that the --init option in picobsd (which uses the initial part of src/Makefile) now chokes trying to install a newer version of make into /usr/bin (and not even in the place where other tools are built). Is this a bug or a feature ? It did not occur with -current sources from the beginning of november... cheers luigi > > Cheers, > -- > Ruslan Ermilov Sysadmin and DBA, > ru@sunbay.com Sunbay Software AG, > ru@FreeBSD.org FreeBSD committer, > +380.652.512.251 Simferopol, Ukraine > > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 9:53:17 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A0B137B401; Tue, 3 Dec 2002 09:53:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B03A43E9C; Tue, 3 Dec 2002 09:53:16 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3Hn5mV064668; Tue, 3 Dec 2002 09:49:05 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3Hn5pB064667; Tue, 3 Dec 2002 09:49:05 -0800 (PST) Message-Id: <200212031749.gB3Hn5pB064667@repoman.freebsd.org> From: "Bruce A. Mah" Date: Tue, 3 Dec 2002 09:49:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/12/03 09:49:05 PST Modified files: . Makefile Log: Minor, cosmetic change to buildworld output to make it reflect rev. 1.270 more accurately. Reviewed by: ru Approved by: re (jhb) Revision Changes Path 1.271 +1 -1 src/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 10: 4:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0870337B401; Tue, 3 Dec 2002 10:04:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7D4A43EC5; Tue, 3 Dec 2002 10:04:41 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3I0VmV065373; Tue, 3 Dec 2002 10:00:31 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3I0Vmh065372; Tue, 3 Dec 2002 10:00:31 -0800 (PST) Message-Id: <200212031800.gB3I0Vmh065372@repoman.freebsd.org> From: "Bruce A. Mah" Date: Tue, 3 Dec 2002 10:00:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/i386 article.sgml src/release/doc/en_US.ISO8859-1/installation/i386 article.sgml src/release/doc/en_US.ISO8859-1/relnotes/i386 article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/12/03 10:00:30 PST Modified files: release/doc/en_US.ISO8859-1/hardware/i386 article.sgml release/doc/en_US.ISO8859-1/installation/i386 article.sgml release/doc/en_US.ISO8859-1/relnotes/i386 article.sgml Log: "i386" is probably a better long name for the i386 platform, as opposed to IA-32. Pointed out by: Andrew I Baznikin , jhb Approved by: re (implicitly) Revision Changes Path 1.4 +2 -2 src/release/doc/en_US.ISO8859-1/hardware/i386/article.sgml 1.4 +2 -2 src/release/doc/en_US.ISO8859-1/installation/i386/article.sgml 1.4 +2 -2 src/release/doc/en_US.ISO8859-1/relnotes/i386/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 10: 7:21 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D842D37B401; Tue, 3 Dec 2002 10:07:19 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6D7C43ECD; Tue, 3 Dec 2002 10:07:15 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id gB3I79VX048782 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 3 Dec 2002 20:07:11 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id gB3I79NV048777; Tue, 3 Dec 2002 20:07:09 +0200 (EET) Date: Tue, 3 Dec 2002 20:07:09 +0200 From: Ruslan Ermilov To: Luigi Rizzo Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/picobsd/build picobsd Message-ID: <20021203180709.GE43956@sunbay.com> References: <200212022233.gB2MXo1w079233@repoman.freebsd.org> <20021203174334.GD43956@sunbay.com> <20021203095233.A69070@xorpc.icir.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ahP6B03r4gLOj5uD" Content-Disposition: inline In-Reply-To: <20021203095233.A69070@xorpc.icir.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --ahP6B03r4gLOj5uD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 03, 2002 at 09:52:33AM -0800, Luigi Rizzo wrote: > On Tue, Dec 03, 2002 at 07:43:34PM +0200, Ruslan Ermilov wrote: > ... > > > Submitted by: Bruce Montague > > > MFC After: 3 days > > > =20 > > > Revision Changes Path > > > 1.1.2.28 +9 -5 src/release/picobsd/build/picobsd > > >=20 > > MFC or MFS? :-) >=20 > MFS but i think that is not a supported tag and i wanted to > receive a reminder... :) >=20 It's not a supported tag only because developers are explicitly disallowed to commit to -STABLE before committing to -CURRENT, if the stuff in question is applicable to both. > One question for you-- i notice that the --init option > in picobsd (which uses the initial part of src/Makefile) > now chokes trying to install a newer version of make > into /usr/bin (and not even in the place where other > tools are built). Is this a bug or a feature ? It did > not occur with -current sources from the beginning > of november... >=20 You need to catch up to a more recent -CURRENT. :-) It's been addressed yesterday in src/Makefile,v 1.270. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --ahP6B03r4gLOj5uD Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE97PLNUkv4P6juNwoRAqMQAJ9K3eqRb7uItGNqtFpgBYHwBl9oTwCeOfLU xjyN26EDVrjWsI3dPeYNR8I= =qGq+ -----END PGP SIGNATURE----- --ahP6B03r4gLOj5uD-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 10: 8:51 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85B2A37B406; Tue, 3 Dec 2002 10:08:49 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 344B243EB2; Tue, 3 Dec 2002 10:08:46 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id gB3I8gVX048993 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 3 Dec 2002 20:08:42 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id gB3I8gSx048988; Tue, 3 Dec 2002 20:08:42 +0200 (EET) Date: Tue, 3 Dec 2002 20:08:42 +0200 From: Ruslan Ermilov To: "Bruce A. Mah" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src Makefile Message-ID: <20021203180842.GF43956@sunbay.com> References: <200212031749.gB3Hn5pB064667@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8/pVXlBMPtxfSuJG" Content-Disposition: inline In-Reply-To: <200212031749.gB3Hn5pB064667@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --8/pVXlBMPtxfSuJG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 03, 2002 at 09:49:05AM -0800, Bruce A. Mah wrote: > bmah 2002/12/03 09:49:05 PST >=20 > Modified files: > . Makefile=20 > Log: > Minor, cosmetic change to buildworld output to make it reflect > rev. 1.270 more accurately. > =20 > Reviewed by: ru > Approved by: re (jhb) ^^^^^^^^ > =20 > Revision Changes Path > 1.271 +1 -1 src/Makefile >=20 Thanks, Bruce! It's nice to know that you don't automagically approve your own changes guys, do you? :-) Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --8/pVXlBMPtxfSuJG Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE97PMqUkv4P6juNwoRAjrAAJ99N2NCBOanDnEfEUStvBhK85ZjsACffVUj ot54sbXu9R1eFXD0bcv/TnM= =k+1X -----END PGP SIGNATURE----- --8/pVXlBMPtxfSuJG-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 10:13:15 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8742B37B407 for ; Tue, 3 Dec 2002 10:13:14 -0800 (PST) Received: from mail.speakeasy.net (mail16.speakeasy.net [216.254.0.216]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FE1F43E9C for ; Tue, 3 Dec 2002 10:13:13 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 4780 invoked from network); 3 Dec 2002 18:13:17 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail16.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 3 Dec 2002 18:13:17 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.6/8.12.6) with ESMTP id gB3IDAuH037836; Tue, 3 Dec 2002 13:13:10 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20021203180842.GF43956@sunbay.com> Date: Tue, 03 Dec 2002 13:13:17 -0500 (EST) From: John Baldwin To: Ruslan Ermilov Subject: Re: cvs commit: src Makefile Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, "Bruce A. Mah" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 03-Dec-2002 Ruslan Ermilov wrote: > On Tue, Dec 03, 2002 at 09:49:05AM -0800, Bruce A. Mah wrote: >> bmah 2002/12/03 09:49:05 PST >> >> Modified files: >> . Makefile >> Log: >> Minor, cosmetic change to buildworld output to make it reflect >> rev. 1.270 more accurately. >> >> Reviewed by: ru >> Approved by: re (jhb) > ^^^^^^^^ >> >> Revision Changes Path >> 1.271 +1 -1 src/Makefile >> > Thanks, Bruce! > > It's nice to know that you don't automagically approve your own > changes guys, do you? :-) We don't. :) Sometimes when I'm sitting on a sysinstall bug fix I wish I could though. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 10:23:39 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B907337B401; Tue, 3 Dec 2002 10:23:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 660D643EA9; Tue, 3 Dec 2002 10:23:38 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3IJRmV066486; Tue, 3 Dec 2002 10:19:27 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3IJRdk066485; Tue, 3 Dec 2002 10:19:27 -0800 (PST) Message-Id: <200212031819.gB3IJRdk066485@repoman.freebsd.org> From: Kirk McKusick Date: Tue, 3 Dec 2002 10:19:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ffs ffs_snapshot.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2002/12/03 10:19:27 PST Modified files: sys/ufs/ffs ffs_snapshot.c Log: Have to use bread() rather than UFS_BALLOC() when obtaining a previously allocated block as the previous use of the block may have fallen out of the cache. Failure to reread its contents cause zeroed results to be written instead of the proper contents. Conversely, when the block is going to be entirely filled in, it is not necessary reread the old contents. Sponsored by: DARPA & NAI Labs. Approved by: re Revision Changes Path 1.53 +30 -24 src/sys/ufs/ffs/ffs_snapshot.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 10:24:48 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F02A937B401; Tue, 3 Dec 2002 10:24:46 -0800 (PST) Received: from MX1.estpak.ee (ld1.estpak.ee [194.126.101.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2223843E88; Tue, 3 Dec 2002 10:24:45 -0800 (PST) (envelope-from kalts@estpak.ee) Received: from tiiu.internal (80-235-35-100-dsl.mus.estpak.ee [80.235.35.100]) by MX1.estpak.ee (Postfix) with ESMTP id B7F6E8884C; Tue, 3 Dec 2002 20:23:40 +0200 (EET) Received: from tiiu.internal (localhost [127.0.0.1]) by tiiu.internal (8.12.6/8.12.6) with ESMTP id gB3IObx3003398; Tue, 3 Dec 2002 20:24:37 +0200 (EET) (envelope-from vallo@tiiu.internal) Received: (from vallo@localhost) by tiiu.internal (8.12.6/8.12.6/Submit) id gB3IOaE6003397; Tue, 3 Dec 2002 20:24:36 +0200 (EET) (envelope-from vallo) Date: Tue, 3 Dec 2002 20:24:36 +0200 From: Vallo Kallaste To: Poul-Henning Kamp Cc: Greg Lehey , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/vinum vinumioctl.c Message-ID: <20021203182436.GB3146@tiiu.internal> Reply-To: kalts@estpak.ee References: <20021203100440.GA1652@tiiu.internal> <92539.1038911567@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <92539.1038911567@critter.freebsd.dk> User-Agent: Mutt/1.5.1i-ja.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Dec 03, 2002 at 11:32:47AM +0100, Poul-Henning Kamp wrote: > >> Log: > >> Implement DIOCGDINFO for volumes. newfs will no longer build a file > >> system on a volume without a disk label. > >> > >> Approved by: re (rwatson) > > > >It's the reverse currently as I understand. The vinum(8) states that > >"vinum label somevolume" is deprecated and not needed for newfs(8). > >The man page needs to be fixed. If I'm mistaken please ignore me. > > My guess on this trouble is that vinum kludges up the answers to the > DIOCGMEDIASIZE and DIOCGSECTORSIZE ioctls from the BSD label, and > fails if there isn't one. Ok, so I got it backwards myself. I thought that "vinum label" will be mandatory now and Greg forgot to commit manpage changes. Sorry Greg. -- Vallo Kallaste kalts@estpak.ee To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 10:25:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0391737B401; Tue, 3 Dec 2002 10:25:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65BE043EA9; Tue, 3 Dec 2002 10:25:20 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3IL9mV066628; Tue, 3 Dec 2002 10:21:09 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3IL9qc066627; Tue, 3 Dec 2002 10:21:09 -0800 (PST) Message-Id: <200212031821.gB3IL9qc066627@repoman.freebsd.org> From: Kirk McKusick Date: Tue, 3 Dec 2002 10:21:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dump dump.8 main.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2002/12/03 10:21:09 PST Modified files: sbin/dump dump.8 main.c Log: Add the `L' option to dump to notify it that it is dumping a live filesystem. To obtain a consistent dump image, dump takes a snapshot of the filesystem and then does a dump of the snapshot. The snapshot is removed when the dump is complete. Also add an operator warning that the `L' option should be used if dump is run on a live filesystem without the `L' option being specified. The alternative would be to silently use a snapshot any time that a live filesystem is dumped, but this change in dump semantics seemed too drastic at this time. Sponsored by: DARPA & NAI Labs. Approved by: re Revision Changes Path 1.50 +10 -1 src/sbin/dump/dump.8 1.43 +81 -14 src/sbin/dump/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 10:48:10 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E37BE37B401; Tue, 3 Dec 2002 10:48:08 -0800 (PST) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5423543E4A; Tue, 3 Dec 2002 10:48:08 -0800 (PST) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (IDENT:brdavis@localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.12.3/8.12.3) with ESMTP id gB3Im1h0021248; Tue, 3 Dec 2002 10:48:01 -0800 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.12.3/8.12.3/Submit) id gB3Im13J021245; Tue, 3 Dec 2002 10:48:01 -0800 Date: Tue, 3 Dec 2002 10:48:01 -0800 From: Brooks Davis To: Kirk McKusick Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/dump dump.8 main.c Message-ID: <20021203104801.A18375@Odin.AC.HMC.Edu> References: <200212031821.gB3IL9qc066627@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="Nq2Wo0NMKNjxTN9z" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200212031821.gB3IL9qc066627@repoman.freebsd.org>; from mckusick@FreeBSD.org on Tue, Dec 03, 2002 at 10:21:09AM -0800 X-Virus-Scanned: by amavisd-milter (http://amavis.org/) on odin.ac.hmc.edu Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 03, 2002 at 10:21:09AM -0800, Kirk McKusick wrote: > mckusick 2002/12/03 10:21:09 PST >=20 > Also add an operator warning that the `L' option should be used > if dump is run on a live filesystem without the `L' option being > specified. The alternative would be to silently use a snapshot > any time that a live filesystem is dumped, but this change in > dump semantics seemed too drastic at this time. Would it be possiable/reasionable to add an out of band way to control this such as the existance of a file or a compile time option? I ask because some backup systems like amanda don't do a good job of letting you specify arguments to dump since dump support is rather hardwired. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --Nq2Wo0NMKNjxTN9z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE97PxgXY6L6fI4GtQRApUmAJ9IUaCdSgQMGBUlElGs/H0wrAiqDACeMMUq ON1Azibz1x/MVr6y8Dtvp0I= =eLqx -----END PGP SIGNATURE----- --Nq2Wo0NMKNjxTN9z-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 11: 7:32 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0168737B401 for ; Tue, 3 Dec 2002 11:07:31 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 30D3B43EC2 for ; Tue, 3 Dec 2002 11:07:30 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 7527 invoked by uid 1000); 3 Dec 2002 19:07:30 -0000 Date: Tue, 3 Dec 2002 11:07:30 -0800 (PST) From: Nate Lawson To: Kirk McKusick Cc: cvs-all@freebsd.org, cvs-committers@freebsd.org Subject: Re: cvs commit: src/sbin/dump dump.8 main.c In-Reply-To: <20021203182524.BA85337B4A9@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Minor comments, thx for doing this. Does the creation of snapshots follow symlinks? What happens if an attacker creates /.dump_snapshot in /tmp and then root dumps /tmp? On Tue, 3 Dec 2002, Kirk McKusick wrote: > mckusick 2002/12/03 10:21:09 PST > > Modified files: > sbin/dump dump.8 main.c > Log: > Add the `L' option to dump to notify it that it is dumping a > live filesystem. To obtain a consistent dump image, dump takes > a snapshot of the filesystem and then does a dump of the snapshot. > The snapshot is removed when the dump is complete. > > --- src/sbin/dump/main.c:1.42 Tue Nov 26 18:18:56 2002 > +++ src/sbin/dump/main.c Tue Dec 3 10:21:09 2002 > > + if ((diskfd = open(snapname, O_RDONLY)) < 0) { > + unlink(snapname); > + errx(X_STARTUP, "Cannot open %s: %s\n", > + snapname, strerror(errno)); > + } > + unlink(snapname); If call to open was before if, snapname could be unconditionally unlinked before if() and the err case would be smaller. > (void)strcpy(spcl.c_label, "none"); > (void)gethostname(spcl.c_host, NAMELEN); > spcl.c_level = level - '0'; > spcl.c_type = TS_TAPE; > - if (!Tflag) > - getdumptime(); /* /etc/dumpdates snarfed */ > > if (spcl.c_date == 0) { > tmsg = "the epoch\n"; > @@ -323,6 +373,9 @@ > tmsg = ctime(&t); > } > msg("Date of this level %c dump: %s", level, tmsg); > + > + if (!Tflag) > + getdumptime(); /* /etc/dumpdates snarfed */ > if (spcl.c_ddate == 0) { > tmsg = "the epoch\n"; > } else { I don't see what this does? -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 11:13:13 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C282D37B401; Tue, 3 Dec 2002 11:13:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70AC043EC2; Tue, 3 Dec 2002 11:13:12 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3J91mV069706; Tue, 3 Dec 2002 11:09:01 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3J91jn069705; Tue, 3 Dec 2002 11:09:01 -0800 (PST) Message-Id: <200212031909.gB3J91jn069705@repoman.freebsd.org> From: Murray Stokely Date: Tue, 3 Dec 2002 11:09:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/donations wantlist.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2002/12/03 11:09:01 PST Modified files: en/donations wantlist.sgml Log: Remove my need for a build machine. Sentex Communications has setup a -CURRENT box for the re@ team to use for builds. (Thanks Mike!) Revision Changes Path 1.46 +1 -9 www/en/donations/wantlist.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 11:37:25 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6CB837B401; Tue, 3 Dec 2002 11:37:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8436643EBE; Tue, 3 Dec 2002 11:37:24 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3JXDmV071002; Tue, 3 Dec 2002 11:33:13 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3JXD4Q071001; Tue, 3 Dec 2002 11:33:13 -0800 (PST) Message-Id: <200212031933.gB3JXD4Q071001@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 11:33:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 11:33:13 PST Modified files: en/releases/5.0R todo.sgml Log: Move the truss item from "Must for 5.0RC1" to "Desired for 5.0", as the problems may be somewhat deeply ingrained. I'd still like to see a fix in place for 5.0, but we can't hold up 5.0RC1 for it today. Revision Changes Path 1.70 +13 -14 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 11:39: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 573D037B401; Tue, 3 Dec 2002 11:39:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05DC943EBE; Tue, 3 Dec 2002 11:39:08 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3JYvmV071059; Tue, 3 Dec 2002 11:34:57 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3JYuRm071058; Tue, 3 Dec 2002 11:34:56 -0800 (PST) Message-Id: <200212031934.gB3JYuRm071058@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 11:34:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 11:34:56 PST Modified files: en/releases/5.0R todo.sgml Log: Move inpcb panic to "Must for 5.0" from "Must for 5.0RC1", since we're not getting much traction in getting it resolved. Revision Changes Path 1.71 +10 -11 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 11:40:25 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D848E37B401; Tue, 3 Dec 2002 11:40:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60C8843ECD; Tue, 3 Dec 2002 11:40:24 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3JaDmV071268; Tue, 3 Dec 2002 11:36:13 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3JaDt7071267; Tue, 3 Dec 2002 11:36:13 -0800 (PST) Message-Id: <200212031936.gB3JaDt7071267@repoman.freebsd.org> From: John Baldwin Date: Tue, 3 Dec 2002 11:36:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall install.c sysinstall.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/12/03 11:36:13 PST Modified files: usr.sbin/sysinstall install.c sysinstall.h Log: Rename installX11package() to installPackage() and tweak it so that it can be used to install any arbitrary package. Approved by: re Revision Changes Path 1.337 +3 -5 src/usr.sbin/sysinstall/install.c 1.236 +1 -1 src/usr.sbin/sysinstall/sysinstall.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 11:41:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADA9237B401; Tue, 3 Dec 2002 11:41:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B1EE43EBE; Tue, 3 Dec 2002 11:41:41 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3JbUmV071554; Tue, 3 Dec 2002 11:37:30 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3JbUH7071553; Tue, 3 Dec 2002 11:37:30 -0800 (PST) Message-Id: <200212031937.gB3JbUH7071553@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 11:37:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 11:37:30 PST Modified files: en/releases/5.0R todo.sgml Log: Add a "Must fix for RC2" list. Move mly, iir driver issues to the RC2 list from the RC1 list. I'd like to get these resolved by RC2, but it's not happening before we cut RC1 starting later today. Revision Changes Path 1.72 +25 -18 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 11:45:11 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30F6E37B401; Tue, 3 Dec 2002 11:45:10 -0800 (PST) Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7A1D43E9C; Tue, 3 Dec 2002 11:45:09 -0800 (PST) (envelope-from julian@elischer.org) Received: from InterJet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by rwcrmhc53.attbi.com (rwcrmhc53) with ESMTP id <2002120319450905300b148re>; Tue, 3 Dec 2002 19:45:09 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id LAA17587; Tue, 3 Dec 2002 11:44:50 -0800 (PST) Date: Tue, 3 Dec 2002 11:44:48 -0800 (PST) From: Julian Elischer To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/releases/5.0R todo.sgml In-Reply-To: <200212031541.gB3Ffgne056613@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG has it been fixed to handle disks > 1TB yet? (I have 3 here) (in the disklabel part) libdisk needs to be fixed to stop treating block numbers and offsets as signed numbers.. (if not yet done) (the real fix would be to extend it to use u_int64_t and add a 'gpt' partition option. but htat can wait until we get CAM support for write16 and read16.) On Tue, 3 Dec 2002, Robert Watson wrote: > rwatson 2002/12/03 07:41:42 PST > > Modified files: > en/releases/5.0R todo.sgml > Log: > Trim the fdisk editor bug -- it's now been fixed thanks to > nyan@ and jhb@. Thanks guys :-) > > Revision Changes Path > 1.69 +1 -9 www/en/releases/5.0R/todo.sgml > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 11:45:48 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 353FF37B401; Tue, 3 Dec 2002 11:45:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AEC6D43ED4; Tue, 3 Dec 2002 11:45:45 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3JfYmV071707; Tue, 3 Dec 2002 11:41:34 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3JfY8a071706; Tue, 3 Dec 2002 11:41:34 -0800 (PST) Message-Id: <200212031941.gB3JfY8a071706@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 11:41:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 11:41:34 PST Modified files: en/releases/5.0R todo.sgml Log: Since we now have an RC2 section, move the "Disable performance crippling debugging features" to that section from the "Must do for 5.0" section. Revision Changes Path 1.73 +11 -11 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 11:46:43 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92F6D37B401; Tue, 3 Dec 2002 11:46:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E17E43E9C; Tue, 3 Dec 2002 11:46:42 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3JgVmV071757; Tue, 3 Dec 2002 11:42:31 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3JgVh7071756; Tue, 3 Dec 2002 11:42:31 -0800 (PST) Message-Id: <200212031942.gB3JgVh7071756@repoman.freebsd.org> From: John Baldwin Date: Tue, 3 Dec 2002 11:42:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall dist.c dist.h menus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/12/03 11:42:31 PST Modified files: usr.sbin/sysinstall dist.c dist.h menus.c Log: - Convert the installation of the X package to using installPackage() rather than installX11package(). - Add a perl psuedo-dist that installs the perl package. The perl distribution is selected by default when a User distribution set is selected. It is not selected when a Minimal distribution set is selected. The perl distribution may be toggled manually in the custom menu just as other distributions. Approved by: re Revision Changes Path 1.212 +9 -1 src/usr.sbin/sysinstall/dist.c 1.55 +3 -2 src/usr.sbin/sysinstall/dist.h 1.361 +2 -0 src/usr.sbin/sysinstall/menus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 11:52:24 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E50937B401; Tue, 3 Dec 2002 11:52:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C60D43E4A; Tue, 3 Dec 2002 11:52:23 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3JmCmV072236; Tue, 3 Dec 2002 11:48:12 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3JmCNK072235; Tue, 3 Dec 2002 11:48:12 -0800 (PST) Message-Id: <200212031948.gB3JmCNK072235@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 11:48:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 11:48:12 PST Modified files: en/releases/5.0R todo.sgml Log: Move two MAC items, devd, and perl scripts into the RC2 category. These must be completed before we cut RC2. Revision Changes Path 1.74 +36 -35 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 11:55: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6C3137B404; Tue, 3 Dec 2002 11:55:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9744743ECD; Tue, 3 Dec 2002 11:55:02 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3JopmV072356; Tue, 3 Dec 2002 11:50:51 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3JopcJ072355; Tue, 3 Dec 2002 11:50:51 -0800 (PST) Message-Id: <200212031950.gB3JopcJ072355@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 11:50:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 11:50:51 PST Modified files: en/releases/5.0R todo.sgml Log: Move sysinstall UFS2 support to RC1. Move OpenSSH/PAM/K5 fix to RC2. Revision Changes Path 1.75 +17 -17 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 11:56: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A12837B401; Tue, 3 Dec 2002 11:56:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC1CC43ED1; Tue, 3 Dec 2002 11:56:00 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3JpnmV072408; Tue, 3 Dec 2002 11:51:49 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3JpnEq072407; Tue, 3 Dec 2002 11:51:49 -0800 (PST) Message-Id: <200212031951.gB3JpnEq072407@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 11:51:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 11:51:49 PST Modified files: en/releases/5.0R todo.sgml Log: Remove item on lastlog warnings; we believe that these problems are now worked around per des's recent commit. Or, at least the patch he ran by me and I think he committed. Revision Changes Path 1.76 +1 -12 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12: 1:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 600E737B404 for ; Tue, 3 Dec 2002 12:01:41 -0800 (PST) Received: from mail.speakeasy.net (mail16.speakeasy.net [216.254.0.216]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E32643ECD for ; Tue, 3 Dec 2002 12:01:40 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 6262 invoked from network); 3 Dec 2002 20:01:46 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail16.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 3 Dec 2002 20:01:46 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.6/8.12.6) with ESMTP id gB3K1buH038253; Tue, 3 Dec 2002 15:01:37 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Tue, 03 Dec 2002 15:01:45 -0500 (EST) From: John Baldwin To: Julian Elischer Subject: Re: cvs commit: www/en/releases/5.0R todo.sgml Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Robert Watson Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 03-Dec-2002 Julian Elischer wrote: > has it been fixed to handle disks > 1TB yet? (I have 3 here) > (in the disklabel part) libdisk needs to be fixed to stop treating block > numbers and offsets as signed numbers.. (if not yet done) > (the real fix would be to extend it to use u_int64_t and > add a 'gpt' partition option. but htat can wait until > we get CAM support for write16 and read16.) No, it's not even close. Do you still have a version of your patch around? If so, I'll try and update it with the recent changes for you if need be. > On Tue, 3 Dec 2002, Robert Watson wrote: > >> rwatson 2002/12/03 07:41:42 PST >> >> Modified files: >> en/releases/5.0R todo.sgml >> Log: >> Trim the fdisk editor bug -- it's now been fixed thanks to >> nyan@ and jhb@. Thanks guys :-) >> >> Revision Changes Path >> 1.69 +1 -9 www/en/releases/5.0R/todo.sgml >> > -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:11:49 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E79137B401; Tue, 3 Dec 2002 12:11:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C17A43E4A; Tue, 3 Dec 2002 12:11:48 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3K7amV073476; Tue, 3 Dec 2002 12:07:37 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3K7aCV073475; Tue, 3 Dec 2002 12:07:36 -0800 (PST) Message-Id: <200212032007.gB3K7aCV073475@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 12:07:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 12:07:36 PST Modified files: en/releases/5.0R todo.sgml Log: Move syscons hang bug from RC1 to RC2: we're not making fast enough headway on this bug to fit it in before RC1, but it must be fixed for RC2. Revision Changes Path 1.77 +10 -10 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:13:43 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7C2537B401 for ; Tue, 3 Dec 2002 12:13:42 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 4012C43E9C for ; Tue, 3 Dec 2002 12:13:42 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 7723 invoked by uid 1000); 3 Dec 2002 20:13:43 -0000 Date: Tue, 3 Dec 2002 12:13:43 -0800 (PST) From: Nate Lawson To: Julian Elischer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/releases/5.0R todo.sgml In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 3 Dec 2002, Julian Elischer wrote: > has it been fixed to handle disks > 1TB yet? (I have 3 here) > (in the disklabel part) libdisk needs to be fixed to stop treating block > numbers and offsets as signed numbers.. (if not yet done) > (the real fix would be to extend it to use u_int64_t and > add a 'gpt' partition option. but htat can wait until > we get CAM support for write16 and read16.) What, 2.2 TB is too small for you? :) rw16 will be part of CAM-ng -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:16:29 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93C1E37B401; Tue, 3 Dec 2002 12:16:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4102D43EC2; Tue, 3 Dec 2002 12:16:28 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3KCHmV073646; Tue, 3 Dec 2002 12:12:17 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3KCHnR073645; Tue, 3 Dec 2002 12:12:17 -0800 (PST) Message-Id: <200212032012.gB3KCHnR073645@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 12:12:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 12:12:17 PST Modified files: en/releases/5.0R todo.sgml Log: Add gcc 3.2.1 and g++ 3.3 ABI tasks to the "desired list". We're still working on scheduling, so don't commit them to a particular RC yet. Revision Changes Path 1.78 +20 -1 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:18:58 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF55837B401; Tue, 3 Dec 2002 12:18:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E39B43ECF; Tue, 3 Dec 2002 12:18:57 -0800 (PST) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3KEkmV073729; Tue, 3 Dec 2002 12:14:46 -0800 (PST) (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3KEkoh073728; Tue, 3 Dec 2002 12:14:46 -0800 (PST) Message-Id: <200212032014.gB3KEkoh073728@repoman.freebsd.org> From: Jimmy Olgeni Date: Tue, 3 Dec 2002 12:14:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2002/12/03 12:14:46 PST Modified files: . modules Log: The following ports where missing the "ports/" path prefix: devel/ruby-gconf2, graphics/ruby-gdk_pixbuf2, devel/ruby-glib2, x11/ruby-gnome2, x11/ruby-gnome2-all, graphics/ruby-gnomecanvas2, x11-toolkits/ruby-gtk2, graphics/ruby-libart2, devel/ruby-libglade2. Revision Changes Path 1.6340 +9 -9 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:20:13 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B918537B401; Tue, 3 Dec 2002 12:20:12 -0800 (PST) Received: from sccrmhc01.attbi.com (sccrmhc01.attbi.com [204.127.202.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25FFF43E88; Tue, 3 Dec 2002 12:20:12 -0800 (PST) (envelope-from julian@elischer.org) Received: from InterJet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by sccrmhc01.attbi.com (sccrmhc01) with ESMTP id <2002120320201000100r8i71e>; Tue, 3 Dec 2002 20:20:10 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id MAA17883; Tue, 3 Dec 2002 12:17:49 -0800 (PST) Date: Tue, 3 Dec 2002 12:17:49 -0800 (PST) From: Julian Elischer To: Nate Lawson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/releases/5.0R todo.sgml In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 3 Dec 2002, Nate Lawson wrote: > On Tue, 3 Dec 2002, Julian Elischer wrote: > > has it been fixed to handle disks > 1TB yet? (I have 3 here) > > (in the disklabel part) libdisk needs to be fixed to stop treating block > > numbers and offsets as signed numbers.. (if not yet done) > > (the real fix would be to extend it to use u_int64_t and > > add a 'gpt' partition option. but htat can wait until > > we get CAM support for write16 and read16.) > > What, 2.2 TB is too small for you? :) rw16 will be part of CAM-ng I have a 2.8TB array I have been playing with but it has firmware problems. I've backed it down to 1.9TB for now.. Ken has a login on the machine to play with.. :-) > > -Nate > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:20:21 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 020C337B42B; Tue, 3 Dec 2002 12:20:14 -0800 (PST) Received: from sccrmhc01.attbi.com (sccrmhc01.attbi.com [204.127.202.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5F9043EAF; Tue, 3 Dec 2002 12:20:13 -0800 (PST) (envelope-from julian@elischer.org) Received: from InterJet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by sccrmhc01.attbi.com (sccrmhc01) with ESMTP id <2002120320201100100r8i72e>; Tue, 3 Dec 2002 20:20:11 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id MAA17874; Tue, 3 Dec 2002 12:15:25 -0800 (PST) Date: Tue, 3 Dec 2002 12:15:24 -0800 (PST) From: Julian Elischer To: John Baldwin Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Robert Watson Subject: Re: cvs commit: www/en/releases/5.0R todo.sgml In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 3 Dec 2002, John Baldwin wrote: > > On 03-Dec-2002 Julian Elischer wrote: > > has it been fixed to handle disks > 1TB yet? (I have 3 here) > > (in the disklabel part) libdisk needs to be fixed to stop treating block > > numbers and offsets as signed numbers.. (if not yet done) > > (the real fix would be to extend it to use u_int64_t and > > add a 'gpt' partition option. but htat can wait until > > we get CAM support for write16 and read16.) > > No, it's not even close. Do you still have a version of your patch > around? If so, I'll try and update it with the recent changes for you > if need be. I have changed source (has collissions now unfortunatly) for both 4.x and 5.0 on teh test machine biggie.vicor-nb.com It is a scratch machine but it has huge (>1TB) disks (3 of them) so you can test it there if you want.. It has an up-to-date (mirrored sevveral times daily PLUS whenever you run "cvsup /etc/cvsupfile" CVS tree and /usr/src i schecked out.. i.e. a good environment give the word and you can have alogin in fact you already havea wheel account.. login jhb password sysinstall disks twe0, twe1 and da2 are scratch.. do what you wish with them source modified for 4.7 to handle th large disks is in: /mnt/usr/src/lib/libdisk and /mnt/usr/src/release/sysinstall (/mnt is a full 4.x world.. cvs works for the sources checked out there too. so 'cvs diff' will give teh patches for 4.x. the changed sources for 5.x are in /usr/src/usr.sbin/sysinstall.changed and /usr/src/lib/libdisk.changed but I think that they got filled with collissions when I tried to update and the were changed to use 64 bit ints.. a more ambitious change. (but it did work before the collisisons) Julian > > > On Tue, 3 Dec 2002, Robert Watson wrote: > > > >> rwatson 2002/12/03 07:41:42 PST > >> > >> Modified files: > >> en/releases/5.0R todo.sgml > >> Log: > >> Trim the fdisk editor bug -- it's now been fixed thanks to > >> nyan@ and jhb@. Thanks guys :-) > >> > >> Revision Changes Path > >> 1.69 +1 -9 www/en/releases/5.0R/todo.sgml > >> > > > > -- > > John Baldwin <>< http://www.FreeBSD.org/~jhb/ > "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:22:14 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68F2837B401; Tue, 3 Dec 2002 12:22:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14D1443E88; Tue, 3 Dec 2002 12:22:13 -0800 (PST) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3KI1mV074158; Tue, 3 Dec 2002 12:18:01 -0800 (PST) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3KI1Ib074157; Tue, 3 Dec 2002 12:18:01 -0800 (PST) Message-Id: <200212032018.gB3KI1Ib074157@repoman.freebsd.org> From: Søren Schmidt Date: Tue, 3 Dec 2002 12:18:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 ata.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/12/03 12:18:01 PST Modified files: share/man/man4 ata.4 Log: Add support for the PC98 platform to the ATA driver. This mostly consists of functionality to serialize accesses to the two ATA channels (which can also be used to "fix" certain PCI based controllers). Add support for Acard controllers. Enable the ATA driver in PC98 GENERIC, and add device hints. Update man page with latest support. The PC98 core team has kindly provided me with a PC98 machine that made this all possible, thanks to all that contributed to that effort, without that this would probably newer have been possible.. Approved by: re@ Revision Changes Path 1.34 +16 -0 src/share/man/man4/ata.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:22:48 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9481B37B401; Tue, 3 Dec 2002 12:22:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C04F643ECF; Tue, 3 Dec 2002 12:22:46 -0800 (PST) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3KIZmV074200; Tue, 3 Dec 2002 12:18:35 -0800 (PST) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3KIZPX074199; Tue, 3 Dec 2002 12:18:35 -0800 (PST) Message-Id: <200212032018.gB3KIZPX074199@repoman.freebsd.org> From: Søren Schmidt Date: Tue, 3 Dec 2002 12:18:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_pc98.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/12/03 12:18:35 PST Modified files: sys/geom geom_pc98.c Log: Add support for the PC98 platform to the ATA driver. This mostly consists of functionality to serialize accesses to the two ATA channels (which can also be used to "fix" certain PCI based controllers). Add support for Acard controllers. Enable the ATA driver in PC98 GENERIC, and add device hints. Update man page with latest support. The PC98 core team has kindly provided me with a PC98 machine that made this all possible, thanks to all that contributed to that effort, without that this would probably newer have been possible.. Approved by: re@ Revision Changes Path 1.20 +4 -0 src/sys/geom/geom_pc98.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:23:51 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D962C37B401; Tue, 3 Dec 2002 12:23:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93E8843E9C; Tue, 3 Dec 2002 12:23:49 -0800 (PST) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3KJcmV074277; Tue, 3 Dec 2002 12:19:38 -0800 (PST) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3KJcdf074276; Tue, 3 Dec 2002 12:19:38 -0800 (PST) Message-Id: <200212032019.gB3KJcdf074276@repoman.freebsd.org> From: Søren Schmidt Date: Tue, 3 Dec 2002 12:19:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-cbus.c ata-disk.c ata-dma.c ata-isa.c ata-pci.c atapi-fd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/12/03 12:19:38 PST Modified files: sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-dma.c ata-isa.c ata-pci.c atapi-fd.c Added files: sys/dev/ata ata-cbus.c Log: Add support for the PC98 platform to the ATA driver. This mostly consists of functionality to serialize accesses to the two ATA channels (which can also be used to "fix" certain PCI based controllers). Add support for Acard controllers. Enable the ATA driver in PC98 GENERIC, and add device hints. Update man page with latest support. The PC98 core team has kindly provided me with a PC98 machine that made this all possible, thanks to all that contributed to that effort, without that this would probably newer have been possible.. Approved by: re@ Revision Changes Path 1.160 +53 -17 src/sys/dev/ata/ata-all.c 1.55 +18 -10 src/sys/dev/ata/ata-all.h 1.1 +263 -0 src/sys/dev/ata/ata-cbus.c (new) 1.137 +8 -0 src/sys/dev/ata/ata-disk.c 1.106 +142 -0 src/sys/dev/ata/ata-dma.c 1.10 +14 -1 src/sys/dev/ata/ata-isa.c 1.51 +92 -14 src/sys/dev/ata/ata-pci.c 1.79 +4 -0 src/sys/dev/ata/atapi-fd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:24:27 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 573C037B401; Tue, 3 Dec 2002 12:24:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D453743E88; Tue, 3 Dec 2002 12:24:25 -0800 (PST) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3KKEmV074342; Tue, 3 Dec 2002 12:20:14 -0800 (PST) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3KKEdj074341; Tue, 3 Dec 2002 12:20:14 -0800 (PST) Message-Id: <200212032020.gB3KKEdj074341@repoman.freebsd.org> From: Søren Schmidt Date: Tue, 3 Dec 2002 12:20:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/12/03 12:20:14 PST Modified files: sys/conf files Log: Add support for the PC98 platform to the ATA driver. This mostly consists of functionality to serialize accesses to the two ATA channels (which can also be used to "fix" certain PCI based controllers). Add support for Acard controllers. Enable the ATA driver in PC98 GENERIC, and add device hints. Update man page with latest support. The PC98 core team has kindly provided me with a PC98 machine that made this all possible, thanks to all that contributed to that effort, without that this would probably newer have been possible.. Approved by: re@ Revision Changes Path 1.739 +1 -0 src/sys/conf/files To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:24:55 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B387737B401; Tue, 3 Dec 2002 12:24:53 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 985B643ED1; Tue, 3 Dec 2002 12:24:49 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.6/8.12.2) with ESMTP id gB3KOhqe099072; Tue, 3 Dec 2002 12:24:43 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.6/8.12.6/Submit) id gB3KNS29099057; Tue, 3 Dec 2002 12:23:28 -0800 (PST) Date: Tue, 3 Dec 2002 12:23:28 -0800 From: "David O'Brien" To: Brooks Davis Cc: Kirk McKusick , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/dump dump.8 main.c Message-ID: <20021203202328.GA98990@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org Mail-Followup-To: David O'Brien , Brooks Davis , Kirk McKusick , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200212031821.gB3IL9qc066627@repoman.freebsd.org> <20021203104801.A18375@Odin.AC.HMC.Edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021203104801.A18375@Odin.AC.HMC.Edu> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Dec 03, 2002 at 10:48:01AM -0800, Brooks Davis wrote: > Would it be possiable/reasionable to add an out of band way to control > this such as the existance of a file or a compile time option? I ask > because some backup systems like amanda don't do a good job of letting > you specify arguments to dump since dump support is rather hardwired. I'd like to see a DUMP_OPTIONS env var analagious to the {GREP,DIFF,GCC}_OPTIONS we have already. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:25: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B06737B429; Tue, 3 Dec 2002 12:24:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96A3643EA9; Tue, 3 Dec 2002 12:24:55 -0800 (PST) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3KKimV074432; Tue, 3 Dec 2002 12:20:44 -0800 (PST) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3KKi5F074431; Tue, 3 Dec 2002 12:20:44 -0800 (PST) Message-Id: <200212032020.gB3KKi5F074431@repoman.freebsd.org> From: Søren Schmidt Date: Tue, 3 Dec 2002 12:20:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/conf GENERIC GENERIC.hints X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/12/03 12:20:44 PST Modified files: sys/pc98/conf GENERIC GENERIC.hints Log: Add support for the PC98 platform to the ATA driver. This mostly consists of functionality to serialize accesses to the two ATA channels (which can also be used to "fix" certain PCI based controllers). Add support for Acard controllers. Enable the ATA driver in PC98 GENERIC, and add device hints. Update man page with latest support. The PC98 core team has kindly provided me with a PC98 machine that made this all possible, thanks to all that contributed to that effort, without that this would probably newer have been possible.. Approved by: re@ Revision Changes Path 1.221 +10 -2 src/sys/pc98/conf/GENERIC 1.16 +5 -0 src/sys/pc98/conf/GENERIC.hints To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:25:14 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F76937B40A; Tue, 3 Dec 2002 12:25:09 -0800 (PST) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id A534043EA9; Tue, 3 Dec 2002 12:25:08 -0800 (PST) (envelope-from julian@elischer.org) Received: from InterJet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by sccrmhc02.attbi.com (sccrmhc02) with ESMTP id <200212032025070020027vjce>; Tue, 3 Dec 2002 20:25:07 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id MAA17951; Tue, 3 Dec 2002 12:24:13 -0800 (PST) Date: Tue, 3 Dec 2002 12:24:12 -0800 (PST) From: Julian Elischer To: John Baldwin Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Robert Watson Subject: Re: cvs commit: www/en/releases/5.0R todo.sgml In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 3 Dec 2002, Julian Elischer wrote: > > > On Tue, 3 Dec 2002, John Baldwin wrote: > > > > > On 03-Dec-2002 Julian Elischer wrote: > > > has it been fixed to handle disks > 1TB yet? (I have 3 here) > > > (in the disklabel part) libdisk needs to be fixed to stop treating block > > > numbers and offsets as signed numbers.. (if not yet done) > > > (the real fix would be to extend it to use u_int64_t and > > > add a 'gpt' partition option. but htat can wait until > > > we get CAM support for write16 and read16.) > > > > No, it's not even close. Do you still have a version of your patch > > around? If so, I'll try and update it with the recent changes for you > > if need be. > > I have changed source (has collissions now unfortunatly) > for both 4.x and 5.0 on teh test machine biggie.vicor-nb.com > It is a scratch machine but it has huge (>1TB) disks (3 of them) > so you can test it there if you want.. > It has an up-to-date (mirrored sevveral times daily > PLUS whenever you run "cvsup /etc/cvsupfile" CVS tree > and /usr/src i schecked out.. i.e. a good environment > > give the word and you can have alogin > > in fact you already havea wheel account.. > login jhb > password sysinstall > > disks twe0, twe1 and da2 are scratch.. > do what you wish with them > > source modified for 4.7 to handle th large disks is in: > /mnt/usr/src/lib/libdisk > and > /mnt/usr/src/release/sysinstall > (/mnt is a full 4.x world.. cvs works for the sources checked out there > too. so 'cvs diff' will give teh patches for 4.x. > > the changed sources for 5.x are in /usr/src/usr.sbin/sysinstall.changed > and /usr/src/lib/libdisk.changed > > but I think that they got filled with collissions when I tried to update > and the were changed to use 64 bit ints.. a more ambitious change. > (but it did work before the collisisons) > Actually the origianl 64 bit patches are in /tmp/64bit.diff and I think there is a less ambitious 32bit version in /tmp/diffs.current, but I don't remember if I completed them. > > > > > Julian > > > > > > On Tue, 3 Dec 2002, Robert Watson wrote: > > > > > >> rwatson 2002/12/03 07:41:42 PST > > >> > > >> Modified files: > > >> en/releases/5.0R todo.sgml > > >> Log: > > >> Trim the fdisk editor bug -- it's now been fixed thanks to > > >> nyan@ and jhb@. Thanks guys :-) > > >> > > >> Revision Changes Path > > >> 1.69 +1 -9 www/en/releases/5.0R/todo.sgml > > >> > > > > > > > -- > > > > John Baldwin <>< http://www.FreeBSD.org/~jhb/ > > "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:28:43 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0082337B401; Tue, 3 Dec 2002 12:28:42 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-64-169-106-47.dsl.lsan03.pacbell.net [64.169.106.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC74143E88; Tue, 3 Dec 2002 12:28:35 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 4A30566C61; Tue, 3 Dec 2002 12:28:35 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 8BFF91348; Tue, 3 Dec 2002 12:28:34 -0800 (PST) Date: Tue, 3 Dec 2002 12:28:34 -0800 From: Kris Kennaway To: Gerald Pfeifer Cc: Akinori MUSHA , Mark Pulford , cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: ports/MOVED (was: cvs commit: CVSROOT modules ports/palm Makefile ports/palm/xcopilot Makefile distinfo pkg-comment pkg-descr pkg-plist ports/palm/xcopilot/files patch-aa patch-ab) Message-ID: <20021203202834.GB18290@rot13.obsecurity.org> References: <200211241246.gAOCkUNn067389@repoman.freebsd.org> <86n0nzm8d5.wl@archon.local.idaemons.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cNdxnHkX5QqsyA0e" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --cNdxnHkX5QqsyA0e Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 03, 2002 at 12:29:55PM +0100, Gerald Pfeifer wrote: > On Sun, 24 Nov 2002, Akinori MUSHA wrote: > > Add a ports/MOVED entry, please. (palm/xcopilot -> palm/pose) >=20 > BTW, is ports/MOVED documented somewhere (for new developers,...)? >=20 > The FreeBSD Porter's Handbook doesn't seem to mention it, but perhaps > I missed something obvious? I think it was added to the committer's guide (the section about moving/removing ports). Kris --cNdxnHkX5QqsyA0e Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE97RPyWry0BWjoQKURAmIdAKDMutqOQK8sOL1akcvvz9t7I/4+qQCfSOoX 5IRa8I53g1QWWllc+mhdgR0= =merW -----END PGP SIGNATURE----- --cNdxnHkX5QqsyA0e-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:29:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B31F537B407; Tue, 3 Dec 2002 12:29:20 -0800 (PST) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECAE743E9C; Tue, 3 Dec 2002 12:29:19 -0800 (PST) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (IDENT:brdavis@localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.12.3/8.12.3) with ESMTP id gB3KT7h0012125; Tue, 3 Dec 2002 12:29:07 -0800 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.12.3/8.12.3/Submit) id gB3KT6bf012120; Tue, 3 Dec 2002 12:29:06 -0800 Date: Tue, 3 Dec 2002 12:29:06 -0800 From: Brooks Davis To: Nate Lawson Cc: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: www/en/releases/5.0R todo.sgml Message-ID: <20021203122906.B4936@Odin.AC.HMC.Edu> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="mojUlQ0s9EVzWg2t" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from nate@root.org on Tue, Dec 03, 2002 at 12:13:43PM -0800 X-Virus-Scanned: by amavisd-milter (http://amavis.org/) on odin.ac.hmc.edu Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --mojUlQ0s9EVzWg2t Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 03, 2002 at 12:13:43PM -0800, Nate Lawson wrote: > On Tue, 3 Dec 2002, Julian Elischer wrote: > > has it been fixed to handle disks > 1TB yet? (I have 3 here) > > (in the disklabel part) libdisk needs to be fixed to stop treating block > > numbers and offsets as signed numbers.. (if not yet done) > > (the real fix would be to extend it to use u_int64_t and > > add a 'gpt' partition option. but htat can wait until > > we get CAM support for write16 and read16.) >=20 > What, 2.2 TB is too small for you? :) rw16 will be part of CAM-ng Once the Maxtor MaxLine II's ship in volume, you'll be able to configure a single RAID5 volume one a 12-port 3Ware controler with 3.2TB of space. With the new 16-drive 3U chassis from rackable, you'll be able to get all the way to 4TB with a little help from some software striping. It would be nice it we had the support in place before this happened since I'm looking at using big ATA RAIDs for incremental backups. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --mojUlQ0s9EVzWg2t Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE97RQRXY6L6fI4GtQRArUgAJ9bliDJhs4O3RevtiIORc51usECTQCfUUP1 PL7QamntD2oC5JT83NOfiOo= =i53G -----END PGP SIGNATURE----- --mojUlQ0s9EVzWg2t-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:30:14 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B2B537B401; Tue, 3 Dec 2002 12:30:13 -0800 (PST) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id B785643EA9; Tue, 3 Dec 2002 12:30:12 -0800 (PST) (envelope-from julian@elischer.org) Received: from InterJet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by sccrmhc02.attbi.com (sccrmhc02) with ESMTP id <2002120320301100200t4u6ae>; Tue, 3 Dec 2002 20:30:11 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id MAA18062; Tue, 3 Dec 2002 12:30:08 -0800 (PST) Date: Tue, 3 Dec 2002 12:30:06 -0800 (PST) From: Julian Elischer To: John Baldwin Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Robert Watson Subject: Re: cvs commit: www/en/releases/5.0R todo.sgml In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Obviously the login and password broadcast to the world ar NOT valid now :-/ julian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:35:31 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E95B337B401; Tue, 3 Dec 2002 12:35:29 -0800 (PST) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6385F43EB2; Tue, 3 Dec 2002 12:35:29 -0800 (PST) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (IDENT:brdavis@localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.12.3/8.12.3) with ESMTP id gB3KZQh0013643; Tue, 3 Dec 2002 12:35:26 -0800 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.12.3/8.12.3/Submit) id gB3KZIdL013611; Tue, 3 Dec 2002 12:35:18 -0800 Date: Tue, 3 Dec 2002 12:35:17 -0800 From: Brooks Davis To: "David O'Brien" , Brooks Davis , Kirk McKusick , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/dump dump.8 main.c Message-ID: <20021203123516.C4936@Odin.AC.HMC.Edu> References: <200212031821.gB3IL9qc066627@repoman.freebsd.org> <20021203104801.A18375@Odin.AC.HMC.Edu> <20021203202328.GA98990@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="eHhjakXzOLJAF9wJ" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20021203202328.GA98990@dragon.nuxi.com>; from obrien@FreeBSD.org on Tue, Dec 03, 2002 at 12:23:28PM -0800 X-Virus-Scanned: by amavisd-milter (http://amavis.org/) on odin.ac.hmc.edu Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --eHhjakXzOLJAF9wJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 03, 2002 at 12:23:28PM -0800, David O'Brien wrote: > On Tue, Dec 03, 2002 at 10:48:01AM -0800, Brooks Davis wrote: > > Would it be possiable/reasionable to add an out of band way to control > > this such as the existance of a file or a compile time option? I ask > > because some backup systems like amanda don't do a good job of letting > > you specify arguments to dump since dump support is rather hardwired. >=20 > I'd like to see a DUMP_OPTIONS env var analagious to the > {GREP,DIFF,GCC}_OPTIONS we have already. That would work for my purposes and it seems generally usable. Using this with amanda would probably require the slighly ugly hack of using /usr/bin/env in inetd.conf, but that's ok. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --eHhjakXzOLJAF9wJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE97RV9XY6L6fI4GtQRAtyfAKDITCEngLRA4pL2iUlhstTX60pR8QCfXffQ 0IQz83SoCfT+Cq+W3NXXDII= =4/GC -----END PGP SIGNATURE----- --eHhjakXzOLJAF9wJ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 12:47:59 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAA9F37B401; Tue, 3 Dec 2002 12:47:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A5A643E9C; Tue, 3 Dec 2002 12:47:58 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3KhlmV075966; Tue, 3 Dec 2002 12:43:47 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3Khlwe075965; Tue, 3 Dec 2002 12:43:47 -0800 (PST) Message-Id: <200212032043.gB3Khlwe075965@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 12:43:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R todo.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 12:43:47 PST Modified files: en/releases/5.0R todo.sgml Log: Un-chown inpcb panic to mux -- his crash dump is unrelated. Revision Changes Path 1.79 +3 -3 www/en/releases/5.0R/todo.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 13: 6:39 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 520EC37B401; Tue, 3 Dec 2002 13:06:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 000DE43EA9; Tue, 3 Dec 2002 13:06:37 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3L2QmV077173; Tue, 3 Dec 2002 13:02:26 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3L2QlL077172; Tue, 3 Dec 2002 13:02:26 -0800 (PST) Message-Id: <200212032102.gB3L2QlL077172@repoman.freebsd.org> From: John Baldwin Date: Tue, 3 Dec 2002 13:02:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall menus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/12/03 13:02:26 PST Modified files: usr.sbin/sysinstall menus.c Log: Oops, forgot this cosmetic tweak to the perl menu item in my previous commit. Approved by: re (this is what they actually reviewed) Revision Changes Path 1.362 +1 -1 src/usr.sbin/sysinstall/menus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 13: 8:20 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE41437B401; Tue, 3 Dec 2002 13:08:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6991843EAF; Tue, 3 Dec 2002 13:08:19 -0800 (PST) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3L48mV077234; Tue, 3 Dec 2002 13:04:08 -0800 (PST) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3L48E1077233; Tue, 3 Dec 2002 13:04:08 -0800 (PST) Message-Id: <200212032104.gB3L48E1077233@repoman.freebsd.org> From: Marc Fonvieille Date: Tue, 3 Dec 2002 13:04:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG blackend 2002/12/03 13:04:08 PST Modified files: en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml Log: Add more infos about devfs(5). Revision Changes Path 1.155 +3 -2 doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 14: 3:55 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FF1037B401; Tue, 3 Dec 2002 14:03:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DB9243E9C; Tue, 3 Dec 2002 14:03:54 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3LxgmV080891; Tue, 3 Dec 2002 13:59:42 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3LxgCY080890; Tue, 3 Dec 2002 13:59:42 -0800 (PST) Message-Id: <200212032159.gB3LxgCY080890@repoman.freebsd.org> From: Peter Wemm Date: Tue, 3 Dec 2002 13:59:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/cvs/lib config.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/12/03 13:59:42 PST Modified files: gnu/usr.bin/cvs/lib config.h Log: Oops. Use the correct version number. The number that was here was the one that I originally used on freefall etc. Approved by: re Revision Changes Path 1.13 +1 -1 src/gnu/usr.bin/cvs/lib/config.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 14:30: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A663537B410; Tue, 3 Dec 2002 14:29:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4312D43EB2; Tue, 3 Dec 2002 14:29:59 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3MPlmV082358; Tue, 3 Dec 2002 14:25:47 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3MPlqU082357; Tue, 3 Dec 2002 14:25:47 -0800 (PST) Message-Id: <200212032225.gB3MPlqU082357@repoman.freebsd.org> From: Robert Watson Date: Tue, 3 Dec 2002 14:25:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall install.c label.c sysinstall.h src/usr.sbin/sysinstall/help partition.hlp X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/12/03 14:25:47 PST Modified files: usr.sbin/sysinstall install.c label.c sysinstall.h usr.sbin/sysinstall/help partition.hlp Log: Reformulate how sysinstall handles file system options in the label editor, in order to support specifying UFS2 as a newfs option. (1) Support three different newfs types: NEWFS_UFS, NEWFS_MSDOS, and NEWFS_CUSTOM. Don't mix up the arguments to them: you can't use soft updates on an msdos file system. (2) Distinguish adding new arguments to the newfs command line from replacing it. Permit the addition of new arguments by the user for NEWFS_UFS. If we entirely replace the command line provided by sysinstall, call it NEWFS_CUSTOM. 'N' will now add additional arguments; 'Z' will opt to replace the newfs command line entirely, but will prompt the user with their current command line as a starting point. (3) Construct the newfs command line dynamically based on the options provided by the user at label-time. Right now, this means selecting UFS1 vs. UFS2, and the soft updates flag. Drop in some variables to support ACLs and MAC Multilabel in the future also, but don't expose them now. This provides sysinstall with the ability to do more "in band" editing of the newfs command line, so we can provide more support for the user, but doesn't sacrifice the ability to entirely specify the newfs command line of the user is willing to give up on the cushiness factor. It also makes it easier for us to specify defaults in the future, and define conditional behavior based on user configuration selections. For now, we default to UFS1, and permit UFS2 to be used as the root only on non-i386 systems. While I was there, I dropped the default fragment and block sizes, since newfs has much more sensible defaults now. Reviewed by: jhb, marcel Approved by: re ia64 bits from: marcel Revision Changes Path 1.9 +27 -0 src/usr.sbin/sysinstall/help/partition.hlp 1.338 +78 -13 src/usr.sbin/sysinstall/install.c 1.132 +150 -50 src/usr.sbin/sysinstall/label.c 1.237 +31 -6 src/usr.sbin/sysinstall/sysinstall.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 15: 7:59 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D61937B401; Tue, 3 Dec 2002 15:07:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBC8943E4A; Tue, 3 Dec 2002 15:07:57 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3N3kmV084775; Tue, 3 Dec 2002 15:03:46 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3N3kX1084774; Tue, 3 Dec 2002 15:03:46 -0800 (PST) Message-Id: <200212032303.gB3N3kX1084774@repoman.freebsd.org> From: "Bruce A. Mah" Date: Tue, 3 Dec 2002 15:03:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/12/03 15:03:45 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes: adduser(8)/rmuser(8) and the Great Perl Rewrite, dump(8) -L. Modified release notes: DEVICE_POLLING for nge(4) [1], clarification of some UFS2 items, Perl distribution in sysinstall. Submitted by: Hiten Pandya [1] Approved by: re (implicitly) Revision Changes Path 1.464 +20 -6 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 15: 9:39 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD58837B401; Tue, 3 Dec 2002 15:09:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2373843E4A; Tue, 3 Dec 2002 15:09:38 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3N5QmV084901; Tue, 3 Dec 2002 15:05:26 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3N5Qpn084900; Tue, 3 Dec 2002 15:05:26 -0800 (PST) Message-Id: <200212032305.gB3N5Qpn084900@repoman.freebsd.org> From: "Bruce A. Mah" Date: Tue, 3 Dec 2002 15:05:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/12/03 15:05:26 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: nge(4) and device polling. Revision Changes Path 1.22.2.313 +2 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 15:25:27 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0811B37B401; Tue, 3 Dec 2002 15:25:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A54C043EBE; Tue, 3 Dec 2002 15:25:26 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB3NLEmV086135; Tue, 3 Dec 2002 15:21:14 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB3NLEQA086134; Tue, 3 Dec 2002 15:21:14 -0800 (PST) Message-Id: <200212032321.gB3NLEQA086134@repoman.freebsd.org> From: "David E. O'Brien" Date: Tue, 3 Dec 2002 15:21:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc31 Makefile ports/lang/gcc32 Makefile ports/lang/gcc33 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/12/03 15:21:14 PST Modified files: lang/gcc31 Makefile lang/gcc32 Makefile lang/gcc33 Makefile Log: Use the most modern spelling of egcs.cygnus.com. Revision Changes Path 1.137 +1 -1 ports/lang/gcc31/Makefile 1.137 +1 -1 ports/lang/gcc32/Makefile 1.123 +1 -1 ports/lang/gcc33/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 16:11:28 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2C0437B401; Tue, 3 Dec 2002 16:11:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60F5A43E9C; Tue, 3 Dec 2002 16:11:27 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB407FmV089006; Tue, 3 Dec 2002 16:07:15 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB407Fik089005; Tue, 3 Dec 2002 16:07:15 -0800 (PST) Message-Id: <200212040007.gB407Fik089005@repoman.freebsd.org> From: Peter Wemm Date: Tue, 3 Dec 2002 16:07:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/cvs/lib config.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/12/03 16:07:15 PST Modified files: gnu/usr.bin/cvs/lib config.h Log: Sigh. Another wrong version string. However, this one isn't used in the build. Approved by: re Revision Changes Path 1.14 +1 -1 src/gnu/usr.bin/cvs/lib/config.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 17:13:15 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C05537B401; Tue, 3 Dec 2002 17:13:13 -0800 (PST) Received: from kayak.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B90043E88; Tue, 3 Dec 2002 17:13:12 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by kayak.xcllnt.net (8.12.6/8.12.6) with ESMTP id gB41DCrT024854; Tue, 3 Dec 2002 17:13:12 -0800 (PST) (envelope-from marcel@kayak.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.6/8.12.6) with ESMTP id gB41DCfu000989; Tue, 3 Dec 2002 17:13:12 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.6/8.12.6/Submit) id gB41D7tv000988; Tue, 3 Dec 2002 17:13:07 -0800 (PST) Date: Tue, 3 Dec 2002 17:13:07 -0800 From: Marcel Moolenaar To: =?iso-8859-1?Q?S=F8ren?= Schmidt Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Serializing ATA channels [was: Re: cvs commit: src/share/man/man4 ata.4] Message-ID: <20021204011307.GA915@athlon.pn.xcllnt.net> References: <200212032018.gB3KI1Ib074157@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200212032018.gB3KI1Ib074157@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Dec 03, 2002 at 12:18:01PM -0800, Søren Schmidt wrote: > sos 2002/12/03 12:18:01 PST > > Modified files: > share/man/man4 ata.4 > Log: > Add support for the PC98 platform to the ATA driver. > This mostly consists of functionality to serialize accesses to > the two ATA channels (which can also be used to "fix" certain > PCI based controllers). I have an ATA controller that Linux marks as having a bug and serializes both channels as a way to work around the bug. Given the added functionality, am I right in assuming that we can do the same in a pretty straightforward way? Some details (for fun): FreeBSD 5.0-CURRENT #147: Fri Nov 29 21:44:17 PST 2002 marcel@mckinley.pn.xcllnt.net:/nfs/p4/ia64/sys/ia64/compile/HP_RX2600 : atapci0: port 0xd40-0xd4f,0xd60-0xd63,0xd50-0xd57,0xd64-0xd67,0xd58-0xd5f irq 21 at device 2.0 on pci0 ata2: at 0xd58 on atapci0 ata3: at 0xd50 on atapci0 : ata2-slave: timeout waiting for interrupt ata2-slave: ATAPI identify failed : acd0: DVD-ROM at ata2-master PIO4 mckinley% sudo atacontrol info 1 mckinley% sudo atacontrol info 2 Master: acd0 ATA/ATAPI rev 5 Slave: no device present mckinley% sudo atacontrol info 3 Master: no device present Slave: no device present -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 18:52:59 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC91937B401; Tue, 3 Dec 2002 18:52:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5721743EC2; Tue, 3 Dec 2002 18:52:58 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB42mjmV098866; Tue, 3 Dec 2002 18:48:45 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB42mj3Y098865; Tue, 3 Dec 2002 18:48:45 -0800 (PST) Message-Id: <200212040248.gB42mj3Y098865@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Tue, 3 Dec 2002 18:48:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/multimedia chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2002/12/03 18:48:45 PST Modified files: en_US.ISO8859-1/books/handbook/multimedia chapter.sgml Log: xmms was moved from audio to multimedia category Revision Changes Path 1.46 +1 -1 doc/en_US.ISO8859-1/books/handbook/multimedia/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 19:46:48 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3150E37B401; Tue, 3 Dec 2002 19:46:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0FA043EC2; Tue, 3 Dec 2002 19:46:47 -0800 (PST) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB43gZmV002856; Tue, 3 Dec 2002 19:42:35 -0800 (PST) (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB43gZUK002855; Tue, 3 Dec 2002 19:42:35 -0800 (PST) Message-Id: <200212040342.gB43gZUK002855@repoman.freebsd.org> From: Eric Anholt Date: Tue, 3 Dec 2002 19:42:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/XFree86-4-libraries/files patch-XlcDL.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anholt 2002/12/03 19:42:34 PST Added files: x11/XFree86-4-libraries/files patch-XlcDL.c Log: Make XFree86-4-libraries build on ia64 Submitted by: marcel Approved by: portmgr Revision Changes Path 1.1 +15 -0 ports/x11/XFree86-4-libraries/files/patch-XlcDL.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 19:48:52 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87E9D37B401; Tue, 3 Dec 2002 19:48:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3561543EC2; Tue, 3 Dec 2002 19:48:51 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB43icmV002964; Tue, 3 Dec 2002 19:44:38 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB43icxE002963; Tue, 3 Dec 2002 19:44:38 -0800 (PST) Message-Id: <200212040344.gB43icxE002963@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 3 Dec 2002 19:44:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/gnumail Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/12/03 19:44:38 PST Modified files: mail/gnumail Makefile Log: - update MASTER_SITES - http://bento.freebsd.org/errorlogs/5-full/gnumail-1.0.3.log PR: 45973 Submitted by: flynn@christine.energyhq.k Revision Changes Path 1.14 +2 -1 ports/mail/gnumail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 20:21:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C35237B401; Tue, 3 Dec 2002 20:21:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3704443ECD; Tue, 3 Dec 2002 20:21:41 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB44HSmV005100; Tue, 3 Dec 2002 20:17:28 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB44HSku005099; Tue, 3 Dec 2002 20:17:28 -0800 (PST) Message-Id: <200212040417.gB44HSku005099@repoman.freebsd.org> From: "Bruce A. Mah" Date: Tue, 3 Dec 2002 20:17:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/readme article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/12/03 20:17:28 PST Modified files: release/doc/en_US.ISO8859-1/readme article.sgml Log: Fix minor gramm-o. Submitted by: keramida Approved by: re (implicitly) Revision Changes Path 1.19 +1 -1 src/release/doc/en_US.ISO8859-1/readme/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 20:39:13 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E422837B401; Tue, 3 Dec 2002 20:39:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9125043EBE; Tue, 3 Dec 2002 20:39:12 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB44YxmV005873; Tue, 3 Dec 2002 20:34:59 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB44YxKb005872; Tue, 3 Dec 2002 20:34:59 -0800 (PST) Message-Id: <200212040434.gB44YxKb005872@repoman.freebsd.org> From: Jake Burkholder Date: Tue, 3 Dec 2002 20:34:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libfetch Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2002/12/03 20:34:59 PST Modified files: lib/libfetch Makefile Log: Reduce WARNS level to 3 in the non-crypto case to fix make release on sparc64. This may only be turning up now to changes in the cpp predefines for sparc64, which may be turning on more strict alignment checking. Approved by: re Revision Changes Path 1.37 +1 -1 src/lib/libfetch/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 3 21:26:20 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8C8437B401; Tue, 3 Dec 2002 21:26:00 -0800 (PST) Received: from watery.cc.kogakuin.ac.jp (watery.cc.kogakuin.ac.jp [133.80.152.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B45F43EB2; Tue, 3 Dec 2002 21:25:59 -0800 (PST) (envelope-from nyan@jp.FreeBSD.org) Received: from localhost (localhost [IPv6:::1]) by watery.cc.kogakuin.ac.jp (8.12.6/8.12.6) with ESMTP id gB45Ppnq054053; Wed, 4 Dec 2002 14:25:52 +0900 (JST) (envelope-from nyan@jp.FreeBSD.org) Date: Wed, 04 Dec 2002 14:24:45 +0900 (JST) Message-Id: <20021204.142445.39208982.nyan@jp.FreeBSD.org> To: sos@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-cbus.c ata-disk.c ata-dma.c ata-isa.c ata-pci.c atapi-fd.c From: Takahashi Yoshihiro In-Reply-To: <200212032019.gB3KJcdf074276@repoman.freebsd.org> References: <200212032019.gB3KJcdf074276@repoman.freebsd.org> X-Mailer: Mew version 2.3 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Wed_Dec__4_14:24:45_2002_336)--" Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----Next_Part(Wed_Dec__4_14:24:45_2002_336)-- Content-Type: Text/Plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable In article <200212032019.gB3KJcdf074276@repoman.freebsd.org> S=F8ren Schmidt writes: > sos 2002/12/03 12:19:38 PST > Add support for the PC98 platform to the ATA driver. > This mostly consists of functionality to serialize accesses to > the two ATA channels (which can also be used to "fix" certain > PCI based controllers). I have tested the ata driver. But, I can't use the ad1 and ad2 devices. A old kernel with the wd driver has no problem. I attach the dmesgs and geoms. # mount -t msdos /dev/ad1s1 /mnt msdosfs: /dev/ad1s1: Invalid argument # mount -t msdos /dev/ad2s1 /mnt msdosfs: /dev/ad2s1: Invalid argument And, I heard two other reports about your ata patch. They both were their machine hung up at probing ATA devices. BTW, I think ata-isa.c is not necessary for pc98. So, the entry should be moved to MD files. The patch is also attached. --- TAKAHASHI Yoshihiro ----Next_Part(Wed_Dec__4_14:24:45_2002_336)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ata.dmesg" Copyright (c) 1992-2002 The FreeBSD Project. Copyright (c) 1994-2002 FreeBSD(98) porting team. Copyright (c) 1992 A.Kojima F.Ukai M.Ishii (KMC). Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #92: Wed Dec 4 11:59:17 JST 2002 nyan@cerberus.ccs.furiru.org:/usr/src/sys/pc98/compile/YUE Preloaded elf kernel "/boot/kernel.t/kernel" at 0xc0461000. Calibrating clock(s) ... TSC clock: 198948506 Hz, i8254 clock: 2457610 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 2457600 Hz CLK_USE_TSC_CALIBRATION not specified - using old calibration method TSC initialization skipped: APM enabled. CPU: Pentium Pro (198.95-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x616 Stepping = 6 Features=0xf9ff real memory = 134217728 (128 MB) Physical memory chunk(s): 0x00001000 - 0x0009ffff, 651264 bytes (159 pages) 0x00488000 - 0x00efffff, 10977280 bytes (2680 pages) 0x01000000 - 0x07ff7fff, 117407744 bytes (28664 pages) avail memory = 124477440 (118 MB) bios32: Found BIOS32 Service Directory header at 0xc00f4c40 bios32: Entry = 0xf5612 (c00f5612) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xd90b0+0x1c56b pnpbios: Found PnP BIOS data at 0xc00f51b0 pnpbios: Entry = d8000:3a Rev = 1.0 pnpbios: OEM ID 38394350 Other BIOS signatures found: Initializing GEOMetry subsystem null: random: mem: Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pci_open(1): mode 1 addr port (0x0cf8) is 0x8000005c pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=12378086) pcibios: BIOS_PRESENT call failed apm0: at port 0x6b8e on motherboard apm0: found APM BIOS v1.11, connected at v1.0 pcib0: at pcibus 0 on motherboard pci0: on pcib0 pci0: physical bus=0 found-> vendor=0x8086, dev=0x1237, revid=0x02 bus=0, slot=0, func=0 class=06-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0006, statreg=0x2280, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1033, dev=0x002c, revid=0x01 bus=0, slot=6, func=0 class=06-80-00, hdrtype=0x00, mfdev=0 cmdreg=0x0107, statreg=0x0200, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1033, dev=0x0009, revid=0x02 bus=0, slot=7, func=0 class=03-80-00, hdrtype=0x00, mfdev=0 cmdreg=0x0003, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) map[10]: type 1, range 32, base 20000000, size 22, enabled map[14]: type 1, range 32, base 20400000, size 16, enabled map[18]: type 1, range 32, base 20800000, size 22, enabled found-> vendor=0x1023, dev=0x9660, revid=0xd3 bus=0, slot=8, func=0 class=03-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0002, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=255 map[10]: type 3, range 32, base 20410000, size 12, enabled map[14]: type 4, range 32, base 00006000, size 5, enabled map[18]: type 1, range 32, base 20500000, size 20, enabled found-> vendor=0x8086, dev=0x1229, revid=0x01 bus=0, slot=11, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0147, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x57 (2610 ns), mingnt=0x08 (2000 ns), maxlat=0x38 (14000 ns) intpin=a, irq=3 map[10]: type 4, range 32, base 00006100, size 8, enabled map[14]: type 1, range 32, base 20411000, size 12, enabled found-> vendor=0x9004, dev=0x8178, revid=0x00 bus=0, slot=16, func=0 class=01-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0157, statreg=0x0280, cachelnsz=0 (dwords) lattimer=0x54 (2520 ns), mingnt=0x08 (2000 ns), maxlat=0x08 (2000 ns) intpin=a, irq=3 PCI-ISA bridge with incorrect subclass 0x80 PCI-ISA bridge with incorrect subclass 0x80 isab0: at device 6.0 on pci0 isa0: on isab0 pci0: at device 7.0 (no driver attached) pci0: at device 8.0 (no driver attached) fxp0: port 0x6000-0x601f mem 0x20500000-0x205fffff,0x20410000-0x20410fff irq 3 at device 11.0 on pci0 fxp0: using memory space register mapping fxp0: Ethernet address 00:00:4c:8d:1b:04 fxp0: PCI IDs: 8086 1229 0000 0000 0001 fxp0: Dynamic Standby mode is disabled nsphy0: on miibus0 nsphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp0: bpf attached ahc0: port 0x6100-0x61ff mem 0x20411000-0x20411fff irq 3 at device 16.0 on pci0 ahc0: Defaulting to MEMIO off ahc0: Reading SEEPROM...done. ahc0: internal 50 cable not present ahc0: external cable not present ahc0: BIOS eeprom is present ahc0: Low byte termination Enabled ahc0: Downloading Sequencer Program... 418 instructions downloaded aic7880: Ultra Single Channel A, SCSI Id=7, 16/253 SCBs Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 pnpbios: error 0/82 getting device count/size limit pnpbios: 1 devices, largest 0 bytes pnpbios: error 0x82 fetching node 0 gdc: gdc0 already exists; skipping it sc: sc0 already exists; skipping it isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices orm0: tags * Re-word those things that in their current state may to some appear in some ways as possibly overly wordy * Note the applicability of some GNOMENG options for GNOME 2 ports * Move the discussion of the deprecated USE_* macros from the top to the bottom Approved by: pat Revision Changes Path 1.25 +44 -43 www/en/gnome/docs/porting.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Dec 7 23: 7:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB4F237B401; Sat, 7 Dec 2002 23:07:40 -0800 (PST) Received: from vectors.cx (manifold.vectors.cx [64.163.147.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E8EE43EA9; Sat, 7 Dec 2002 23:07:40 -0800 (PST) (envelope-from monkey@vectors.cx) Received: from vectors.cx (58f219ad32e60b9bfdae370215aebb71@localhost [127.0.0.1]) by vectors.cx (8.12.6/8.12.4) with ESMTP id gB87A7I8025341; Sat, 7 Dec 2002 23:10:07 -0800 (PST) (envelope-from monkey@vectors.cx) Received: (from monkey@localhost) by vectors.cx (8.12.6/8.12.6/Submit) id gB87A7Uw025340; Sat, 7 Dec 2002 23:10:07 -0800 (PST) (envelope-from monkey) Date: Sat, 7 Dec 2002 23:10:06 -0800 From: Adam Weinberger To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/gnome/docs porting.sgml Message-ID: <20021208071006.GB25101@vectors.cx> References: <200212080659.gB86xiv0045914@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline In-Reply-To: <200212080659.gB86xiv0045914@repoman.freebsd.org> X-Editor: Vim 6.1 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-PGP-Key: http://www.vectors.cx/pgp.key.txt X-URL: http://www.vectors.cx http://www.crackula.com User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 >> (12.07.2002 @ 2259 PST): Adam Weinberger said, in 0.6K: << > * Fix grammar nits > * Fix spelling nits >> end of "cvs commit: www/en/gnome/docs porting.sgml" from Adam Weinberger << What is a "nit"? According to 'dict nit', a nit is: * a type of grass * a measure of luminance * larvae of a parasite The best extrapolation I can come up with is for the third interpretation, as "a little something that sucks." # Adam - -- Adam Weinberger vectors.cx >> adam@vectors.cx FreeBSD.org << adamw@FreeBSD.ORG Bayer Berkeley >> adam.weinberger.b@bayer.com #vim:set ts=8: 8-char tabs prevent tooth decay. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE98vBOo8KM2ULHQ/0RAkamAKC2nD0QFakWKZrUcMsK2DwTb+6EKQCeLE46 fGiYzHUKZ+ed6Rf/bdZuG88= =c4ij -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Dec 7 23: 8:23 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85CEB37B401; Sat, 7 Dec 2002 23:08:21 -0800 (PST) Received: from blues.jpj.net (blues.jpj.net [208.210.80.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65FFC43EA9; Sat, 7 Dec 2002 23:08:20 -0800 (PST) (envelope-from trevor@jpj.net) Received: from blues.jpj.net (localhost.jpj.net [127.0.0.1]) by blues.jpj.net (8.12.3/8.12.3) with ESMTP id gB878EV3000554; Sun, 8 Dec 2002 02:08:14 -0500 (EST) (envelope-from trevor@jpj.net) Received: from localhost (trevor@localhost) by blues.jpj.net (8.12.3/8.12.3/Submit) with ESMTP id gB878DMQ000550; Sun, 8 Dec 2002 02:08:14 -0500 (EST) X-Authentication-Warning: blues.jpj.net: trevor owned process doing -bs Date: Sun, 8 Dec 2002 02:08:13 -0500 (EST) From: Trevor Johnson To: Marcel Moolenaar Cc: cvs-committers@FreeBSD.org, , Subject: Re: cvs commit: ports/emulators/linux_base Makefile distinfo.alpha distinfo.i386 pkg-plist.i386 In-Reply-To: <20021208014146.GA1987@athlon.pn.xcllnt.net> Message-ID: <20021208014658.M82142-100000@blues.jpj.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Marcel Moolenaar wrote: > On Sat, Dec 07, 2002 at 08:15:49PM -0500, Trevor Johnson wrote: > > > > It sounds as though you plan to implement this in a way which won't create > > duplicates of all the .alpha.rpm and .i386.rpm files. If so, I'm all for > > it. > > There can never be duplication for the arch specific RPMs because > *.alpha.rpm and *.i386.rpm are two independent and seperate sets > of entities. > > The following implements what I suggest: > > Index: Makefile > =================================================================== > RCS file: /home/ncvs/ports/emulators/linux_base/Makefile,v > retrieving revision 1.70 > diff -u -r1.70 Makefile > --- Makefile 3 Dec 2002 06:45:56 -0000 1.70 > +++ Makefile 8 Dec 2002 01:39:36 -0000 > @@ -47,7 +47,7 @@ > BUILD_DEPENDS= rpm:${PORTSDIR}/archivers/rpm > > ONLY_FOR_ARCHS= alpha i386 > -DIST_SUBDIR= rpm > +DIST_SUBDIR= rpm-${MACHINE_ARCH} Presently all the RPMs exist in the rpm/ directory on the distfile mirrors, CD-ROMs, and in users' private distfile caches. With your patch, users would have to download a second copy of them all (or manually move their distfiles around), and mirrors would have to store a second copy of them all. My rough estimate is that this would take 30 MB of storage space per architecture per linux_base port--on the order of 120 MB for someone who works with both Alpha and i386 and with both linux_base 7.1 and linux_base-6. The original problem was that Red Hat changed the time stamp on one file. I had thought of this solution, but it just seemed too wasteful. > > In the meantime, it would be best if the port were restored to a more > > usable state. IMO its breakage is the greater inconvenience. > > Fair enough. I didn't want to apply the above patch because we're > too close to release to mess with DIST_SUBDIR gratuitously... Thank you. I read you as saying that it's okay to add back the second checksums for the time being, until we come up with something better. If I haven't misunderstood, would you be so kind as to add them back? -- Trevor Johnson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Dec 7 23:39:16 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2614837B401; Sat, 7 Dec 2002 23:39:15 -0800 (PST) Received: from HAL9000.homeunix.com (12-232-220-15.client.attbi.com [12.232.220.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 496BE43EB2; Sat, 7 Dec 2002 23:39:14 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id gB87dDa8008536; Sat, 7 Dec 2002 23:39:13 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id gB87dDmx008535; Sat, 7 Dec 2002 23:39:13 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Date: Sat, 7 Dec 2002 23:39:13 -0800 From: David Schultz To: Adam Weinberger Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: www/en/gnome/docs porting.sgml Message-ID: <20021208073913.GA6792@HAL9000.homeunix.com> Mail-Followup-To: Adam Weinberger , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200212080659.gB86xiv0045914@repoman.freebsd.org> <20021208071006.GB25101@vectors.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021208071006.GB25101@vectors.cx> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Adam Weinberger : > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > >> (12.07.2002 @ 2259 PST): Adam Weinberger said, in 0.6K: << > > * Fix grammar nits > > * Fix spelling nits > >> end of "cvs commit: www/en/gnome/docs porting.sgml" from Adam Weinberger << > > What is a "nit"? According to 'dict nit', a nit is: > > * a type of grass > * a measure of luminance > * larvae of a parasite > > The best extrapolation I can come up with is for the third > interpretation, as "a little something that sucks." I think the definition you want comes to us via `nit-picking', which is what you do when you pick insect eggs out of hair or a sweater. It also came to mean concerning one's self with minutiae; thus, `nits' refer to the details themselves. By the way, the line before your sig should be '-- ', not '- --'. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Dec 7 23:45:47 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B447437B401; Sat, 7 Dec 2002 23:45:46 -0800 (PST) Received: from kayak.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5E2043EA9; Sat, 7 Dec 2002 23:45:45 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by kayak.xcllnt.net (8.12.6/8.12.6) with ESMTP id gB87jerT039511; Sat, 7 Dec 2002 23:45:40 -0800 (PST) (envelope-from marcel@kayak.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.6/8.12.6) with ESMTP id gB87k3un016328; Sat, 7 Dec 2002 23:46:04 -0800 (PST) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.6/8.12.6/Submit) id gB87k3dE016327; Sat, 7 Dec 2002 23:46:03 -0800 (PST) (envelope-from marcel) Date: Sat, 7 Dec 2002 23:46:02 -0800 From: Marcel Moolenaar To: Trevor Johnson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: cvs commit: ports/emulators/linux_base Makefile distinfo.alpha distinfo.i386 pkg-plist.i386 Message-ID: <20021208074602.GA15092@dhcp01.pn.xcllnt.net> References: <20021208014146.GA1987@athlon.pn.xcllnt.net> <20021208014658.M82142-100000@blues.jpj.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021208014658.M82142-100000@blues.jpj.net> User-Agent: Mutt/1.5.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Dec 08, 2002 at 02:08:13AM -0500, Trevor Johnson wrote: > I haven't misunderstood, would you be so kind as to add them back? Sure. Just say the magic re@ word :-) -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Dec 7 23:49:10 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F48C37B401; Sat, 7 Dec 2002 23:49:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE5DB43EB2; Sat, 7 Dec 2002 23:49:09 -0800 (PST) (envelope-from trevor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB87iZmV063182; Sat, 7 Dec 2002 23:44:35 -0800 (PST) (envelope-from trevor@repoman.freebsd.org) Received: (from trevor@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB87iZtH063181; Sat, 7 Dec 2002 23:44:35 -0800 (PST) Message-Id: <200212080744.gB87iZtH063181@repoman.freebsd.org> From: Trevor Johnson Date: Sat, 7 Dec 2002 23:44:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/beonex Makefile ports/www/beonex/files patch-ptio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2002/12/07 23:44:35 PST Modified files: www/beonex Makefile Added files: www/beonex/files patch-ptio.c Log: Unbreak for use with IPv4 on FreeBSD -CURRENT (only tested on i386). Obtained from: ume (ports/www/mozilla/files/patch-nsprpub::pr::src::pthreads::ptio.c rev. 1.1) Revision Changes Path 1.7 +0 -4 ports/www/beonex/Makefile 1.1 +26 -0 ports/www/beonex/files/patch-ptio.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message