()
| 77 | return Arch == "aarch64" |
| 78 | |
| 79 | def 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 |
| 93 | def ListContainsRequired(Features, RequiredFeatures): |