The relevant build failure is this one: > 13) Y2Storage::StorageFeature.all contains one entry for each feature from libstorage-ng > Failure/Error: expect(described_class.all.map(&:to_sym)).to contain_exactly(*constants) > . > expected collection contained: [:UF_BCACHE, :UF_BCACHEFS, :UF_BITLOCKER, > :UF_BTRFS, :UF_DASD, :UF_DMRAID, :UF_EXFAT, :UF_EXT2, > :UF_E..._ENCRYPTION, :UF_PMEM, :UF_QUOTA, :UF_REISERFS, :UF_SNAPSHOTS, > :UF_SWAP, :UF_UDF, :UF_VFAT, :UF_XFS] > actual collection contained: [:UF_BCACHE, :UF_BITLOCKER, :UF_BTRFS, > :UF_DASD, :UF_DMRAID, :UF_EXFAT, :UF_EXT2, :UF_EXT3, > :UF_EXT4,..._ENCRYPTION, :UF_PMEM, :UF_QUOTA, :UF_REISERFS, > :UF_SNAPSHOTS, :UF_SWAP, :UF_UDF, :UF_VFAT, :UF_XFS] > the missing elements were: [:UF_BCACHEFS] > # ./test/y2storage/storage_feature_test.rb:33:in `block (3 levels) in <top (required)>' Which means a one-line change here: https://github.com/yast/yast-storage-ng/blob/master/src/lib/y2storage/storage_feature.rb#L100 i.e. inserting a line for this new UF_BCACHEFS. I assume that if we are ever going to implement this in yast-storage-ng, we will need support packages for this feature. So far, I found "bcachefs-tools": https://build.opensuse.org/package/show/openSUSE:Factory/bcachefs-tools Is that all, or is package "bcache-tools" also needed? https://build.opensuse.org/package/view_file/openSUSE:Factory/bcache-tools/bcache-tools.spec?expand=1