forked from cockpit/cockpit
Adam Majer
04cb701efc
* Networking: Show additional ports for each firewall zone * Networking: List Firewall active zones when unprivileged * Inline documentation * Support for transient virtual machines * UEFI for virtual machines * Unattended virtual machines installation * Localize times * Better support for various TLS certificate formats * Overview: Add CPU utilization to usage card * Dashboard: Support SSH identity unlocking when adding new machines * SElinux: Introduce an Ansible automation script * Machines: Support “bridge” type network interfaces * Machines: Support “bus” type disk configuration - suse_docs.patch, storage-btrfs.patch: refreshed OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:cockpit/cockpit?expand=0&rev=170
13 lines
553 B
Diff
13 lines
553 B
Diff
Index: cockpit/pkg/storaged/block/format-dialog.jsx
|
|
===================================================================
|
|
--- cockpit.orig/pkg/storaged/block/format-dialog.jsx
|
|
+++ cockpit/pkg/storaged/block/format-dialog.jsx
|
|
@@ -143,6 +143,7 @@ function format_dialog_internal(client,
|
|
}
|
|
|
|
const filesystem_options = [];
|
|
+ add_fsys("btrfs", { value: "btrfs", title: "BTRFS " + _("(recommended)") });
|
|
add_fsys("xfs", { value: "xfs", title: "XFS" });
|
|
add_fsys("ext4", { value: "ext4", title: "EXT4" });
|
|
if (client.features.btrfs)
|