From owner-cvs-usrbin Mon Apr 24 22:27:07 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id WAA13835 for cvs-usrbin-outgoing; Mon, 24 Apr 1995 22:27:07 -0700 Received: (from phk@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id WAA13825 ; Mon, 24 Apr 1995 22:27:05 -0700 Date: Mon, 24 Apr 1995 22:27:05 -0700 From: Poul-Henning Kamp Message-Id: <199504250527.WAA13825@freefall.cdrom.com> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/kzip kzip.c Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk phk 95/04/24 22:27:04 Modified: usr.bin/kzip kzip.c Log: Do kernels up to 2Mb. From owner-cvs-usrbin Wed Apr 26 12:03:20 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id MAA21866 for cvs-usrbin-outgoing; Wed, 26 Apr 1995 12:03:20 -0700 Received: (from wpaul@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id MAA21855 ; Wed, 26 Apr 1995 12:03:18 -0700 Date: Wed, 26 Apr 1995 12:03:18 -0700 From: Bill Paul Message-Id: <199504261903.MAA21855@freefall.cdrom.com> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/ypwhich ypwhich.c Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk wpaul 95/04/26 12:03:17 Modified: lib/libc/yp yplib.c usr.sbin/ypbind ypbind.c ypbind.8 usr.bin/ypwhich ypwhich.c Log: ypbind.c: Major overhaul. - Moved to a more client-driven model. We aggressively attempt to keep the default domain bound (as before) but we give up on non-default domains if we lose contact with a server and fail to get a response after one round of broadcasting. This helps drastically reduce the amount of network bandwitdh that ypbind consumes: if a client references the secondary domain at some later point, this will prod ypbind into establishing a new binding anyway, so continuously broadcasting without need is pointless. Note that we still actively seek out a binding for our default domain even if no client program has queried us yet. I'm not exactly sure if this matches SunOS's behavior or not, but I decided to do it this way since we can get into all sorts of trouble if our default domain comes unbound. Even so, we're still much quieter than we used to be. - Removed a bunch of no-longer pertinent comments and a couple of chunks of #ifdef 0'ed code that no longer fit in to the new layout. - Theo deRaadt must have become frustrated with the callback mechanism in clnt_broadcast(), because he shamelessly stole the clnt_broadcast() code right out of the RPC library and hacked it up to suit his needs. (Comments and all! :) I can understand why: clnt_broadcast() blocks while awaiting replies. Changing this behavior requires surgery. However, you can work around this: fork the broadcast into a child process and relay the results back to the parent via a pipe. (Careful obervation has shown that the SunOS ypbind forks children for broadcasting too, though I can only guess what sort of interprocess communication it uses. pipe() seems to do the job well enough.) This may seem like the long way around, but it's not really that hard to implement, and I'd prefer to use documented RPC library functions wherever possible. We're careful to limit the number of simultaneous broadcasters to avoid swamping the system (the current limit is 5). Each clnt_broadcast() call only sends out a small number of packets at increasing intervals. We're also careful not to spawn more than one bradcaster for a given domain. - Used clntudp_bufcreate() and clnt_call() to implement a ping() function for directly querying a particular server so that we can check if it's still alive. This lets me completely remove the old bradcasting code and use actual RPC library calls instead, at the cost of more than a few handfulls of torn-out hair. (Make no mistake folks: I *HATE* RPC.) Currently, the ping interval is one minute. - Fixed another potential 'nfds too big for select()' bug: use _rpc_dtablesize() instead of getdtablesize(). - Quieted gcc -Wall a bit. - Probably a bunch of other stuff that I've forgotten. ypbind.8: - Updated man page to reflect modifications. ypwhich.c: - Small mind-o fix from last time: decode error results from ypbind correctly (*groan*) yplib.c: - same as above - Change behavior of _yp_dobind() a little: if we get back a 'Domain not bound' error for a given domain, retry a few times before giving up and passing the error back to the caller. We have to sleep for a few seconds between tries since the 'Domain not bound' error comes back immediately (by repeatedly looping, we end up pounding on ypbind). We retry at most 20 times at 5 second intervals. This gives us a full minute to get a response. This seems to deviate a bit from SunOS behavior -- it appears to wait forever -- but I don't like the idea of perpetually hanging inside a library call. Note that this should fix the problems some people have with bindings not being established fast enough at boot time; sometimes amd is started in /etc/rc after ypbind has run but before it gets a binding set up. The automounter gets annoyed at this and tends to exit. By pausing ther YP calls until a binding is ready, we avoid this situation. - Another _yp_dobind() change: if we determine that our binding files are unlocked or nonexistent, jump directly to code that pokes ypbind into restablishing the binding. Again, if it fails, we'll time out eventually and return. From owner-cvs-usrbin Wed Apr 26 14:58:21 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id OAA27916 for cvs-usrbin-outgoing; Wed, 26 Apr 1995 14:58:21 -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 OAA27907 ; Wed, 26 Apr 1995 14:58:10 -0700 Received: (from rgrimes@localhost) by gndrsh.aac.dev.com (8.6.11/8.6.9) id OAA02612; Wed, 26 Apr 1995 14:55:31 -0700 From: "Rodney W. Grimes" Message-Id: <199504262155.OAA02612@gndrsh.aac.dev.com> Subject: Re: cvs commit: src/usr.bin/ypwhich ypwhich.c To: wpaul@freefall.cdrom.com (Bill Paul) Date: Wed, 26 Apr 1995 14:55:30 -0700 (PDT) Cc: CVS-commiters@freefall.cdrom.com, cvs-usrbin@freefall.cdrom.com In-Reply-To: <199504261903.MAA21855@freefall.cdrom.com> from "Bill Paul" at Apr 26, 95 12:03:18 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: 982 Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk > > wpaul 95/04/26 12:03:17 > > Modified: lib/libc/yp yplib.c > usr.sbin/ypbind ypbind.c ypbind.8 > usr.bin/ypwhich ypwhich.c > Log: > ypbind.c: Major overhaul. ... > > Note that this should fix the problems some people have with bindings > not being established fast enough at boot time; sometimes amd is started > in /etc/rc after ypbind has run but before it gets a binding set up. The > automounter gets annoyed at this and tends to exit. By pausing ther YP > calls until a binding is ready, we avoid this situation. I take it that this means I can kill my work in process of looping over ypwhich checking the error status for certain values in /etc/rc?? I almost have it finished, but it would be nice just to make that go away if this fixes the problem! -- Rod Grimes rgrimes@gndrsh.aac.dev.com Accurate Automation Company Custom computers for FreeBSD From owner-cvs-usrbin Wed Apr 26 16:57:32 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id QAA01866 for cvs-usrbin-outgoing; Wed, 26 Apr 1995 16:57:32 -0700 Received: from FileServ1.MI.Uni-Koeln.DE (FileServ1.MI.Uni-Koeln.DE [134.95.212.1]) by freefall.cdrom.com (8.6.10/8.6.6) with SMTP id QAA01860 ; Wed, 26 Apr 1995 16:57:22 -0700 Received: by FileServ1.MI.Uni-Koeln.DE id AA09921 (5.67b/IDA-1.5); Thu, 27 Apr 1995 01:57:05 +0200 Message-Id: <199504262357.AA09921@FileServ1.MI.Uni-Koeln.DE> From: se@MI.Uni-Koeln.DE (Stefan Esser) Date: Thu, 27 Apr 1995 01:57:05 +0200 In-Reply-To: Bill Paul "cvs commit: src/usr.bin/ypwhich ypwhich.c" (Apr 26, 12:03) X-Mailer: Mail User's Shell (7.2.5 10/14/92) To: Bill Paul Subject: Re: cvs commit: src/usr.bin/ypwhich ypwhich.c Cc: CVS-commiters@freefall.cdrom.com, cvs-usrbin@freefall.cdrom.com Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk On Apr 26, 12:03, Bill Paul wrote: } Subject: cvs commit: src/usr.bin/ypwhich ypwhich.c } wpaul 95/04/26 12:03:17 } } Modified: lib/libc/yp yplib.c } usr.sbin/ypbind ypbind.c ypbind.8 } usr.bin/ypwhich ypwhich.c } Log: } ypbind.c: Major overhaul. Well, this completely solved my problem with NIS served automounter maps. No need for a "sleep 5" or looping until ypbind returns success status is required in "/etc/rc" anymore. Thanks a lot ! STefan -- Stefan Esser Internet: Zentrum fuer Paralleles Rechnen Tel: +49 221 4706017 Universitaet zu Koeln FAX: +49 221 4705160 Weyertal 80 50931 Koeln From owner-cvs-usrbin Thu Apr 27 09:03:49 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id JAA20544 for cvs-usrbin-outgoing; Thu, 27 Apr 1995 09:03:49 -0700 Received: (from jfieber@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id JAA20534 ; Thu, 27 Apr 1995 09:03:48 -0700 Date: Thu, 27 Apr 1995 09:03:48 -0700 From: John Fieber Message-Id: <199504271603.JAA20534@freefall.cdrom.com> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/sgmls - Imported sources Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk jfieber 95/04/27 09:03:47 Log: The sgmls SGML parser. Support for our hypertext documents. Reviewed by: Paul Richards, Garrett Wollman Status: Vendor Tag: jfieber Release Tags: sgmls_1_1 N src/usr.bin/sgmls/README N src/usr.bin/sgmls/LICENSE N src/usr.bin/sgmls/Makefile N src/usr.bin/sgmls/unix.cfg N src/usr.bin/sgmls/sgmls.pl N src/usr.bin/sgmls/configure N src/usr.bin/sgmls/Makefile.inc N src/usr.bin/sgmls/rast/Makefile N src/usr.bin/sgmls/rast/rast.c N src/usr.bin/sgmls/rast/rast.1 N src/usr.bin/sgmls/sgmlsasp/Makefile N src/usr.bin/sgmls/sgmlsasp/sgmlsasp.c N src/usr.bin/sgmls/sgmlsasp/sgmlsasp.h N src/usr.bin/sgmls/sgmlsasp/replace.c N src/usr.bin/sgmls/sgmlsasp/replace.h N src/usr.bin/sgmls/sgmlsasp/sgmlsasp.1 N src/usr.bin/sgmls/libsgmls/sgmls.c N src/usr.bin/sgmls/libsgmls/sgmls.h N src/usr.bin/sgmls/libsgmls/Makefile N src/usr.bin/sgmls/sgmls/ambig.c N src/usr.bin/sgmls/sgmls/context.c N src/usr.bin/sgmls/sgmls/dosproc.c N src/usr.bin/sgmls/sgmls/ebcdic.c N src/usr.bin/sgmls/sgmls/entgen.c N src/usr.bin/sgmls/sgmls/exclude.c N src/usr.bin/sgmls/sgmls/genlex.c N src/usr.bin/sgmls/sgmls/getopt.c N src/usr.bin/sgmls/sgmls/lexrf.c N src/usr.bin/sgmls/sgmls/lextaba.c N src/usr.bin/sgmls/sgmls/lextabe.c N src/usr.bin/sgmls/sgmls/lineout.c N src/usr.bin/sgmls/sgmls/main.c N src/usr.bin/sgmls/sgmls/md1.c N src/usr.bin/sgmls/sgmls/md2.c N src/usr.bin/sgmls/sgmls/msgcat.c N src/usr.bin/sgmls/sgmls/pars1.c N src/usr.bin/sgmls/sgmls/pars2.c N src/usr.bin/sgmls/sgmls/pcbrf.c N src/usr.bin/sgmls/sgmls/portproc.c N src/usr.bin/sgmls/sgmls/Makefile N src/usr.bin/sgmls/sgmls/serv.c N src/usr.bin/sgmls/sgmls/sgml1.c N src/usr.bin/sgmls/sgmls/sgml2.c N src/usr.bin/sgmls/sgmls/sgmldecl.c N src/usr.bin/sgmls/sgmls/sgmlio.c N src/usr.bin/sgmls/sgmls/sgmlmsg.c N src/usr.bin/sgmls/sgmls/sgmlxtrn.c N src/usr.bin/sgmls/sgmls/stklen.c N src/usr.bin/sgmls/sgmls/strerror.c N src/usr.bin/sgmls/sgmls/synrf.c N src/usr.bin/sgmls/sgmls/traceset.c N src/usr.bin/sgmls/sgmls/unixproc.c N src/usr.bin/sgmls/sgmls/version.c N src/usr.bin/sgmls/sgmls/xfprintf.c N src/usr.bin/sgmls/sgmls/config.h N src/usr.bin/sgmls/sgmls/action.h N src/usr.bin/sgmls/sgmls/adl.h N src/usr.bin/sgmls/sgmls/appl.h N src/usr.bin/sgmls/sgmls/context.h N src/usr.bin/sgmls/sgmls/ebcdic.h N src/usr.bin/sgmls/sgmls/entity.h N src/usr.bin/sgmls/sgmls/error.h N src/usr.bin/sgmls/sgmls/etype.h N src/usr.bin/sgmls/sgmls/getopt.h N src/usr.bin/sgmls/sgmls/keyword.h N src/usr.bin/sgmls/sgmls/latin1.h N src/usr.bin/sgmls/sgmls/lexcode.h N src/usr.bin/sgmls/sgmls/lextoke.h N src/usr.bin/sgmls/sgmls/lineout.h N src/usr.bin/sgmls/sgmls/msg.h N src/usr.bin/sgmls/sgmls/msgcat.h N src/usr.bin/sgmls/sgmls/sgmlaux.h N src/usr.bin/sgmls/sgmls/sgmldecl.h N src/usr.bin/sgmls/sgmls/sgmlfnsm.h N src/usr.bin/sgmls/sgmls/sgmlincl.h N src/usr.bin/sgmls/sgmls/sgmlmain.h N src/usr.bin/sgmls/sgmls/sgmlxtrn.h N src/usr.bin/sgmls/sgmls/source.h N src/usr.bin/sgmls/sgmls/std.h N src/usr.bin/sgmls/sgmls/synxtrn.h N src/usr.bin/sgmls/sgmls/tools.h N src/usr.bin/sgmls/sgmls/trace.h N src/usr.bin/sgmls/sgmls/unix.cfg N src/usr.bin/sgmls/sgmls/sgmls.1 No conflicts created by this import From owner-cvs-usrbin Thu Apr 27 11:03:33 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id LAA26398 for cvs-usrbin-outgoing; Thu, 27 Apr 1995 11:03:33 -0700 Received: (from jfieber@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id LAA26388 ; Thu, 27 Apr 1995 11:03:30 -0700 Date: Thu, 27 Apr 1995 11:03:30 -0700 From: John Fieber Message-Id: <199504271803.LAA26388@freefall.cdrom.com> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin Makefile Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk jfieber 95/04/27 11:03:30 Modified: usr.bin Makefile Log: Added sgmls From owner-cvs-usrbin Thu Apr 27 11:19:03 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id LAA27693 for cvs-usrbin-outgoing; Thu, 27 Apr 1995 11:19:03 -0700 Received: (from jfieber@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id LAA27681 ; Thu, 27 Apr 1995 11:19:00 -0700 Date: Thu, 27 Apr 1995 11:19:00 -0700 From: John Fieber Message-Id: <199504271819.LAA27681@freefall.cdrom.com> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/sgmls/sgmlsasp replace.c Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk jfieber 95/04/27 11:18:59 Modified: usr.bin/sgmls/sgmlsasp replace.c Log: Silence -Wall. From owner-cvs-usrbin Thu Apr 27 12:27:47 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id MAA29814 for cvs-usrbin-outgoing; Thu, 27 Apr 1995 12:27:47 -0700 Received: (from ache@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id MAA29804 ; Thu, 27 Apr 1995 12:27:43 -0700 Date: Thu, 27 Apr 1995 12:27:43 -0700 From: "Andrey A. Chernov" Message-Id: <199504271927.MAA29804@freefall.cdrom.com> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/at at.c privs.h Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk ache 95/04/27 12:27:43 Modified: usr.bin/at at.c privs.h Log: Remove setre* hacks, we have working thing now From owner-cvs-usrbin Fri Apr 28 02:28:55 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id CAA05406 for cvs-usrbin-outgoing; Fri, 28 Apr 1995 02:28:55 -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 CAA05398 ; Fri, 28 Apr 1995 02:28:47 -0700 Received: (from jkh@localhost) by time.cdrom.com (8.6.11/8.6.9) id CAA02462; Fri, 28 Apr 1995 02:28:47 -0700 Date: Fri, 28 Apr 1995 02:28:47 -0700 From: "Jordan K. Hubbard" Message-Id: <199504280928.CAA02462@time.cdrom.com> To: CVS-commiters@time.cdrom.com, cvs-usrbin@time.cdrom.com Subject: cvs commit: src/usr.bin/piano - Imported sources Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk jkh 95/04/28 02:28:46 Log: Get this out of my inbox. It's a cute little utility which make give those of us with 4-6 year old children something to actually have them play with under FreeBSD so that they'll stop bothering their fathers to boot the machine into DOS.. :-) Submitted by: Toshihiro Kanda Status: Vendor Tag: piano Release Tags: piano N src/usr.bin/piano/Makefile N src/usr.bin/piano/README N src/usr.bin/piano/piano.6 N src/usr.bin/piano/piano.c No conflicts created by this import From owner-cvs-usrbin Fri Apr 28 02:31:03 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id CAA05483 for cvs-usrbin-outgoing; Fri, 28 Apr 1995 02:31:03 -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 CAA05470 ; Fri, 28 Apr 1995 02:30:56 -0700 Received: (from jkh@localhost) by time.cdrom.com (8.6.11/8.6.9) id CAA02505; Fri, 28 Apr 1995 02:30:56 -0700 Date: Fri, 28 Apr 1995 02:30:56 -0700 From: "Jordan K. Hubbard" Message-Id: <199504280930.CAA02505@time.cdrom.com> To: CVS-commiters@time.cdrom.com, cvs-usrbin@time.cdrom.com Subject: cvs commit: src/usr.bin Makefile Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk jkh 95/04/28 02:30:55 Modified: usr.bin Makefile Log: Add piano. From owner-cvs-usrbin Fri Apr 28 02:53:49 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id CAA06063 for cvs-usrbin-outgoing; Fri, 28 Apr 1995 02:53:49 -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 CAA06055 ; Fri, 28 Apr 1995 02:53:46 -0700 Received: from ibp.ibp.fr (ibp.ibp.fr [132.227.60.30]) by time.cdrom.com (8.6.11/8.6.9) with ESMTP id CAA02589; Fri, 28 Apr 1995 02:53:43 -0700 Received: from blaise.ibp.fr (blaise.ibp.fr [132.227.60.1]) by ibp.ibp.fr (8.6.12/jtpda-5.0) with ESMTP id LAA10964 ; Fri, 28 Apr 1995 11:53:39 +0200 Received: from (roberto@localhost) by blaise.ibp.fr (8.6.12/jtpda-5.0) id LAA07611 ; Fri, 28 Apr 1995 11:53:39 +0200 From: roberto@blaise.ibp.fr (Ollivier Robert) Message-Id: <199504280953.LAA07611@blaise.ibp.fr> Subject: Re: cvs commit: src/usr.bin/piano - Imported sources To: jkh@time.cdrom.com (Jordan K. Hubbard) Date: Fri, 28 Apr 1995 11:53:38 +0200 (MET DST) Cc: CVS-commiters@time.cdrom.com, cvs-usrbin@time.cdrom.com In-Reply-To: <199504280928.CAA02462@time.cdrom.com> from "Jordan K. Hubbard" at Apr 28, 95 02:28:47 am X-Operating-System: FreeBSD 2.0.950416-SNAP ctm#562 X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 550 Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk > > jkh 95/04/28 02:28:46 > > Log: > Get this out of my inbox. It's a cute little utility which make give > those of us with 4-6 year old children something to actually have them play > with under FreeBSD so that they'll stop bothering their fathers to boot > the machine into DOS.. :-) > Submitted by: Toshihiro Kanda It should go into games, not in usr.bin. -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@FreeBSD.ORG FreeBSD keltia 2.0.950416-SNAP #17: Sun Apr 16 17:12:07 MET DST 1995 From owner-cvs-usrbin Fri Apr 28 09:24:33 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id JAA17657 for cvs-usrbin-outgoing; Fri, 28 Apr 1995 09:24:33 -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 JAA17644 ; Fri, 28 Apr 1995 09:24:23 -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 JAA06750; Fri, 28 Apr 1995 09:24:14 -0700 Received: (from rgrimes@localhost) by gndrsh.aac.dev.com (8.6.11/8.6.9) id JAA06312; Fri, 28 Apr 1995 09:21:29 -0700 From: "Rodney W. Grimes" Message-Id: <199504281621.JAA06312@gndrsh.aac.dev.com> Subject: Re: cvs commit: src/usr.bin/piano - Imported sources To: jkh@time.cdrom.com (Jordan K. Hubbard) Date: Fri, 28 Apr 1995 09:21:29 -0700 (PDT) Cc: CVS-commiters@time.cdrom.com, cvs-usrbin@time.cdrom.com In-Reply-To: <199504280928.CAA02462@time.cdrom.com> from "Jordan K. Hubbard" at Apr 28, 95 02:28:47 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: 585 Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk > > jkh 95/04/28 02:28:46 > > Log: > Get this out of my inbox. It's a cute little utility which make give > those of us with 4-6 year old children something to actually have them play > with under FreeBSD so that they'll stop bothering their fathers to boot > the machine into DOS.. :-) Does this belong here? Should it not have gone into src/games???? > Submitted by: Toshihiro Kanda -- Rod Grimes rgrimes@gndrsh.aac.dev.com Accurate Automation Company Custom computers for FreeBSD From owner-cvs-usrbin Fri Apr 28 10:35:01 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA19208 for cvs-usrbin-outgoing; Fri, 28 Apr 1995 10:35:01 -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 KAA19198 ; Fri, 28 Apr 1995 10:34:54 -0700 Received: (from jkh@localhost) by time.cdrom.com (8.6.11/8.6.9) id KAA07483; Fri, 28 Apr 1995 10:34:53 -0700 Date: Fri, 28 Apr 1995 10:34:53 -0700 From: "Jordan K. Hubbard" Message-Id: <199504281734.KAA07483@time.cdrom.com> To: CVS-commiters@time.cdrom.com, cvs-usrbin@time.cdrom.com Subject: cvs commit: src/usr.bin/piano Makefile README piano.6 piano.c Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk jkh 95/04/28 10:34:52 Removed: usr.bin/piano Makefile README piano.6 piano.c Log: Nuke these out of here in preparation for their move to the RIGHT location. Sorry, folks. I just wasn't thinking. From owner-cvs-usrbin Fri Apr 28 10:39:00 1995 Return-Path: cvs-usrbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA19354 for cvs-usrbin-outgoing; Fri, 28 Apr 1995 10:39:00 -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 KAA19347 ; Fri, 28 Apr 1995 10:38:56 -0700 Received: (from jkh@localhost) by time.cdrom.com (8.6.11/8.6.9) id KAA07558; Fri, 28 Apr 1995 10:38:56 -0700 Date: Fri, 28 Apr 1995 10:38:56 -0700 From: "Jordan K. Hubbard" Message-Id: <199504281738.KAA07558@time.cdrom.com> To: CVS-commiters@time.cdrom.com, cvs-usrbin@time.cdrom.com Subject: cvs commit: src/usr.bin Makefile Sender: cvs-usrbin-owner@freebsd.org Precedence: bulk jkh 95/04/28 10:38:55 Modified: usr.bin Makefile Log: Remove piano.