1comment "zfs needs a Linux kernel to be built" 2 depends on !BR2_LINUX_KERNEL 3 4comment "zfs needs udev /dev management" 5 depends on BR2_LINUX_KERNEL 6 depends on !BR2_PACKAGE_HAS_UDEV 7 8config BR2_PACKAGE_ZFS 9 bool "zfs" 10 depends on BR2_LINUX_KERNEL 11 depends on BR2_PACKAGE_HAS_UDEV 12 depends on BR2_USE_MMU # util-linux (libblkid) 13 depends on BR2_TOOLCHAIN_HAS_THREADS # libtirpc 14 select BR2_PACKAGE_UTIL_LINUX 15 select BR2_PACKAGE_UTIL_LINUX_LIBBLKID 16 select BR2_PACKAGE_UTIL_LINUX_LIBUUID 17 select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC 18 select BR2_PACKAGE_LIBAIO 19 select BR2_PACKAGE_OPENSSL 20 select BR2_PACKAGE_ZLIB 21 help 22 OpenZFS on Linux and FreeBSD 23 24 OpenZFS is an advanced file system and volume manager which 25 was originally developed for Solaris and is now maintained by 26 the OpenZFS community. This repository contains the code for 27 running OpenZFS on Linux and FreeBSD. 28 29 This package builds the kernel modules and userland utils 30 required to operates with ZFS volumes. 31 32 http://zfsonlinux.org/ 33