1/* 2 * SPDX-License-Identifier: ISC 3 * 4 * Copyright (c) 2025 Lexi Winter <ivy@FreeBSD.org> 5 * 6 * Permission to use, copy, modify, and distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. 9 * 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17 */ 18 19/* 20 * Note: Do not include text from the ZFS manpages here, since they are 21 * licensed under the CDDL. 22 */ 23 24comment = "ZFS filesystem support" 25 26desc = <<EOD 27ZFS is an advanced filesystem originally developed by Sun Microsystems 28for the Solaris Operating Environment. This implementation of ZFS is 29developed by the OpenZFS project, and was originally derived from the 30OpenSolaris operating system. 31 32ZFS provides a number of features not found in traditional filesystems, 33including integrated data redundancy using mirroring, striping and parity, 34checksumming of on-disk data with real-time self-repair, data encryption, 35compression, deduplication, cheap snapshots and cloning, and hierarchical 36(tiered) storage. 37 38This package provides the zfs(8) and zpool(8) utilities used to manage 39ZFS filesystems, the zfsd(8) self-healing daemon, and several other 40utilities, as well as the runtime libraries used internally by ZFS 41itself, and the libzfs_core library providing a stable interface for 42managing ZFS programatically. 43EOD 44 45licenses = [ "CDDL-1.0" ] 46 47annotations { 48 set = minimal 49} 50