From owner-cvs-src@FreeBSD.ORG Wed Apr 9 10:01:08 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D51371065671; Wed, 9 Apr 2008 10:01:08 +0000 (UTC) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C3B3E8FC22; Wed, 9 Apr 2008 10:01:08 +0000 (UTC) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m39A18qm073925; Wed, 9 Apr 2008 10:01:08 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m39A18AM073924; Wed, 9 Apr 2008 10:01:08 GMT (envelope-from phk) Message-Id: <200804091001.m39A18AM073924@repoman.freebsd.org> From: Poul-Henning Kamp Date: Wed, 9 Apr 2008 10:01:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/usr.sbin/fifolog Makefile Makefile.inc flint.lnt src/usr.sbin/fifolog/fifolog_create Makefile fifolog.1 fifolog_create.c src/usr.sbin/fifolog/fifolog_reader Makefile fifolog_reader.c src/usr.sbin/fifolog/fifolog_writer Makefile ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2008 10:01:08 -0000 phk 2008-04-09 10:01:08 UTC FreeBSD src repository Added files: (Branch: RELENG_7) usr.sbin/fifolog Makefile Makefile.inc flint.lnt usr.sbin/fifolog/fifolog_create Makefile fifolog.1 fifolog_create.c usr.sbin/fifolog/fifolog_reader Makefile fifolog_reader.c usr.sbin/fifolog/fifolog_writer Makefile fifolog_writer.c usr.sbin/fifolog/lib Makefile fifolog.h fifolog_create.c fifolog_int.c fifolog_reader.c fifolog_write.h fifolog_write_poll.c getdate.y libfifolog.h libfifolog_int.h miniobj.h Log: MFC: the fifolog tools. (Will be connected to build after a make universe check) Revision Changes Path 1.1.2.1 +10 -0 src/usr.sbin/fifolog/Makefile (new) 1.1.2.1 +13 -0 src/usr.sbin/fifolog/Makefile.inc (new) 1.1.2.1 +22 -0 src/usr.sbin/fifolog/fifolog_create/Makefile (new) 1.1.2.1 +210 -0 src/usr.sbin/fifolog/fifolog_create/fifolog.1 (new) 1.1.2.1 +105 -0 src/usr.sbin/fifolog/fifolog_create/fifolog_create.c (new) 1.2.2.1 +21 -0 src/usr.sbin/fifolog/fifolog_reader/Makefile (new) 1.2.2.1 +170 -0 src/usr.sbin/fifolog/fifolog_reader/fifolog_reader.c (new) 1.1.2.1 +16 -0 src/usr.sbin/fifolog/fifolog_writer/Makefile (new) 1.1.2.1 +105 -0 src/usr.sbin/fifolog/fifolog_writer/fifolog_writer.c (new) 1.1.2.1 +49 -0 src/usr.sbin/fifolog/flint.lnt (new) 1.1.2.1 +17 -0 src/usr.sbin/fifolog/lib/Makefile (new) 1.1.2.1 +138 -0 src/usr.sbin/fifolog/lib/fifolog.h (new) 1.1.2.1 +122 -0 src/usr.sbin/fifolog/lib/fifolog_create.c (new) 1.2.2.1 +275 -0 src/usr.sbin/fifolog/lib/fifolog_int.c (new) 1.1.2.1 +315 -0 src/usr.sbin/fifolog/lib/fifolog_reader.c (new) 1.1.2.1 +65 -0 src/usr.sbin/fifolog/lib/fifolog_write.h (new) 1.2.2.1 +416 -0 src/usr.sbin/fifolog/lib/fifolog_write_poll.c (new) 1.1.2.1 +889 -0 src/usr.sbin/fifolog/lib/getdate.y (new) 1.1.2.1 +62 -0 src/usr.sbin/fifolog/lib/libfifolog.h (new) 1.1.2.1 +45 -0 src/usr.sbin/fifolog/lib/libfifolog_int.h (new) 1.2.2.1 +66 -0 src/usr.sbin/fifolog/lib/miniobj.h (new)