1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

Add 0xDE flag to to support zfs file system.

This commit is contained in:
hanbings 2024-03-21 22:20:31 +08:00
parent 597a29be46
commit 30452ced73
No known key found for this signature in database
GPG key ID: AA9CB43124987769

View file

@ -994,6 +994,7 @@ pub fn pretty_fstype<'a>(fstype: i64) -> Cow<'a, str> {
0x5846_5342 => "xfs".into(),
0x012F_D16D => "xia".into(),
0x2FC1_2FC1 => "zfs".into(),
0xDE => "zfs".into(),
other => format!("UNKNOWN ({other:#x})").into(),
}
// spell-checker:enable