From owner-cvs-usrsbin Sun May 7 00:48:43 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id AAA09317 for cvs-usrsbin-outgoing; Sun, 7 May 1995 00:48:43 -0700 Received: (from bde@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id AAA09307 ; Sun, 7 May 1995 00:48:38 -0700 Date: Sun, 7 May 1995 00:48:38 -0700 From: Bruce Evans Message-Id: <199505070748.AAA09307@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/edquota edquota.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk bde 95/05/07 00:48:37 Modified: usr.sbin/edquota edquota.c Log: Cast some expressions involving dbtob() to (unsigned long) and print them using %lu. This became more broken when I fixed dbtob() to support byte offsets >= 4GB. The type had to change to [u]quad_t. Previously the expressions had type unsigned long and were printed using %d. After division by 1024, the expressions are guaranteed to fit in an unsigned long, at least for the standard DEV_BSIZE, so edquota doesn't need to know about quad_t's explicitly. Fix all the other format mismatches exposed by compiling with -Wformat (6 more quota limits of type unsigned long printed using %d and 6 time_t's (i.e., longs) printed using %d). From owner-cvs-usrsbin Sun May 7 01:15:23 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id BAA09706 for cvs-usrsbin-outgoing; Sun, 7 May 1995 01:15:23 -0700 Received: (from bde@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id BAA09635 ; Sun, 7 May 1995 01:13:40 -0700 Date: Sun, 7 May 1995 01:13:40 -0700 From: Bruce Evans Message-Id: <199505070813.BAA09635@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/repquota repquota.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk bde 95/05/07 01:13:38 Modified: usr.sbin/repquota repquota.c Log: Fix 3 fatal mismatches in format args involving dbtob() and 7 nonfatal mismatches. From owner-cvs-usrsbin Sun May 7 09:05:23 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id JAA24628 for cvs-usrsbin-outgoing; Sun, 7 May 1995 09:05:23 -0700 Received: from gndrsh.aac.dev.com (gndrsh.aac.dev.com [198.145.92.241]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id JAA24605 ; Sun, 7 May 1995 09:04:23 -0700 Received: (from rgrimes@localhost) by gndrsh.aac.dev.com (8.6.11/8.6.9) id DAA12315; Sun, 7 May 1995 03:03:54 -0700 From: "Rodney W. Grimes" Message-Id: <199505071003.DAA12315@gndrsh.aac.dev.com> Subject: Re: cvs commit: src/usr.sbin/edquota edquota.c To: bde@freefall.cdrom.com (Bruce Evans) Date: Sun, 7 May 1995 03:03:54 -0700 (PDT) Cc: CVS-commiters@freefall.cdrom.com, cvs-usrsbin@freefall.cdrom.com In-Reply-To: <199505070748.AAA09307@freefall.cdrom.com> from "Bruce Evans" at May 7, 95 00:48:38 am X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 1038 Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk > > bde 95/05/07 00:48:37 > > Modified: usr.sbin/edquota edquota.c > Log: > Cast some expressions involving dbtob() to (unsigned long) and print them > using %lu. This became more broken when I fixed dbtob() to support byte > offsets >= 4GB. The type had to change to [u]quad_t. Previously the > expressions had type unsigned long and were printed using %d. After > division by 1024, the expressions are guaranteed to fit in an unsigned > long, at least for the standard DEV_BSIZE, so edquota doesn't need to > know about quad_t's explicitly. > > Fix all the other format mismatches exposed by compiling with -Wformat > (6 more quota limits of type unsigned long printed using %d and 6 time_t's > (i.e., longs) printed using %d). I'll try to make a pass over the whole tree with a -Wformat and see if it is a manageable task to go fix. -- Rod Grimes rgrimes@gndrsh.aac.dev.com Accurate Automation Company Custom computers for FreeBSD From owner-cvs-usrsbin Sun May 7 09:29:30 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id JAA25145 for cvs-usrsbin-outgoing; Sun, 7 May 1995 09:29:30 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id JAA25129 ; Sun, 7 May 1995 09:29:10 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id CAA19854; Mon, 8 May 1995 02:27:25 +1000 Date: Mon, 8 May 1995 02:27:25 +1000 From: Bruce Evans Message-Id: <199505071627.CAA19854@godzilla.zeta.org.au> To: bde@freefall.cdrom.com, rgrimes@gndrsh.aac.dev.com Subject: Re: cvs commit: src/usr.sbin/edquota edquota.c Cc: CVS-commiters@freefall.cdrom.com, cvs-usrsbin@freefall.cdrom.com Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk >> Fix all the other format mismatches exposed by compiling with -Wformat >> (6 more quota limits of type unsigned long printed using %d and 6 time_t's >> (i.e., longs) printed using %d). >I'll try to make a pass over the whole tree with a -Wformat and see if >it is a manageable task to go fix. You'll probably have to ignore the nonfatal mismatches (%d vs %ld) or there will be too many. There can't be many type size mismatches or we would have noticed. Bruce From owner-cvs-usrsbin Sun May 7 15:16:01 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id PAA04331 for cvs-usrsbin-outgoing; Sun, 7 May 1995 15:16:01 -0700 Received: (from ache@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id PAA04316 ; Sun, 7 May 1995 15:15:49 -0700 Date: Sun, 7 May 1995 15:15:49 -0700 From: "Andrey A. Chernov" Message-Id: <199505072215.PAA04316@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pstat pstat.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk ache 95/05/07 15:15:48 Modified: usr.sbin/pstat pstat.c Log: Enable sio driver and upcoming rc driver Add more line disciplines From owner-cvs-usrsbin Sun May 7 16:20:06 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id QAA06165 for cvs-usrsbin-outgoing; Sun, 7 May 1995 16:20:06 -0700 Received: (from ache@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id QAA06146 ; Sun, 7 May 1995 16:19:58 -0700 Date: Sun, 7 May 1995 16:19:58 -0700 From: "Andrey A. Chernov" Message-Id: <199505072319.QAA06146@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pstat pstat.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk ache 95/05/07 16:19:56 Modified: usr.sbin/pstat pstat.c Log: Add FreeBSD-specific TS_* states From owner-cvs-usrsbin Tue May 9 05:35:39 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id FAA11816 for cvs-usrsbin-outgoing; Tue, 9 May 1995 05:35:39 -0700 Received: (from rgrimes@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id FAA11800 ; Tue, 9 May 1995 05:35:32 -0700 Date: Tue, 9 May 1995 05:35:32 -0700 From: "Rodney W. Grimes" Message-Id: <199505091235.FAA11800@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/sendmail/src sendmail.h Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk rgrimes 95/05/09 05:35:31 Modified: usr.sbin/sendmail/src sendmail.h Log: Fix nested includes for -Wcomment. From owner-cvs-usrsbin Tue May 9 05:48:29 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id FAA12389 for cvs-usrsbin-outgoing; Tue, 9 May 1995 05:48:29 -0700 Received: (from rgrimes@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id FAA12377 ; Tue, 9 May 1995 05:48:23 -0700 Date: Tue, 9 May 1995 05:48:23 -0700 From: "Rodney W. Grimes" Message-Id: <199505091248.FAA12377@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pcvt/vttest header.h Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk rgrimes 95/05/09 05:48:22 Modified: usr.sbin/cron/cron config.h usr.sbin/named options.h usr.sbin/pcvt/vttest header.h Log: Fix nested comments for -Wcomment warnings. From owner-cvs-usrsbin Tue May 9 16:49:22 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id QAA29859 for cvs-usrsbin-outgoing; Tue, 9 May 1995 16:49:22 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id QAA29838 ; Tue, 9 May 1995 16:49:09 -0700 Received: (from jkh@localhost) by time.cdrom.com (8.6.11/8.6.9) id QAA25123; Tue, 9 May 1995 16:48:56 -0700 Date: Tue, 9 May 1995 16:48:56 -0700 From: "Jordan K. Hubbard" Message-Id: <199505092348.QAA25123@time.cdrom.com> To: CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com Subject: cvs commit: src/usr.sbin/xten Makefile Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk jkh 95/05/09 16:48:55 Modified: usr.sbin/xten Makefile Log: Switch from bogus absolute path to a relative one. Closes PR #bin/391 Submitted by: Stephen McKay From owner-cvs-usrsbin Tue May 9 18:53:25 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id SAA03694 for cvs-usrsbin-outgoing; Tue, 9 May 1995 18:53:25 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id SAA03666 ; Tue, 9 May 1995 18:53:11 -0700 Received: from gndrsh.aac.dev.com (gndrsh.aac.dev.com [198.145.92.241]) by time.cdrom.com (8.6.11/8.6.9) with ESMTP id SAA25246; Tue, 9 May 1995 18:52:55 -0700 Received: (from rgrimes@localhost) by gndrsh.aac.dev.com (8.6.11/8.6.9) id SAA06424; Tue, 9 May 1995 18:53:02 -0700 From: "Rodney W. Grimes" Message-Id: <199505100153.SAA06424@gndrsh.aac.dev.com> Subject: Re: cvs commit: src/usr.sbin/xten Makefile To: jkh@time.cdrom.com (Jordan K. Hubbard) Date: Tue, 9 May 1995 18:53:02 -0700 (PDT) Cc: CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com In-Reply-To: <199505092348.QAA25123@time.cdrom.com> from "Jordan K. Hubbard" at May 9, 95 04:48:56 pm X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 950 Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk > > jkh 95/05/09 16:48:55 > > Modified: usr.sbin/xten Makefile > Log: > Switch from bogus absolute path to a relative one. > Closes PR #bin/391 > Submitted by: Stephen McKay > What the h*ll is going on here, I already show this as being fixed, arghh.. should have done a cvs status on my files, they needed to be updated. But this brings up another problem. This was already fixed once, but then some one (I won't say who, we all can find out) imported/commited a new version from gene stark that had the brokeness in it again. Folks, copying whole files over from an older release is verbotten, it is these kinds of problems that it causes needlessly. If you can't produce a proper context diff, IMHO, I don't want to see your changes! -- Rod Grimes rgrimes@gndrsh.aac.dev.com Accurate Automation Company Custom computers for FreeBSD From owner-cvs-usrsbin Wed May 10 13:46:31 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id NAA03754 for cvs-usrsbin-outgoing; Wed, 10 May 1995 13:46:31 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id NAA03737 ; Wed, 10 May 1995 13:46:22 -0700 Received: (from jkh@localhost) by time.cdrom.com (8.6.11/8.6.9) id NAA07023; Wed, 10 May 1995 13:46:09 -0700 Date: Wed, 10 May 1995 13:46:09 -0700 From: "Jordan K. Hubbard" Message-Id: <199505102046.NAA07023@time.cdrom.com> To: CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com Subject: cvs commit: src/usr.sbin/pkg_install/create perform.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk jkh 95/05/10 13:46:08 Modified: usr.sbin/pkg_install/create perform.c Log: Re-work make_dist() routine to build the tar command more reasonably. This should eliminate the problem with truncated packages. From owner-cvs-usrsbin Wed May 10 13:56:51 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id NAA04212 for cvs-usrsbin-outgoing; Wed, 10 May 1995 13:56:51 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id NAA04200 ; Wed, 10 May 1995 13:56:35 -0700 Received: (from jkh@localhost) by time.cdrom.com (8.6.11/8.6.9) id NAA07066; Wed, 10 May 1995 13:56:22 -0700 Date: Wed, 10 May 1995 13:56:22 -0700 From: "Jordan K. Hubbard" Message-Id: <199505102056.NAA07066@time.cdrom.com> To: CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com Subject: cvs commit: src/usr.sbin/pkg_install/add pkg_add.1 Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk jkh 95/05/10 13:56:21 Modified: usr.sbin/pkg_install/add pkg_add.1 Log: Document fetch-by-URL. From owner-cvs-usrsbin Wed May 10 15:34:14 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id PAA07685 for cvs-usrsbin-outgoing; Wed, 10 May 1995 15:34:14 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id PAA07679 ; Wed, 10 May 1995 15:34:09 -0700 Received: (from jkh@localhost) by time.cdrom.com (8.6.11/8.6.9) id PAA07183; Wed, 10 May 1995 15:33:56 -0700 Date: Wed, 10 May 1995 15:33:56 -0700 From: "Jordan K. Hubbard" Message-Id: <199505102233.PAA07183@time.cdrom.com> To: CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com Subject: cvs commit: src/usr.sbin/pkg_install/create perform.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk jkh 95/05/10 15:33:56 Modified: usr.sbin/pkg_install/create perform.c Log: Bump the number of allowable args by a factor of 4. I just scanned all possible packing lists and found that at least one of them is pretty large! From owner-cvs-usrsbin Wed May 10 16:00:42 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id QAA08376 for cvs-usrsbin-outgoing; Wed, 10 May 1995 16:00:42 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id QAA08367 ; Wed, 10 May 1995 16:00:30 -0700 Received: (from jkh@localhost) by time.cdrom.com (8.6.11/8.6.9) id QAA07240; Wed, 10 May 1995 16:00:18 -0700 Date: Wed, 10 May 1995 16:00:18 -0700 From: "Jordan K. Hubbard" Message-Id: <199505102300.QAA07240@time.cdrom.com> To: CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com Subject: cvs commit: src/usr.sbin/pkg_install/lib file.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk jkh 95/05/10 16:00:17 Modified: usr.sbin/pkg_install/info perform.c pkg_info.1 Log: Fix a long-standing bug that broke pkg_info utterly and probably made pkg_add a little wiggy too. Document the fact that pkg_info can also take a URL. Modified: usr.sbin/pkg_install/lib file.c Log: Fix a long-standing bug that broke pkg_info utterly and probably made pkg_add a little wiggy too. From owner-cvs-usrsbin Wed May 10 16:02:48 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id QAA08456 for cvs-usrsbin-outgoing; Wed, 10 May 1995 16:02:48 -0700 Received: (from wpaul@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id QAA08441 ; Wed, 10 May 1995 16:02:45 -0700 Date: Wed, 10 May 1995 16:02:45 -0700 From: Bill Paul Message-Id: <199505102302.QAA08441@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/ypbind ypbind.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk wpaul 95/05/10 16:02:44 Modified: usr.sbin/ypbind ypbind.c Log: Performace improvements/simplifications/cleanups: - Make the child process reaper signal-driven. (Previously, we called reaper() once a second each time we went through the select() loop. This was convenient, but inefficient.) - Increase main select() timeout from 1 second to 60 seconds and use this as the ping timer instead of using timestamps in the _dom_binding structure. This nd the reaper() change noted above makes ypbind a little less CPU-intensive. - Don't flag EINTR's from select() as errors since they will happen as a result of incoming SIGCHLD's interrupting select(). - Prevent possible resource hogging. Currently we malloc() memory each time a user process asks us to establish a binding for a domain, but we never free it. This could lead to serious memory leakage if a 'clever' user did something like ask ypwhich to check the bindings for domains 0.0.0.0.0.0.0.0.0.0 through 9.9.9.9.9.9.9.9.9.9 inclusive. (This would also make a mess out of the /var/yp/binding directory.) We now avoid this silliness by a) limiting the maximum number of simultaneous bindings we can manage to 200, and b) free()ing _dom_binding structures of secondary domains whose servers have stopped responding. We unlink the /var/yp/binding/domain.vers files for the free()ed domains too. (This is safe to do since a client can prod us into reestablishing the binding, at which time we'll simply allocate a new _dom_binding structure for it.) We keep count of the total number of domains. If asked to allocate more than the maximum, we return an error. I have yet to hear of anybody needing 200 simultaneous NIS bindings, so this should be enough. (I chose the number 200 arbitrarily. It can be increased if need be.) - Changed "server not responding"/"server OK" messages to display server IP addresses again since it looks spiffier. - Use daemon() to daemonify ourselves, - Added a SIGTERM handler that removes all binding files and unregisters the ypbind service from the portmapper when a SIGTERM in received. - The comment 'blow away everything in BINDINGDIR' has no associated code. Give it some: clean out /var/yp/binding at startup (if it exists). This completes my ypbind wishlist. Barring bug fixes, I shouldn't need to go poking around in here anymore. (Of course, this means I can start working on my ypserv whishlist now... :) From owner-cvs-usrsbin Wed May 10 16:32:37 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id QAA09311 for cvs-usrsbin-outgoing; Wed, 10 May 1995 16:32:37 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id QAA09292 ; Wed, 10 May 1995 16:32:10 -0700 Received: from forgery.CS.Berkeley.EDU (forgery.CS.Berkeley.EDU [128.32.33.75]) by time.cdrom.com (8.6.11/8.6.9) with ESMTP id QAA07265; Wed, 10 May 1995 16:31:57 -0700 Received: (from asami@localhost) by forgery.CS.Berkeley.EDU (8.6.11/8.6.9) id QAA02307; Wed, 10 May 1995 16:32:08 -0700 Date: Wed, 10 May 1995 16:32:08 -0700 Message-Id: <199505102332.QAA02307@forgery.CS.Berkeley.EDU> To: jkh@time.cdrom.com CC: CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com In-reply-to: <199505102233.PAA07183@time.cdrom.com> (jkh@time.cdrom.com) Subject: Re: cvs commit: src/usr.sbin/pkg_install/create perform.c From: asami@cs.berkeley.edu (Satoshi Asami | =?ISO-2022-JP?B?GyRCQHUbKEI=?= =?ISO-2022-JP?B?GyRCOCsbKEIgGyRCOC0bKEI=?=) Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk * Modified: usr.sbin/pkg_install/create perform.c * Log: * Bump the number of allowable args by a factor of 4. I just scanned * all possible packing lists and found that at least one of them is * pretty large! Jordan, I was scanning the tar man page today, and found this: --files-from file Get names of files to extract or create from file, one per line. Maybe we can get rid of the limits altogether by copying PLIST (without all the lines that start with an '@', of course) into a file? Satoshi From owner-cvs-usrsbin Wed May 10 17:04:47 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id RAA10029 for cvs-usrsbin-outgoing; Wed, 10 May 1995 17:04:47 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id RAA10019 ; Wed, 10 May 1995 17:04:37 -0700 Received: from freefall.cdrom.com (freefall.cdrom.com [192.216.222.4]) by time.cdrom.com (8.6.11/8.6.9) with ESMTP id RAA07288; Wed, 10 May 1995 17:04:24 -0700 Received: from localhost (localhost [127.0.0.1]) by freefall.cdrom.com (8.6.10/8.6.6) with SMTP id RAA10014 ; Wed, 10 May 1995 17:04:34 -0700 X-Authentication-Warning: freefall.cdrom.com: Host localhost didn't use HELO protocol To: asami@cs.berkeley.edu (Satoshi Asami | =?ISO-2022-JP?B?GyRCQHUbKEI=?= =?ISO-2022-JP?B?GyRCOCsbKEIgGyRCOC0bKEI=?=) cc: jkh@time.cdrom.com, CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com Subject: Re: cvs commit: src/usr.sbin/pkg_install/create perform.c In-reply-to: Your message of "Wed, 10 May 95 16:32:08 PDT." <199505102332.QAA02307@forgery.CS.Berkeley.EDU> Date: Wed, 10 May 1995 17:04:34 -0700 Message-ID: <10013.800150674@freefall.cdrom.com> From: "Jordan K. Hubbard" Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk > Jordan, I was scanning the tar man page today, and found this: > > --files-from file Get names of files to extract or create from > file, one per line. > > Maybe we can get rid of the limits altogether by copying PLIST > (without all the lines that start with an '@', of course) into a file? I'd have to keep multiple files to deal with the imbeded -C transitions, but it's doable. I'll consider it if the current scheme collapses.. :-) Jordan From owner-cvs-usrsbin Wed May 10 17:16:59 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id RAA10644 for cvs-usrsbin-outgoing; Wed, 10 May 1995 17:16:59 -0700 Received: (from wpaul@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id RAA10628 ; Wed, 10 May 1995 17:16:57 -0700 Date: Wed, 10 May 1995 17:16:57 -0700 From: Bill Paul Message-Id: <199505110016.RAA10628@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/ypbind ypbind.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk wpaul 95/05/10 17:16:56 Modified: usr.sbin/ypbind ypbind.c Log: Ack! One slipped through the cracks: remember to return the correctly filled-in result structure to the caller when a resource allocation error is encountered in ypbindproc_domain_2. From owner-cvs-usrsbin Wed May 10 19:22:10 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id TAA13136 for cvs-usrsbin-outgoing; Wed, 10 May 1995 19:22:10 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id TAA13118 ; Wed, 10 May 1995 19:21:51 -0700 Received: (from jkh@localhost) by time.cdrom.com (8.6.11/8.6.9) id TAA07545; Wed, 10 May 1995 19:21:38 -0700 Date: Wed, 10 May 1995 19:21:38 -0700 From: "Jordan K. Hubbard" Message-Id: <199505110221.TAA07545@time.cdrom.com> To: CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com Subject: cvs commit: src/usr.sbin/config config.h config.y lang.l mkioconf.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk jkh 95/05/10 19:21:37 Modified: usr.sbin/config config.h config.y lang.l mkioconf.c Log: Add a new `conflicts' flag for telling when a device is in conflict with others. The flag can be put in descriptive locations, e.g.: device sb0 at isa? port 0x220 irq 7 conflicts drq 1 vector sbintr or device psm0 at isa? port "IO_KBD" conflicts tty irq 12 vector psmintr But is nonetheless boolean only. You can't turn conflict checking off for only a given type of conflict. I didn't deem it worth the trouble at this stage, and it's far better than the ALLOW_CONFLICT_* that preceeded it. From owner-cvs-usrsbin Thu May 11 00:55:04 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id AAA19364 for cvs-usrsbin-outgoing; Thu, 11 May 1995 00:55:04 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id AAA19358 ; Thu, 11 May 1995 00:55:03 -0700 Received: (from root@localhost) by time.cdrom.com (8.6.11/8.6.9) id AAA00465; Thu, 11 May 1995 00:54:43 -0700 Date: Thu, 11 May 1995 00:54:43 -0700 From: "Jordan K. Hubbard" Message-Id: <199505110754.AAA00465@time.cdrom.com> To: CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com Subject: cvs commit: src/usr.sbin/config mkioconf.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk jkh 95/05/11 00:54:42 Modified: usr.sbin/config mkioconf.c Log: Revise this to actually print all the various isa_device field values it really should have been printing all this time. Also fix my rather bogus handling of the id_conflicts value by moving it to the end of isa_device and dealing with that correctly now. From owner-cvs-usrsbin Thu May 11 00:58:27 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id AAA19414 for cvs-usrsbin-outgoing; Thu, 11 May 1995 00:58:27 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id AAA19408 ; Thu, 11 May 1995 00:58:16 -0700 Received: from labinfo.iet.unipi.it ([131.114.9.5]) by time.cdrom.com (8.6.11/8.6.9) with ESMTP id AAA00687; Thu, 11 May 1995 00:57:21 -0700 Received: from localhost (luigi@localhost) by labinfo.iet.unipi.it (8.6.5/8.6.5) id IAA03981; Thu, 11 May 1995 08:50:50 +0200 From: Luigi Rizzo Message-Id: <199505110650.IAA03981@labinfo.iet.unipi.it> Subject: Re: cvs commit: src/usr.sbin/config config.h config.y lang.l mkioconf.c To: jkh@time.cdrom.com (Jordan K. Hubbard) Date: Thu, 11 May 1995 08:50:49 +0200 (MET DST) Cc: CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com In-Reply-To: <199505110221.TAA07545@time.cdrom.com> from "Jordan K. Hubbard" at May 10, 95 07:21:19 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Content-Length: 642 Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk > jkh 95/05/10 19:21:37 > Don't know if this is still present in -current: in the 950322 snapshot, "config MYKERNELCONFIGFILE" would purge the whole compile directory, which is a bit annoying given the long time it takes to recompile everything. Is there a way to avoid this ? Luigi ==================================================================== Luigi Rizzo Dip. di Ingegneria dell'Informazione email: luigi@iet.unipi.it Universita' di Pisa tel: +39-50-568533 via Diotisalvi 2, 56126 PISA (Italy) fax: +39-50-568522 ==================================================================== From owner-cvs-usrsbin Thu May 11 01:05:11 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id BAA19510 for cvs-usrsbin-outgoing; Thu, 11 May 1995 01:05:11 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id BAA19499 ; Thu, 11 May 1995 01:04:51 -0700 Received: from gndrsh.aac.dev.com (gndrsh.aac.dev.com [198.145.92.241]) by time.cdrom.com (8.6.11/8.6.9) with ESMTP id BAA01369; Thu, 11 May 1995 01:04:26 -0700 Received: (from rgrimes@localhost) by gndrsh.aac.dev.com (8.6.11/8.6.9) id BAA09543; Thu, 11 May 1995 01:03:17 -0700 From: "Rodney W. Grimes" Message-Id: <199505110803.BAA09543@gndrsh.aac.dev.com> Subject: Re: cvs commit: src/usr.sbin/config config.h config.y lang.l mkioconf.c To: luigi@labinfo.iet.unipi.it (Luigi Rizzo) Date: Thu, 11 May 1995 01:03:17 -0700 (PDT) Cc: jkh@time.cdrom.com, CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com In-Reply-To: <199505110650.IAA03981@labinfo.iet.unipi.it> from "Luigi Rizzo" at May 11, 95 08:50:49 am X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 639 Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk > > > jkh 95/05/10 19:21:37 > > > > Don't know if this is still present in -current: in the 950322 snapshot, > "config MYKERNELCONFIGFILE" would purge the whole compile directory, > which is a bit annoying given the long time it takes to recompile > everything. Is there a way to avoid this ? man config, look at -n option. Be carefull, unless you really know what you are doing all the right obj files may not get rebuilt if you change your config file in funny ways!! -- Rod Grimes rgrimes@gndrsh.aac.dev.com Accurate Automation Company Custom computers for FreeBSD From owner-cvs-usrsbin Thu May 11 01:27:22 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id BAA20175 for cvs-usrsbin-outgoing; Thu, 11 May 1995 01:27:22 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id BAA20162 ; Thu, 11 May 1995 01:27:16 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by time.cdrom.com (8.6.11/8.6.9) with ESMTP id BAA00205; Thu, 11 May 1995 01:26:26 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id SAA11481; Thu, 11 May 1995 18:22:07 +1000 Date: Thu, 11 May 1995 18:22:07 +1000 From: Bruce Evans Message-Id: <199505110822.SAA11481@godzilla.zeta.org.au> To: CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com, jkh@time.cdrom.com Subject: Re: cvs commit: src/usr.sbin/config mkioconf.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk > Modified: usr.sbin/config mkioconf.c > Log: > Revise this to actually print all the various isa_device field values > it really should have been printing all this time. Also fix my rather > bogus handling of the id_conflicts value by moving it to the end of > isa_device and dealing with that correctly now. id_conflicts was in the right place before. id_enabled is in the wrong place (at the end). None of the internal (initially 0) fields should be printed, but putting id_enabled at the end messed this up. Internal pointer fields such as id_next can't possibly be printed. dset seems to lack version checking so it is dangerous to run it automatically in /etc/rc. Bruce From owner-cvs-usrsbin Thu May 11 01:33:17 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id BAA20329 for cvs-usrsbin-outgoing; Thu, 11 May 1995 01:33:17 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id BAA20318 ; Thu, 11 May 1995 01:33:06 -0700 Received: from Root.COM (implode.Root.COM [198.145.90.1]) by time.cdrom.com (8.6.11/8.6.9) with ESMTP id BAA00271; Thu, 11 May 1995 01:32:43 -0700 Received: from corbin.Root.COM (corbin.Root.COM [198.145.90.18]) by Root.COM (8.6.8/8.6.5) with ESMTP id BAA06709; Thu, 11 May 1995 01:35:55 -0700 Received: from localhost (localhost [127.0.0.1]) by corbin.Root.COM (8.6.11/8.6.5) with SMTP id BAA01861; Thu, 11 May 1995 01:32:54 -0700 Message-Id: <199505110832.BAA01861@corbin.Root.COM> To: Bruce Evans cc: CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com, jkh@time.cdrom.com Subject: Re: cvs commit: src/usr.sbin/config mkioconf.c In-reply-to: Your message of "Thu, 11 May 95 18:22:07 +1000." <199505110822.SAA11481@godzilla.zeta.org.au> From: David Greenman Reply-To: davidg@Root.COM Date: Thu, 11 May 1995 01:32:49 -0700 Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk >> Modified: usr.sbin/config mkioconf.c >> Log: >> Revise this to actually print all the various isa_device field values >> it really should have been printing all this time. Also fix my rather >> bogus handling of the id_conflicts value by moving it to the end of >> isa_device and dealing with that correctly now. > >id_conflicts was in the right place before. id_enabled is in the wrong >place (at the end). None of the internal (initially 0) fields should be >printed, but putting id_enabled at the end messed this up. Internal >pointer fields such as id_next can't possibly be printed. I don't think I agree. I think it is rather bogus to generate an initialized structure that is only partially initialized. -DG From owner-cvs-usrsbin Thu May 11 12:35:04 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id MAA11241 for cvs-usrsbin-outgoing; Thu, 11 May 1995 12:35:04 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id MAA11235 ; Thu, 11 May 1995 12:35:02 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by time.cdrom.com (8.6.11/8.6.9) with ESMTP id MAA02386; Thu, 11 May 1995 12:34:30 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id FAA28582; Fri, 12 May 1995 05:33:34 +1000 Date: Fri, 12 May 1995 05:33:34 +1000 From: Bruce Evans Message-Id: <199505111933.FAA28582@godzilla.zeta.org.au> To: bde@zeta.org.au, davidg@Root.COM Subject: Re: cvs commit: src/usr.sbin/config mkioconf.c Cc: CVS-commiters@time.cdrom.com, cvs-usrsbin@time.cdrom.com, jkh@time.cdrom.com Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk >>id_conflicts was in the right place before. id_enabled is in the wrong >>place (at the end). None of the internal (initially 0) fields should be >>printed, but putting id_enabled at the end messed this up. Internal >>pointer fields such as id_next can't possibly be printed. > I don't think I agree. I think it is rather bogus to generate an >initialized structure that is only partially initialized. It would be implicitly initialized as if all fields at the end were set to 0. The comments in ioconf.c now extend past column 132 and don't line up with the code after column 80. The code only extends to about column 105. Bruce From owner-cvs-usrsbin Fri May 12 09:53:09 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id JAA12105 for cvs-usrsbin-outgoing; Fri, 12 May 1995 09:53:09 -0700 Received: (from wpaul@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id JAA12088 ; Fri, 12 May 1995 09:53:00 -0700 Date: Fri, 12 May 1995 09:53:00 -0700 From: Bill Paul Message-Id: <199505121653.JAA12088@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/ypbind ypbind.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk wpaul 95/05/12 09:53:00 Modified: usr.sbin/ypbind ypbind.c Log: One for the road: create a ypbind.lock file under /var/run and try to lock it. If we can't it means there's already a ypbind running and we should abort. From owner-cvs-usrsbin Fri May 12 12:10:59 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id MAA19048 for cvs-usrsbin-outgoing; Fri, 12 May 1995 12:10:59 -0700 Received: (from wollman@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id MAA19038 ; Fri, 12 May 1995 12:10:57 -0700 Date: Fri, 12 May 1995 12:10:57 -0700 From: "Garrett A. Wollman" Message-Id: <199505121910.MAA19038@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/sysctl sysctl.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk wollman 95/05/12 12:10:57 Modified: usr.sbin/sysctl sysctl.c Log: Learn how to print out kern.dumpdev as a name. From owner-cvs-usrsbin Fri May 12 12:12:50 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id MAA19147 for cvs-usrsbin-outgoing; Fri, 12 May 1995 12:12:50 -0700 Received: (from wollman@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id MAA19136 ; Fri, 12 May 1995 12:12:47 -0700 Date: Fri, 12 May 1995 12:12:47 -0700 From: "Garrett A. Wollman" Message-Id: <199505121912.MAA19136@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/config config.y mkswapconf.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk wollman 95/05/12 12:12:47 Modified: usr.sbin/config config.y mkswapconf.c Log: Don't automatically default dumps to be on a swap device; if the user wants dumps, he can either configure it explicitly (`dumps on' whatever) or use the dumpon(8) utility. From owner-cvs-usrsbin Fri May 12 12:17:44 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id MAA19350 for cvs-usrsbin-outgoing; Fri, 12 May 1995 12:17:44 -0700 Received: from ref.tfs.com (ref.tfs.com [140.145.254.251]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id MAA19339 ; Fri, 12 May 1995 12:17:38 -0700 Received: (from phk@localhost) by ref.tfs.com (8.6.8/8.6.6) id MAA05071; Fri, 12 May 1995 12:17:37 -0700 From: Poul-Henning Kamp Message-Id: <199505121917.MAA05071@ref.tfs.com> Subject: Re: cvs commit: src/usr.sbin/config config.y mkswapconf.c To: wollman@freefall.cdrom.com (Garrett A. Wollman) Date: Fri, 12 May 1995 12:17:37 -0700 (PDT) Cc: CVS-commiters@freefall.cdrom.com, cvs-usrsbin@freefall.cdrom.com In-Reply-To: <199505121912.MAA19136@freefall.cdrom.com> from "Garrett A. Wollman" at May 12, 95 12:12:47 pm Content-Type: text Content-Length: 473 Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk > wollman 95/05/12 12:12:47 > > Modified: usr.sbin/config config.y mkswapconf.c > Log: > Don't automatically default dumps to be on a swap device; if the user > wants dumps, he can either configure it explicitly (`dumps on' whatever) or > use the dumpon(8) utility. COOL! -- Poul-Henning Kamp -- TRW Financial Systems, Inc. 'All relevant people are pertinent' && 'All rude people are impertinent' => 'no rude people are relevant' From owner-cvs-usrsbin Sat May 13 10:25:34 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA06446 for cvs-usrsbin-outgoing; Sat, 13 May 1995 10:25:34 -0700 Received: (from phk@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA06433 ; Sat, 13 May 1995 10:25:25 -0700 Date: Sat, 13 May 1995 10:25:25 -0700 From: Poul-Henning Kamp Message-Id: <199505131725.KAA06433@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pstat Makefile pstat.8 pstat.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk phk 95/05/13 10:25:24 Modified: usr.sbin/pstat Makefile pstat.8 pstat.c Log: Make pstat act like swapinfo if so invoked. From owner-cvs-usrsbin Sat May 13 10:26:39 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA06504 for cvs-usrsbin-outgoing; Sat, 13 May 1995 10:26:39 -0700 Received: (from phk@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA06492 ; Sat, 13 May 1995 10:26:36 -0700 Date: Sat, 13 May 1995 10:26:36 -0700 From: Poul-Henning Kamp Message-Id: <199505131726.KAA06492@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/swapinfo Makefile README swapinfo.1 swapinfo.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk phk 95/05/13 10:26:36 Removed: usr.sbin/swapinfo Makefile README swapinfo.1 swapinfo.c Log: pstat does emulate swapinfo now. Thanks to David for reminding me about this piece of bogosity. From owner-cvs-usrsbin Sat May 13 10:27:13 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA06558 for cvs-usrsbin-outgoing; Sat, 13 May 1995 10:27:13 -0700 Received: (from phk@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA06548 ; Sat, 13 May 1995 10:27:11 -0700 Date: Sat, 13 May 1995 10:27:11 -0700 From: Poul-Henning Kamp Message-Id: <199505131727.KAA06548@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin Makefile Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk phk 95/05/13 10:27:11 Modified: usr.sbin Makefile Log: remove swapinfo. From owner-cvs-usrsbin Sat May 13 19:30:49 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id TAA19031 for cvs-usrsbin-outgoing; Sat, 13 May 1995 19:30:49 -0700 Received: (from rgrimes@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id TAA18972 ; Sat, 13 May 1995 19:30:29 -0700 Date: Sat, 13 May 1995 19:30:29 -0700 From: "Rodney W. Grimes" Message-Id: <199505140230.TAA18972@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/bad144 Makefile Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk rgrimes 95/05/13 19:30:25 Modified: usr.sbin/bad144 Makefile Log: mlink bad144.8 to man8/bad144.8 so we can find the manual page. Use /${MACHINE} for MANSUBDIR instead of hardcoded /i386 Obtained from: FreeBSD 1.1.5.1 From owner-cvs-usrsbin Sat May 13 19:34:35 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id TAA19669 for cvs-usrsbin-outgoing; Sat, 13 May 1995 19:34:35 -0700 Received: from gndrsh.aac.dev.com (gndrsh.aac.dev.com [198.145.92.241]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id TAA19580 ; Sat, 13 May 1995 19:34:11 -0700 Received: (from rgrimes@localhost) by gndrsh.aac.dev.com (8.6.11/8.6.9) id TAA01377; Sat, 13 May 1995 19:33:25 -0700 From: "Rodney W. Grimes" Message-Id: <199505140233.TAA01377@gndrsh.aac.dev.com> Subject: Re: cvs commit: src/usr.sbin/bad144 Makefile To: rgrimes@freefall.cdrom.com (Rodney W. Grimes) Date: Sat, 13 May 1995 19:33:24 -0700 (PDT) Cc: CVS-commiters@freefall.cdrom.com, cvs-usrsbin@freefall.cdrom.com In-Reply-To: <199505140230.TAA18972@freefall.cdrom.com> from "Rodney W. Grimes" at May 13, 95 07:30:29 pm X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 734 Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk > > rgrimes 95/05/13 19:30:25 > > Modified: usr.sbin/bad144 Makefile > Log: > mlink bad144.8 to man8/bad144.8 so we can find the manual page. > > Use /${MACHINE} for MANSUBDIR instead of hardcoded /i386 > > Obtained from: FreeBSD 1.1.5.1 Paul, this is just a start, I wanted to get a damn man page in front of me so I could read what I was using :-). I am now trying to pull out the -s option and reintergrate it, if all goes well I will be done with this in an hour so you can test it out. Should I commit it or send you the diff for final testing? -- Rod Grimes rgrimes@gndrsh.aac.dev.com Accurate Automation Company Custom computers for FreeBSD From owner-cvs-usrsbin Sat May 13 20:08:45 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id UAA21036 for cvs-usrsbin-outgoing; Sat, 13 May 1995 20:08:45 -0700 Received: (from root@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id UAA21026 ; Sat, 13 May 1995 20:08:38 -0700 Date: Sat, 13 May 1995 20:08:38 -0700 From: David Greenman Message-Id: <199505140308.UAA21026@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pstat pstat.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk davidg 95/05/13 20:08:37 Modified: usr.sbin/pstat pstat.c Log: Updated to work with Poul-Henning's recent changes to the swap device table. Reviewed by: John Dyson and David Greenman Submitted by: Poul-Henning Kamp From owner-cvs-usrsbin Sat May 13 20:11:07 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id UAA21132 for cvs-usrsbin-outgoing; Sat, 13 May 1995 20:11:07 -0700 Received: (from root@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id UAA21121 ; Sat, 13 May 1995 20:11:03 -0700 Date: Sat, 13 May 1995 20:11:03 -0700 From: David Greenman Message-Id: <199505140311.UAA21121@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/config mkswapconf.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk davidg 95/05/13 20:11:02 Modified: usr.sbin/config mkswapconf.c Log: Updated to work with Poul-Henning's recent kernel changes in the swap device table layout...basically, don't output the cruft anymore - it is now dynamic. Reviewed by: John Dyson and David Greenman Submitted by: Poul-Henning Kamp From owner-cvs-usrsbin Sat May 13 20:37:48 1995 Return-Path: cvs-usrsbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id UAA22118 for cvs-usrsbin-outgoing; Sat, 13 May 1995 20:37:48 -0700 Received: (from phk@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id UAA22100 ; Sat, 13 May 1995 20:37:42 -0700 Date: Sat, 13 May 1995 20:37:42 -0700 From: Poul-Henning Kamp Message-Id: <199505140337.UAA22100@freefall.cdrom.com> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pstat pstat.c Sender: cvs-usrsbin-owner@freebsd.org Precedence: bulk phk 95/05/13 20:37:41 Modified: usr.sbin/pstat pstat.c Log: Reflect the fact that we do not swap on the first blocks of a swapdev, to protect disklabels and other such magic stuff.