From cfc05b78feb68efb9275f87d7919fa35c1e82ed3 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Tue, 22 Oct 2024 15:13:56 -0600 Subject: [PATCH 1/2] add Ubuntu 24.10 --- Readme.md | 2 +- Scripts/InstallFEX.py | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Readme.md b/Readme.md index 3d2390e7d1..c70f292600 100644 --- a/Readme.md +++ b/Readme.md @@ -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` diff --git a/Scripts/InstallFEX.py b/Scripts/InstallFEX.py index 4b62fb586d..64bb5f12ed 100755 --- a/Scripts/InstallFEX.py +++ b/Scripts/InstallFEX.py @@ -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 From 9eb2106ed216f0413ae5ff110576f532333e48ff Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Tue, 22 Oct 2024 15:35:41 -0600 Subject: [PATCH 2/2] update supported list --- Readme.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index c70f292600..bff42213e0 100644 --- a/Readme.md +++ b/Readme.md @@ -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).