@@ -547,6 +547,18 @@ config STACKDEPOT
bool
select STACKTRACE
+config SED
+ bool "Self-Encrypting Drive library"
+ help
+ Provides self-encrypting drive helpers
+
+config SED_OPAL
+ bool "Self-Encrypting Drive library - Opal implementation"
+ depends on SED
+ help
+ Provides self-encrypting drive helpers for drives that implement the
+ Opal spec.
+
config SBITMAP
bool
@@ -229,4 +229,11 @@ obj-$(CONFIG_UBSAN) += ubsan.o
UBSAN_SANITIZE_ubsan.o := n
+
+obj-$(CONFIG_SED) += sed.o
+
+obj-$(CONFIG_SED_OPAL) += sed-opal.o
+obj-$(CONFIG_SED_OPAL) += sed-opal_key.o
+
obj-$(CONFIG_SBITMAP) += sbitmap.o
+