MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / IsSupportedDistro

Function IsSupportedDistro

Scripts/InstallFEX.py:79–90  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

77 return Arch == "aarch64"
78
79def IsSupportedDistro():
80 Distro = GetDistro()
81
82 # We only support Ubuntu
83 if Distro[0] == "ubuntu":
84 # We only support what is available in ppa:fex-emu/fex
85 return Distro[1] == "22.04" or \
86 Distro[1] == "24.04" or \
87 Distro[1] == "24.10" or \
88 Distro[1] == "25.04"
89
90 return False
91
92_ArchVersion = None
93def ListContainsRequired(Features, RequiredFeatures):

Callers 1

mainFunction · 0.85

Calls 1

GetDistroFunction · 0.85

Tested by

no test coverage detected