forked from cockpit/cockpit
Adam Majer
beb6627ab6
- Update suse-microos-branding.patch for new /etc/os-release ID. - Add storage-btrfs.patch to enable BTRFS use in cockpit-storage. OBS-URL: https://build.opensuse.org/request/show/991521 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:cockpit/cockpit?expand=0&rev=101
15 lines
709 B
Diff
15 lines
709 B
Diff
diff --git a/pkg/storaged/format-dialog.jsx b/pkg/storaged/format-dialog.jsx
|
|
index 05b1096..22db61b 100644
|
|
--- a/pkg/storaged/format-dialog.jsx
|
|
+++ b/pkg/storaged/format-dialog.jsx
|
|
@@ -162,7 +162,8 @@ export function format_dialog(client, path, start, size, enable_dos_extended) {
|
|
}
|
|
|
|
const filesystem_options = [];
|
|
- add_fsys("xfs", { value: "xfs", title: "XFS " + _("(recommended)") });
|
|
+ add_fsys("btrfs", { value: "btrfs", title: "BTRFS " + _("(recommended)") });
|
|
+ add_fsys("xfs", { value: "xfs", title: "XFS" });
|
|
add_fsys("ext4", { value: "ext4", title: "EXT4" });
|
|
add_fsys("vfat", { value: "vfat", title: "VFAT" });
|
|
add_fsys("ntfs", { value: "ntfs", title: "NTFS" });
|