summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@redhat.com>2009-04-30 16:22:15 +0200
committerTomas Bzatek <tbzatek@redhat.com>2009-04-30 16:22:15 +0200
commit15218339ee6c0a8c3bf3145028995fc9df3ff374 (patch)
tree93f441a3cc8c615fd7273700cf90c0a937987534
parentbabb9a625f2598227e7b0b2233c78cdfc35b6e5a (diff)
downloadgnome-disk-utility-15218339ee6c0a8c3bf3145028995fc9df3ff374.tar.gz
gnome-disk-utility-15218339ee6c0a8c3bf3145028995fc9df3ff374.tar.xz
gnome-disk-utility-15218339ee6c0a8c3bf3145028995fc9df3ff374.zip
add support for creating ext2 filesystem
-rw-r--r--src/gdu-format-tool/format-window.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gdu-format-tool/format-window.h b/src/gdu-format-tool/format-window.h
index 0292d8c..c2232be 100644
--- a/src/gdu-format-tool/format-window.h
+++ b/src/gdu-format-tool/format-window.h
@@ -65,8 +65,9 @@ typedef struct {
static FormatComboBoxItem filesystem_combo_items[] = {
{"vfat", FALSE, "Compatible with all systems (FAT)"},
- {"ext3", FALSE, "Compatible with Linux computers (ext3)"},
- {"ext3", TRUE, "Encrypted, compatible with Linux computers (LUKS)"}
+ {"ext2", FALSE, "Compatible with Linux systems, no journal (ext2)"},
+ {"ext3", FALSE, "Compatible with Linux systems (ext3)"},
+ {"ext3", TRUE, "Encrypted, compatible with Linux systems (LUKS)"}
};