Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Ubuntu 24.10 and remove unsupported releases #4128

Merged
merged 2 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading