Message ID | 27188582f31ad7e6e7027170a81fa84d77815868.1691530000.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 e0937717..5e651316 100644 --- a/common/verity +++ b/common/verity @@ -224,6 +224,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(+)