diff options
Diffstat (limited to 'common/casefold')
-rw-r--r-- | common/casefold | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common/casefold b/common/casefold index d9126f4c..8fbdb52a 100644 --- a/common/casefold +++ b/common/casefold @@ -12,6 +12,9 @@ _has_casefold_kernel_support() f2fs) test -f '/sys/fs/f2fs/features/casefold' ;; + bcachefs) + true + ;; *) # defaults to unsupported false @@ -52,6 +55,9 @@ _scratch_mkfs_casefold() f2fs) _scratch_mkfs -C utf8 $* ;; + bcachefs) + _scratch_mkfs $* + ;; *) _notrun "Don't know how to mkfs with casefold support on $FSTYP" ;; @@ -67,6 +73,9 @@ _scratch_mkfs_casefold_strict() f2fs) _scratch_mkfs -C utf8:strict ;; + bcachefs) + _scratch_mkfs $* + ;; *) _notrun "Don't know how to mkfs with casefold-strict support on $FSTYP" ;; |