Skip to content

Commit

Permalink
Merge pull request #4128 from ahoneybun/update-ubuntu-support
Browse files Browse the repository at this point in the history
add Ubuntu 24.10 and remove unsupported releases
  • Loading branch information
Sonicadvance1 authored Oct 22, 2024
2 parents 5d1fda7 + 9eb2106 commit 368162d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
9 changes: 7 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FEX is very much work in progress, so expect things to change.


## Quick start guide
### For Ubuntu 20.04, 21.04, 21.10, 22.04
### For Ubuntu 22.04, 24.04 and 24.10
Execute the following command in the terminal to install FEX through a PPA.

`curl --silent https://raw.githubusercontent.com/FEX-Emu/FEX/main/Scripts/InstallFEX.py --output /tmp/InstallFEX.py && python3 /tmp/InstallFEX.py && rm /tmp/InstallFEX.py`
Expand All @@ -22,7 +22,12 @@ Please see [Building FEX](#building-fex).
## Getting Started
FEX has been tested to build and run on ARMv8.0+ hardware.
ARMv7 hardware will not work.
Expected operating system usage is Linux. FEX has been tested with Ubuntu 20.04, 20.10, and 21.04. Also Arch Linux.
Expected operating system usage is Linux. FEX has been tested with the following Linux OSes:

- Ubuntu 22.04
- Ubuntu 24.04
- Ubuntu 24.10
- Arch Linux

On AArch64 hosts the user **MUST** have an x86-64 RootFS [Creating a RootFS](#RootFS-Generation).

Expand Down
5 changes: 2 additions & 3 deletions Scripts/InstallFEX.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,8 @@ def IsSupportedDistro():
if Distro[0] == "ubuntu":
# We only support what is available in ppa:fex-emu/fex
return Distro[1] == "22.04" or \
Distro[1] == "23.04" or \
Distro[1] == "23.10" or \
Distro[1] == "24.04"
Distro[1] == "24.04" or \
Distro[1] == "24.10"

return False

Expand Down

0 comments on commit 368162d

Please sign in to comment.