From owner-cvs-src-old@FreeBSD.ORG Sat Sep 26 12:48:12 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4CC21065672 for ; Sat, 26 Sep 2009 12:48:12 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 95BF38FC13 for ; Sat, 26 Sep 2009 12:48:12 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n8QCmCvY007368 for ; Sat, 26 Sep 2009 12:48:12 GMT (envelope-from bz@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n8QCmCSe007367 for cvs-src-old@freebsd.org; Sat, 26 Sep 2009 12:48:12 GMT (envelope-from bz@repoman.freebsd.org) Message-Id: <200909261248.n8QCmCSe007367@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bz@repoman.freebsd.org using -f From: "Bjoern A. Zeeb" Date: Sat, 26 Sep 2009 12:45:28 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 Makefile lindev.4 src/sys/amd64/conf NOTES src/sys/boot/forth loader.conf src/sys/conf files.amd64 files.i386 files.pc98 src/sys/dev/lindev full.c lindev.c lindev.h src/sys/i386/conf NOTES src/sys/modules ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Sep 2009 12:48:12 -0000 bz 2009-09-26 12:45:28 UTC FreeBSD src repository Modified files: share/man/man4 Makefile sys/amd64/conf NOTES sys/boot/forth loader.conf sys/conf files.amd64 files.i386 files.pc98 sys/i386/conf NOTES sys/modules Makefile sys/pc98/conf NOTES Added files: share/man/man4 lindev.4 sys/dev/lindev full.c lindev.c lindev.h sys/modules/lindev Makefile Log: SVN rev 197518 on 2009-09-26 12:45:28Z by bz lindev(4) [1] is supposed to be a collection of linux-specific pseudo devices that we also support, just not by default (thus only LINT or module builds by default). While currently there is only "/dev/full" [2], we are planning to see more in the future. We may decide to change the module/dependency logic in the future should the list grow too long. This is not part of linux.ko as also non-linux binaries like kFreeBSD userland or ports can make use of this as well. Suggested by: rwatson [1] (name) Submitted by: ed [2] Discussed with: markm, ed, rwatson, kib (weeks ago) Reviewed by: rwatson, brueffer (prev. version) PR: kern/68961 MFC after: 6 weeks Revision Changes Path 1.462 +4 -0 src/share/man/man4/Makefile 1.1 +73 -0 src/share/man/man4/lindev.4 (new) 1.97 +3 -0 src/sys/amd64/conf/NOTES 1.144 +1 -0 src/sys/boot/forth/loader.conf 1.147 +2 -0 src/sys/conf/files.amd64 1.633 +2 -0 src/sys/conf/files.i386 1.377 +2 -0 src/sys/conf/files.pc98 1.1 +103 -0 src/sys/dev/lindev/full.c (new) 1.1 +73 -0 src/sys/dev/lindev/lindev.c (new) 1.1 +34 -0 src/sys/dev/lindev/lindev.h (new) 1.1281 +3 -0 src/sys/i386/conf/NOTES 1.631 +3 -0 src/sys/modules/Makefile 1.1 +8 -0 src/sys/modules/lindev/Makefile (new) 1.102 +3 -0 src/sys/pc98/conf/NOTES