From ebffc0be612421001f09332743dce84a3f287d4b Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Wed, 26 Aug 2026 09:42:07 +0200 Subject: [PATCH 1/2] Add instructions for ARM Windows --- installation/windows.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/installation/windows.md b/installation/windows.md index de43482..6863537 100644 --- a/installation/windows.md +++ b/installation/windows.md @@ -50,9 +50,10 @@ Installing the PSP SDK itself can be done with the following steps: ```shell wget https://github.com/pspdev/pspdev/releases/latest/download/pspdev-ubuntu-latest-x86_64.tar.gz ``` + On the ARM version of Windows, replace the link with `https://github.com/pspdev/pspdev/releases/download/v20260801/pspdev-ubuntu-24.04-arm-arm64.tar.gz`. 2. Extract the archive using: ```shell - tar -xvf pspdev-ubuntu-latest-x86_64.tar.gz + tar -xvf pspdev-ubuntu-*.tar.gz ``` 3. To make the SDK usable, some environment variables need to be set. The first step in doing so it to open the `~/.bashrc` file with the `nano` text editor using the following command from an Ubuntu terminal: ```shell From 02ddb483ae8786cc660bb8e684b484361205f90d Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Wed, 26 Aug 2026 17:53:40 +0200 Subject: [PATCH 2/2] Fix link to arm build in Windows instructions --- installation/windows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installation/windows.md b/installation/windows.md index 6863537..9ab684f 100644 --- a/installation/windows.md +++ b/installation/windows.md @@ -50,7 +50,7 @@ Installing the PSP SDK itself can be done with the following steps: ```shell wget https://github.com/pspdev/pspdev/releases/latest/download/pspdev-ubuntu-latest-x86_64.tar.gz ``` - On the ARM version of Windows, replace the link with `https://github.com/pspdev/pspdev/releases/download/v20260801/pspdev-ubuntu-24.04-arm-arm64.tar.gz`. + On the ARM version of Windows, replace the link with `https://github.com/pspdev/pspdev/releases/latest/download/pspdev-ubuntu-24.04-arm-arm64.tar.gz`. 2. Extract the archive using: ```shell tar -xvf pspdev-ubuntu-*.tar.gz