svn commit: r265212 - in head: . share/man/man4 sys/dev/lindev

Eitan Adler eadler at FreeBSD.org
Fri May 2 05:30:50 UTC 2014


Author: eadler
Date: Fri May  2 05:30:49 2014
New Revision: 265212
URL: http://svnweb.freebsd.org/changeset/base/265212

Log:
  lindev(4): remove the device
  
  lindev(4) was only used to provide /dev/full which is now a standard feature of
  FreeBSD.  /dev/full was never linux-specific and provides a generally useful
  feature.
  
  Document this in UPDATING and bump __FreeBSD_version.  This will be documented
  in the PH shortly.
  
  Reported by:	jkim

Deleted:
  head/share/man/man4/lindev.4
  head/sys/dev/lindev/
Modified:
  head/UPDATING
  head/share/man/man4/Makefile

Modified: head/UPDATING
==============================================================================
--- head/UPDATING	Fri May  2 04:51:31 2014	(r265211)
+++ head/UPDATING	Fri May  2 05:30:49 2014	(r265212)
@@ -31,6 +31,10 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11
 	disable the most expensive debugging functionality run
 	"ln -s 'abort:false,junk:false' /etc/malloc.conf".)
 
+20140430:
+	The lindev device has been removed since /dev/full has been made a
+	standard device.  __FreeBSD_version has been bumped.
+
 20140418:
 	The YES_HESIOD knob has been removed. It has been obsolete for
 	a decade. Please move to using WITH_HESIOD instead or your builds

Modified: head/share/man/man4/Makefile
==============================================================================
--- head/share/man/man4/Makefile	Fri May  2 04:51:31 2014	(r265211)
+++ head/share/man/man4/Makefile	Fri May  2 05:30:49 2014	(r265212)
@@ -142,6 +142,7 @@ MAN=	aac.4 \
 	filemon.4 \
 	firewire.4 \
 	fpa.4 \
+	full.4 \
 	fwe.4 \
 	fwip.4 \
 	fwohci.4 \
@@ -226,7 +227,6 @@ MAN=	aac.4 \
 	le.4 \
 	led.4 \
 	lge.4 \
-	${_lindev.4} \
 	${_linux.4} \
 	lmc.4 \
 	lo.4 \
@@ -790,7 +790,6 @@ _if_vxge.4=	if_vxge.4
 _if_wpi.4=	if_wpi.4
 _ipmi.4=	ipmi.4
 _io.4=		io.4
-_lindev.4=	lindev.4
 _linux.4=	linux.4
 _ndis.4=	ndis.4
 _nfe.4=		nfe.4
@@ -819,7 +818,6 @@ _wpi.4=		wpi.4
 _xen.4=		xen.4
 _xnb.4=		xnb.4
 
-MLINKS+=lindev.4 full.4
 .endif
 
 .if ${MACHINE_CPUARCH} == "amd64"


More information about the svn-src-all mailing list