[source] kernel: add kmod-dax
LEDE Commits
lede-commits at lists.infradead.org
Sat Dec 16 13:18:20 PST 2017
hauke pushed a commit to source.git, branch master:
https://git.lede-project.org/38be62b97ecd313b725f1165a4ffedf166095c06
commit 38be62b97ecd313b725f1165a4ffedf166095c06
Author: Hauke Mehrtens <hauke at hauke-m.de>
AuthorDate: Sun Nov 12 21:58:19 2017 +0100
kernel: add kmod-dax
In kernel 4.14 kmod-dm depends on kmod-dax.
Add DAX: "Direct access to differentiated memory" to LEDE.
Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
package/kernel/linux/modules/block.mk | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/package/kernel/linux/modules/block.mk b/package/kernel/linux/modules/block.mk
index 62f0821..ab9d7af 100644
--- a/package/kernel/linux/modules/block.mk
+++ b/package/kernel/linux/modules/block.mk
@@ -206,10 +206,21 @@ endef
$(eval $(call KernelPackage,block2mtd))
+define KernelPackage/dax
+ SUBMENU:=$(BLOCK_MENU)
+ TITLE:=DAX: direct access to differentiated memory
+ DEPENDS:=@LINUX_4_14
+ KCONFIG:=CONFIG_DAX
+ FILES:=$(LINUX_DIR)/drivers/dax/dax.ko
+endef
+
+$(eval $(call KernelPackage,dax))
+
+
define KernelPackage/dm
SUBMENU:=$(BLOCK_MENU)
TITLE:=Device Mapper
- DEPENDS:=+kmod-crypto-manager
+ DEPENDS:=+kmod-crypto-manager +LINUX_4_14:kmod-dax
# All the "=n" are unnecessary, they're only there
# to stop the config from asking the question.
# MIRROR is M because I've needed it for pvmove.
More information about the lede-commits
mailing list