diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2016-08-17 13:23:03 -0800 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2016-08-17 13:23:03 -0800 |
commit | b0f08fc1e30daafb274181234dae3408fb2eb69b (patch) | |
tree | 63893387dc2b136342922d0d904f3e2d1a7e3ebd /bcache.c | |
parent | dda0923eebd3d36a06ed4976cd4ab98d7cdec679 (diff) |
Encryption support
Diffstat (limited to 'bcache.c')
-rw-r--r-- | bcache.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -31,6 +31,7 @@ #include "bcache-format.h" #include "bcache-fs.h" #include "bcache-run.h" +#include "bcache-key.h" #define PACKAGE_NAME "bcache" #define PACKAGE_VERSION "1.0" @@ -130,6 +131,11 @@ static NihCommand commands[] = { CMD(device_remove, N_("<volume> <devices>"), "Removes a device from its volume"), + /* Crypto */ + + CMD(unlock, N_("<device>"), + "Unlock an encrypted filesystem"), + #if 0 CMD(modify, N_("<options>"), "Modifies attributes related to the volume", |