Message ID | d8fd17f15e6b94b3d2fe2a73f0a9bd8f6b181be9.1688929294.git.sweettea-kernel@dorminy.me (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | fstests: add btrfs encryption testing | expand |
diff --git a/common/verity b/common/verity index 77c257d3..5002dd71 100644 --- a/common/verity +++ b/common/verity @@ -218,6 +218,10 @@ _scratch_mkfs_encrypted_verity() # features with -O. Instead -O must be supplied multiple times. _scratch_mkfs -O encrypt -O verity ;; + btrfs) + # currently verity + encryption is not supported + _notrun "btrfs doesn't currently support verity + encryption" + ;; *) _notrun "$FSTYP not supported in _scratch_mkfs_encrypted_verity" ;;
Currently btrfs encryption doesn't support verity, but it is planned to one day. To be explicit about the lack of support, add a custom error message to the combination. Signed-off-by: Sweet Tea Dorminy <sweettea-kernel@dorminy.me> --- common/verity | 4 ++++ 1 file changed, 4 insertions(+)