lindev(4): finish the partial commit in r265212

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
This commit is contained in:
Eitan Adler 2014-05-02 07:14:22 +00:00
parent 461dbce2d9
commit 804e017089
7 changed files with 1 additions and 15 deletions

View File

@ -647,8 +647,5 @@ options VM_KMEM_SIZE_SCALE
options NDISAPI
device ndis
# Linux-specific pseudo devices support
device lindev
# Module to enable execution of application via emulators like QEMU
options IMAGACT_BINMISC

View File

@ -241,7 +241,6 @@ screensave_name="green_saver" # Set to the name of the screensaver module
ibcs2_load="NO" # IBCS2 (SCO) emulation
ibcs2_coff_load="NO"
linux_load="NO" # Linux emulation
lindev_load="NO" # Linux-specific pseudo devices (see lindev(4))
svr4_load="NO" # SystemV R4 emulation
streams_load="NO" # System V streams module

View File

@ -232,8 +232,6 @@ dev/hyperv/vmbus/hv_hv.c optional hyperv
dev/hyperv/vmbus/hv_ring_buffer.c optional hyperv
dev/hyperv/vmbus/hv_vmbus_drv_freebsd.c optional hyperv
dev/kbd/kbd.c optional atkbd | sc | ukbd | vt
dev/lindev/full.c optional lindev
dev/lindev/lindev.c optional lindev
dev/nfe/if_nfe.c optional nfe pci
dev/ntb/if_ntb/if_ntb.c optional if_ntb
dev/ntb/ntb_hw/ntb_hw.c optional if_ntb ntb_hw

View File

@ -240,8 +240,6 @@ dev/ipmi/ipmi_pci.c optional ipmi pci
dev/ipmi/ipmi_linux.c optional ipmi compat_linux
dev/kbd/kbd.c optional atkbd | sc | ukbd | vt
dev/le/if_le_isa.c optional le isa
dev/lindev/full.c optional lindev
dev/lindev/lindev.c optional lindev
dev/mse/mse.c optional mse
dev/mse/mse_isa.c optional mse isa
dev/nfe/if_nfe.c optional nfe pci

View File

@ -1002,9 +1002,6 @@ device streams # STREAMS network driver (required for svr4).
options NDISAPI
device ndis
# Linux-specific pseudo devices support
device lindev
#####################################################################
# VM OPTIONS

View File

@ -545,9 +545,6 @@ options COMPAT_SVR4 # build emulator statically
options DEBUG_SVR4 # enable verbose debugging
device streams # STREAMS network driver (required for svr4).
# Linux-specific pseudo devices support
device lindev
#####################################################################
# VM OPTIONS

View File

@ -58,7 +58,7 @@
* in the range 5 to 9.
*/
#undef __FreeBSD_version
#define __FreeBSD_version 1100019 /* Master, propagated to newvers */
#define __FreeBSD_version 1100020 /* Master, propagated to newvers */
/*
* __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,