|
|
|
@ -158,7 +158,8 @@ PartitionLayout::setDefaultFsType(FileSystem::Type defaultFsType)
|
|
|
|
|
case FileSystem::BitLocker:
|
|
|
|
|
#endif
|
|
|
|
|
// bad bad
|
|
|
|
|
cWarning() << "The selected default FS" << defaultFsType << "is not suitable." << "Using ext4 instead.";
|
|
|
|
|
cWarning() << "The selected default FS" << defaultFsType << "is not suitable."
|
|
|
|
|
<< "Using ext4 instead.";
|
|
|
|
|
defaultFsType = FileSystem::Ext4;
|
|
|
|
|
break;
|
|
|
|
|
case FileSystem::Ext2:
|
|
|
|
@ -191,7 +192,8 @@ PartitionLayout::setDefaultFsType(FileSystem::Type defaultFsType)
|
|
|
|
|
cWarning() << "The selected default FS" << defaultFsType << "is unusual, but not wrong.";
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
cWarning() << "The selected default FS" << defaultFsType << "is not known to Calamares." << "Using ext4 instead.";
|
|
|
|
|
cWarning() << "The selected default FS" << defaultFsType << "is not known to Calamares."
|
|
|
|
|
<< "Using ext4 instead.";
|
|
|
|
|
defaultFsType = FileSystem::Ext4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|