-
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.
ZFS encryption work in progress. Currently includes Illumos Crypto Po…
…rt and Keystore implementation.
- Loading branch information
Tom Caputi
committed
Feb 18, 2016
1 parent
19a47cb
commit 8c7ee13
Showing
108 changed files
with
33,862 additions
and
54 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
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,4 +1,4 @@ | ||
SUBDIRS = linux sys | ||
SUBDIRS = linux sys arch | ||
|
||
COMMON_H = \ | ||
$(top_srcdir)/include/zfeature_common.h \ | ||
|
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,19 @@ | ||
SUBDIRS = intel | ||
|
||
COMMON_H = | ||
|
||
KERNEL_H = | ||
|
||
USER_H = | ||
|
||
EXTRA_DIST = $(COMMON_H) $(KERNEL_H) $(USER_H) | ||
|
||
if CONFIG_USER | ||
libzfsdir = $(includedir)/libzfs/arch | ||
libzfs_HEADERS = $(COMMON_H) $(USER_H) | ||
endif | ||
|
||
if CONFIG_KERNEL | ||
kerneldir = @prefix@/src/zfs-$(VERSION)/include/arch | ||
kernel_HEADERS = $(COMMON_H) $(KERNEL_H) | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
SUBDIRS = ia32 sys | ||
|
||
COMMON_H = | ||
|
||
KERNEL_H = | ||
|
||
USER_H = | ||
|
||
EXTRA_DIST = $(COMMON_H) $(KERNEL_H) $(USER_H) | ||
|
||
if CONFIG_USER | ||
libzfsdir = $(includedir)/libzfs/arch | ||
libzfs_HEADERS = $(COMMON_H) $(USER_H) | ||
endif | ||
|
||
if CONFIG_KERNEL | ||
kerneldir = @prefix@/src/zfs-$(VERSION)/include/arch | ||
kernel_HEADERS = $(COMMON_H) $(KERNEL_H) | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
SUBDIRS = sys | ||
|
||
COMMON_H = | ||
|
||
KERNEL_H = | ||
|
||
USER_H = | ||
|
||
EXTRA_DIST = $(COMMON_H) $(KERNEL_H) $(USER_H) | ||
|
||
if CONFIG_USER | ||
libzfsdir = $(includedir)/libzfs/arch | ||
libzfs_HEADERS = $(COMMON_H) $(USER_H) | ||
endif | ||
|
||
if CONFIG_KERNEL | ||
kerneldir = @prefix@/src/zfs-$(VERSION)/include/arch | ||
kernel_HEADERS = $(COMMON_H) $(KERNEL_H) | ||
endif |
Oops, something went wrong.