aboutsummaryrefslogtreecommitdiff
path: root/lib/libcuse/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* First pass through library packaging.Glen Barber2016-02-041-0/+1
| | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/projects/release-pkg/; revision=295278
* Convert libraries to use LIBADDBaptiste Daroussin2014-11-251-3/+1
| | | | | | | While here reduce a bit overlinking Notes: svn path=/head/; revision=275024
* Add missing DPADD to Makefile.Hans Petter Selasky2014-08-171-0/+1
| | | | | | | PR: 192733 Notes: svn path=/head/; revision=270083
* Add missing MLINKs.Christian Brueffer2014-06-061-0/+5
| | | | Notes: svn path=/head/; revision=267154
* Initial import of character device in userspace support for FreeBSD.Hans Petter Selasky2014-05-231-0/+64
The CUSE library is a wrapper for the devfs kernel functionality which is exposed through /dev/cuse . In order to function the CUSE kernel code must either be enabled in the kernel configuration file or loaded separately as a module. Currently none of the committed items are connected to the default builds, except for installing the needed header files. The CUSE code will be connected to the default world and kernel builds in a follow-up commit. The CUSE module was written by Hans Petter Selasky, somewhat inspired by similar functionality found in FUSE. The CUSE library can be used for many purposes. Currently CUSE is used when running Linux kernel drivers in user-space, which need to create a character device node to communicate with its applications. CUSE has full support for almost all devfs functionality found in the kernel: - kevents - read - write - ioctl - poll - open - close - mmap - private per file handle data Requested by several people. Also see "multimedia/cuse4bsd-kmod" in ports. Notes: svn path=/head/; revision=266581