-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Refactor tree in to os specific parts - Import FreeBSD SPL - update tests to work on FreeBSD Signed-off-by: Matt Macy <mmacy@FreeBSD.org>
- Loading branch information
Showing
727 changed files
with
105,827 additions
and
2,135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,28 @@ | ||
![img](http://zfsonlinux.org/images/zfs-linux.png) | ||
![img](https://github.com/zfsonfreebsd/ZoF/raw/master/zof-logo.png) | ||
|
||
ZFS on Linux is an advanced file system and volume manager which was originally | ||
developed for Solaris and is now maintained by the OpenZFS community. | ||
developed for Solaris and is now maintained by the OpenZFS community. ZoF is the work | ||
to bring FreeBSD support into the ZoL repo. | ||
|
||
[![codecov](https://codecov.io/gh/zfsonlinux/zfs/branch/master/graph/badge.svg)](https://codecov.io/gh/zfsonlinux/zfs) | ||
[![coverity](https://scan.coverity.com/projects/1973/badge.svg)](https://scan.coverity.com/projects/zfsonlinux-zfs) | ||
|
||
# Official Resources | ||
|
||
* [Site](http://zfsonlinux.org) | ||
* [Wiki](https://github.com/zfsonlinux/zfs/wiki) | ||
* [Mailing lists](https://github.com/zfsonlinux/zfs/wiki/Mailing-Lists) | ||
* [ZoF GitHub Site](https://zfsonfreebsd.github.io/ZoF/) | ||
* [ZoL Site](http://zfsonlinux.org) | ||
* [ZoL Wiki](https://github.com/zfsonlinux/zfs/wiki) | ||
* [ZoL Mailing lists](https://github.com/zfsonlinux/zfs/wiki/Mailing-Lists) | ||
* [OpenZFS site](http://open-zfs.org/) | ||
* [HEAD Snapshots](http://pkg.trueos.org/iso/freebsd-pkgbase/) | ||
|
||
# Installation | ||
|
||
Full documentation for installing ZoL on your favorite Linux distribution can | ||
be found at [our site](http://zfsonlinux.org/). | ||
[FreeBSD HEAD Snapshot Images](http://pkg.trueos.org/iso/freebsd-pkgbase/) are available from the [TrueOS Project](https://www.trueos.org). | ||
|
||
# Contribute & Develop | ||
Legacy ZFS is disabled in the src build (While enabled for the boot-loader) and ZoF is included automatically via the ports system as sysutils/zol and sysutils/zol-kmod. | ||
|
||
We have a separate document with [contribution guidelines](./.github/CONTRIBUTING.md). | ||
# Issues | ||
|
||
# Release | ||
Issues can be reported via GitHub's [Issue Tracker](https://github.com/zfsonfreebsd/ZoF). | ||
|
||
ZFS on Linux is released under a CDDL license. | ||
For more details see the NOTICE, LICENSE and COPYRIGHT files; `UCRL-CODE-235197` | ||
|
||
# Supported Kernels | ||
* The `META` file contains the officially recognized supported kernel versions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
theme: jekyll-theme-slate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
EXTRA_DIST = arc_summary2 arc_summary3 | ||
|
||
transform = $(program_transform_name) | ||
|
||
if USING_PYTHON_2 | ||
dist_bin_SCRIPTS = arc_summary2 | ||
install-exec-hook: | ||
mv $(DESTDIR)$(bindir)/arc_summary2 $(DESTDIR)$(bindir)/arc_summary | ||
before=$$(echo arc_summary2 | sed '$(transform)'); \ | ||
after=$$(echo arc_summary | sed '$(transform)'); \ | ||
mv "$(DESTDIR)$(bindir)/$$before" "$(DESTDIR)$(bindir)/$$after" | ||
else | ||
dist_bin_SCRIPTS = arc_summary3 | ||
install-exec-hook: | ||
mv $(DESTDIR)$(bindir)/arc_summary3 $(DESTDIR)$(bindir)/arc_summary | ||
before=$$(echo arc_summary3 | sed '$(transform)'); \ | ||
after=$$(echo arc_summary | sed '$(transform)'); \ | ||
mv "$(DESTDIR)$(bindir)/$$before" "$(DESTDIR)$(bindir)/$$after" | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.