--- anaconda-21.48.22.56/pyanaconda/bootloader.py 2020-06-10 05:26:53.428255834 +0200 +++ anaconda-21.48.22.56/pyanaconda/bootloader.py 2016-07-29 05:42:58.271517665 +0200 @@ -1411,7 +1411,7 @@ @property def stage2_format_types(self): - if productName.startswith("Red Hat ") or productName.startswith("CentOS"): + if productName.startswith("Red Hat ") or productName.startswith("CentOS") or productName.startswith("Koozali"): return ["xfs", "ext4", "ext3", "ext2", "btrfs"] else: return ["ext4", "ext3", "ext2", "btrfs", "xfs"] @@ -2105,7 +2105,7 @@ @property def stage2_format_types(self): - if productName.startswith("Red Hat ") or productName.startswith("CentOS"): + if productName.startswith("Red Hat ") or productName.startswith("CentOS") or productName.startswith("Koozali"): return ["xfs", "ext4", "ext3", "ext2"] else: return ["ext4", "ext3", "ext2", "xfs"] --- anaconda-21.48.22.56/pyanaconda/installclasses/fedora.py 2020-06-10 05:26:52.987273207 +0200 +++ anaconda-21.48.22.56/pyanaconda/installclasses/fedora.py 2016-07-29 05:42:59.278517374 +0200 @@ -25,7 +25,7 @@ class FedoraBaseInstallClass(BaseInstallClass): name = "Fedora" sortPriority = 10000 - if productName.startswith("Red Hat ") or productName.startswith("CentOS"): + if productName.startswith("Red Hat ") or productName.startswith("CentOS") or productName.startswith("Koozali"): hidden = True _l10n_domain = "anaconda" --- anaconda-21.48.22.56/pyanaconda/packaging/yumpayload.py 2020-06-10 05:26:53.788241656 +0200 +++ anaconda-21.48.22.56/pyanaconda/packaging/yumpayload.py 2016-07-29 05:42:59.946517173 +0200 @@ -483,7 +483,7 @@ def mirrorEnabled(self): with _yum_lock: # we just skip this on CentOS since we cant support it yet - if productName.startswith("CentOS"): + if productName.startswith("CentOS") or productName.startswith("Koozali"): return False else: # yum initializes with plugins disabled, and when plugins are disabled