@@ -25,6 +25,8 @@ However, you should **NOT** use macOS Sequoia as your main virtual setup - and s
Preliminary built-in support for this version will be added to the project shortly.
+
***
diff --git a/docs/changelogs/v0-12-1.md b/docs/changelogs/v0-12-1.md
index 272e4f6..f9a1265 100644
--- a/docs/changelogs/v0-12-1.md
+++ b/docs/changelogs/v0-12-1.md
@@ -4,7 +4,8 @@
This update includes the following features / fixes / changes:
-- Preliminary macOS Sequoia developer beta support
+- Preliminary macOS Sequoia beta support
+- Added macOS Sequoia support to Discord rich presence
- Fixed an issue where the OpenCore restore tool would fail
- *everyone should have a BIOS splash screen that sexy*
diff --git a/scripts/autopilot.py b/scripts/autopilot.py
index 3836694..7e190e7 100755
--- a/scripts/autopilot.py
+++ b/scripts/autopilot.py
@@ -2219,11 +2219,12 @@ def stage3():
elif USR_TARGET_OS == 14:
USR_TARGET_OS_NAME = "Sonoma"
elif USR_TARGET_OS == 15:
- USR_TARGET_OS_NAME = "Sequoia"
+ USR_TARGET_OS_NAME = "Sequoia Beta"
global osIcon
osIcon = "ap-"+USR_TARGET_OS_NAME.lower().replace(" ","")
+ osIcon = "ap-"+USR_TARGET_OS_NAME.lower().replace(" beta","")
if int(USR_TARGET_OS) < 1013 and int(USR_TARGET_OS) >= 100:
osIcon = "ap-legacy"
@@ -2396,7 +2397,7 @@ def stage2():
print(color.END+" 7. High Sierra (10.13)\n")
print(color.END+" 8. Legacy versions...\n")
- print(color.END+" 9. Sequoia (15 dev beta)\n")
+ print(color.END+" 9. Sequoia Beta (15)\n")
customInput = str(input(color.BOLD+"Select> "+color.END))
if customInput == "1":
diff --git a/scripts/drpc.py b/scripts/drpc.py
index 14e7b9f..132b0fa 100755
--- a/scripts/drpc.py
+++ b/scripts/drpc.py
@@ -70,7 +70,9 @@
projectVer = "Powered by ULTMOS v"+version
-if osVer is not None and osVer == "Sierra" or osVer == "High Sierra" or osVer == "Mojave" or osVer == "Catalina" or osVer == "Big Sur" or osVer == "Monterey" or osVer == "Ventura" or osVer == "Sonoma":
+if "Beta" in osVer: osVer = osVer.replace(" Beta","")
+
+if osVer is not None and osVer == "Sierra" or osVer == "High Sierra" or osVer == "Mojave" or osVer == "Catalina" or osVer == "Big Sur" or osVer == "Monterey" or osVer == "Ventura" or osVer == "Sonoma" or osVer == "Sequoia":
osName = "macOS "+osVer
elif osVer is not None:
osName = "Mac OS X "+osVer
From 43281e5ac598b38628e6fd00349975ddc4e849d4 Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Sun, 16 Jun 2024 22:47:19 +0100
Subject: [PATCH 04/34] Update sysprofiler with lower blob count
---
scripts/sysprofiler.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/sysprofiler.py b/scripts/sysprofiler.py
index 2d23a93..3174c0b 100644
--- a/scripts/sysprofiler.py
+++ b/scripts/sysprofiler.py
@@ -705,7 +705,7 @@ def cpydProfile(logMsg,warn=None):
time.sleep(0.1)
progressUpdate(65)
if len(userBlobList) > 0:
- if len(userBlobList) < 17:
+ if len(userBlobList) < 16:
cpydProfile(("UserBlobs : YES ("+str(len(userBlobList))+" total)"),True)
warnings.append("Only "+str(len(userBlobList))+" user blobs are present while more are expected,")
warnings.append("might be from an old repo version or integrity damage\n")
From 817ea2387a61770bef409fe8bf76b640ee01368f Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Sun, 16 Jun 2024 23:38:32 +0100
Subject: [PATCH 05/34] Update SupportedOSes.md
Signed-off-by: Coopydood <39441479+Coopydood@users.noreply.github.com>
---
docs/SupportedOSes.md | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/docs/SupportedOSes.md b/docs/SupportedOSes.md
index bba10b6..fd70ccf 100644
--- a/docs/SupportedOSes.md
+++ b/docs/SupportedOSes.md
@@ -4,7 +4,7 @@
-
macOS Sonoma 14.4
+
macOS Sonoma 14.5
This project currently supports the latest version of macOS Sonoma, as well as every prior version down to macOS High Sierra.
@@ -25,6 +25,11 @@ The option to use legacy versions is available, but no support will be provided
macOS High Sierra
+#### Pre-Release
+
+
+
macOS Sequoia Beta
+
#### Legacy
From e835c81b57fba8d573821e9cf1b4dd2fd480052b Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Sun, 16 Jun 2024 23:45:07 +0100
Subject: [PATCH 06/34] Update v0-12-1.md
---
docs/changelogs/v0-12-1.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/changelogs/v0-12-1.md b/docs/changelogs/v0-12-1.md
index f9a1265..797b42f 100644
--- a/docs/changelogs/v0-12-1.md
+++ b/docs/changelogs/v0-12-1.md
@@ -7,7 +7,7 @@ This update includes the following features / fixes / changes:
- Preliminary macOS Sequoia beta support
- Added macOS Sequoia support to Discord rich presence
- Fixed an issue where the OpenCore restore tool would fail
-- *everyone should have a BIOS splash screen that sexy*
+- *macOS Sequhuehuehuehueio*
To see individual code changes, visit the project's commits page at
From 6d358872285974f3deb21af08726872a378e8492 Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Sun, 16 Jun 2024 23:51:03 +0100
Subject: [PATCH 07/34] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index ec06c2c..dffed7b 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ Helping you build the ultimate macOS virtual machine, powered by KVM.
-[![ULTMOS VERSION](https://img.shields.io/github/v/release/Coopydood/ultimate-macOS-KVM?style=for-the-badge&color=1793D1&logo=github&logoColor=white&label=)](https://github.com/Coopydood/ultimate-macOS-KVM/releases/latest) [![GitHub](https://img.shields.io/github/license/Coopydood/ultimate-macOS-KVM?label=Licence&logo=unlicense&logoColor=white&style=for-the-badge)](https://github.com/Coopydood/ultimate-macOS-KVM/blob/main/LICENSE) [![GitHub repo size](https://img.shields.io/github/repo-size/Coopydood/ultimate-macOS-KVM?color=07b55b&label=Size&logo=envoy-proxy&logoColor=white&style=for-the-badge)](https://github.com/Coopydood/ultimate-macOS-KVM) [![Discord](https://img.shields.io/discord/574943603466436628?color=7d86ff&label=Discord&logo=discord&logoColor=white&style=for-the-badge)](https://sl.coopydood.com/discord)
+[![ULTMOS VERSION](https://img.shields.io/github/v/release/Coopydood/ultimate-macOS-KVM?style=for-the-badge&color=1793D1&logo=github&logoColor=white&label=)](https://github.com/Coopydood/ultimate-macOS-KVM/releases/latest) [![GitHub](https://img.shields.io/github/license/Coopydood/ultimate-macOS-KVM?label=Licence&logo=unlicense&logoColor=white&style=for-the-badge)](https://github.com/Coopydood/ultimate-macOS-KVM/blob/main/LICENSE) [![GitHub repo size](https://img.shields.io/github/repo-size/Coopydood/ultimate-macOS-KVM?color=07b55b&label=Size&logo=envoy-proxy&logoColor=white&style=for-the-badge)](https://github.com/Coopydood/ultimate-macOS-KVM) [![Discord](https://img.shields.io/discord/574943603466436628?color=7d86ff&label=Discord&logo=discord&logoColor=white&style=for-the-badge)](https://discord.gg/WzWkSsT)
***
From f6c05534ee6a20d1516bcd4bee6f8f1b5b927366 Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Mon, 17 Jun 2024 15:47:57 +0100
Subject: [PATCH 08/34] Update README.md
---
README.md | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index dffed7b..25f642b 100644
--- a/README.md
+++ b/README.md
@@ -47,7 +47,10 @@ Scripts? Configs? QEMU arguments? A *"qcow"* file? *Moo?* If you need a little h
## πγFeatures
-
-Experience the latest macOS has to offer with built-in support for macOS Sonoma, and even try out the latest macOS Sequoia beta!
+Experience the latest macOS has to offer with built-in support from macOS High Sierra to macOS Sonoma, and even try out the latest macOS Sequoia beta!
Automatically generates a valid, customised, and ready-to-use QEMU config script in seconds.
From 6a4f522bdd6a25e6f7bb8bfd33468d56c05ca468 Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Mon, 17 Jun 2024 16:00:27 +0100
Subject: [PATCH 10/34] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index de225a3..16f327a 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ Helping you build the ultimate macOS virtual machine, powered by KVM.
macOS Sequoia has not yet been tested extensively, but it has been **confirmed to install and boot with the current version of ULTMOS** on the latest macOS developer beta.
-Please feel free to try out the macOS Sequoia developer beta with ULTMOS and leave feedback on how it went!
+Please feel free to try out the macOS Sequoia beta with ULTMOS and leave feedback on how it went!
However, you should **NOT** use macOS Sequoia as your main virtual setup - and should be used for test purposes only. You have been warned!
From 4ddb6c8824a790cb6b2b7205f080cfb80cb191de Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Mon, 17 Jun 2024 22:23:14 +0100
Subject: [PATCH 11/34] Experimental table thing
---
README.md | 37 ++++++++++++++++++++++++++++++++++---
docs/SupportedOSes.md | 35 ++++++++++++++++++++++++++++++++++-
docs/changelogs/v0-12-1.md | 2 +-
3 files changed, 69 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 16f327a..9583da4 100644
--- a/README.md
+++ b/README.md
@@ -47,9 +47,9 @@ Scripts? Configs? QEMU arguments? A *"qcow"* file? *Moo?* If you need a little h
## πγFeatures
-
-Experience the latest macOS has to offer with built-in support from macOS High Sierra to macOS Sonoma, and even try out the latest macOS Sequoia beta!
+
+Experience the latest macOS has to offer with built-in support from macOS High Sierra to macOS Sonoma, and even try out the latest macOS Sequoia beta!
Automatically generates a valid, customised, and ready-to-use QEMU config script in seconds.
@@ -112,6 +112,37 @@ Here's a table with my best judgment on minimum, recommended, and best system re
> [!NOTE]
> The recommended and optimal specifications are for reference only.
+
+
macOS Guest Feature Support Matrix
+
+| | | | | | | | | |
+|-------------------------- |-------- |-------- |-------- |-------- |-------- |-------- |--------- |--------- |
+| **AutoPilot** | β | β | β | β | β | β | β | β |
+| **Auto Download** | β | β | β | β | β | β | β | β |
+| **Online Install** | β | β | β | β | β | β | β | β |
+| **Offline Install** | β | β | β | β | β | β | β | β |
+| **QEMU Script** | β | β | β | β | β | βΒΉ | βΒΉ | βΒΉ |
+| **Virt Manager** | β | β | β | β | β | ?Β² | ?Β² | ?Β² |
+| **GPU Passthrough** | β | β | β | β | β | βΒΉ | βΒΉ | βΒΉ |
+| **VirtIO Networking** | β | β | ?Β³ | β | β | β | β | β |
+| **VirtIO Storage** | β | β | β | β | β | β | β | β |
+
+
+ΒΉ If trying to boot macOS Ventura and later with GPU passthrough, you may need to do so using Virtual Machine Manager. The QEMU script may have issues with GPU passthrough.
+
+Β² macOS Ventura and later have been known to have issues booting *without* GPU passthrough in Virtual Machine Manager.
+
+Β³ I have no idea whether or not VirtIO networking works on macOS Catalina.
+
+
+
+> [!NOTE]
+> This table is a very **loose** representation of the current state of macOS versions and their support with ULTMOS / QEMU / KVM. It's more for reference and shouldn't be taken seriously.
+>
+> If you find something is wrongly marked, please feel free to update it.
+
+
+
***
## π¦γDependencies
diff --git a/docs/SupportedOSes.md b/docs/SupportedOSes.md
index fd70ccf..4fe975c 100644
--- a/docs/SupportedOSes.md
+++ b/docs/SupportedOSes.md
@@ -2,7 +2,7 @@
-
+
macOS Sonoma 14.5
@@ -49,3 +49,36 @@ The option to use legacy versions is available, but no support will be provided
+
+
+
+
+
+## Feature Table
+
+
+This table is a very **loose** representation of the current state of macOS versions and their support with ULTMOS / QEMU / KVM. It's more for reference and shouldn't be taken seriously.
+
+If you find something is wrongly marked, please feel free to update it.
+
+
+
+| | | | | | | | | |
+|-------------------------- |-------- |-------- |-------- |-------- |-------- |-------- |--------- |--------- |
+| **AutoPilot** | β | β | β | β | β | β | β | β |
+| **Auto Download** | β | β | β | β | β | β | β | β |
+| **Online Install** | β | β | β | β | β | β | β | β |
+| **Offline Install** | β | β | β | β | β | β | β | β |
+| **QEMU Script** | β | β | β | β | β | βΒΉ | βΒΉ | βΒΉ |
+| **Virt Manager** | β | β | β | β | β | ?Β² | ?Β² | ?Β² |
+| **GPU Passthrough** | β | β | β | β | β | βΒΉ | βΒΉ | βΒΉ |
+| **VirtIO Networking** | β | β | ?Β³ | β | β | β | β | β |
+| **VirtIO Storage** | β | β | β | β | β | β | β | β |
+
+
+ΒΉ If trying to boot macOS Ventura and later with GPU passthrough, you may need to do so using Virtual Machine Manager. The QEMU script may have issues with GPU passthrough.
+
+Β² macOS Ventura and later have been known to have issues booting *without* GPU passthrough in Virtual Machine Manager.
+
+Β³ I have no idea whether or not VirtIO networking works on macOS Catalina.
+
diff --git a/docs/changelogs/v0-12-1.md b/docs/changelogs/v0-12-1.md
index 797b42f..698bd81 100644
--- a/docs/changelogs/v0-12-1.md
+++ b/docs/changelogs/v0-12-1.md
@@ -5,7 +5,7 @@
This update includes the following features / fixes / changes:
- Preliminary macOS Sequoia beta support
-- Added macOS Sequoia support to Discord rich presence
+- Added macOS Sequoia beta support to Discord rich presence
- Fixed an issue where the OpenCore restore tool would fail
- *macOS Sequhuehuehuehueio*
From 6dd6fa92a5ecd1c6aac9cc8a8b5f32e36b75b7f1 Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Mon, 17 Jun 2024 23:57:38 +0100
Subject: [PATCH 12/34] eversiege can do me senseless
Co-authored-by: eversiege
---
README.md | 14 +++++++++-----
docs/SupportedOSes.md | 2 +-
docs/changelogs/v0-12-1.md | 4 ++++
3 files changed, 14 insertions(+), 6 deletions(-)
diff --git a/README.md b/README.md
index 9583da4..1adfefa 100644
--- a/README.md
+++ b/README.md
@@ -13,19 +13,23 @@ Helping you build the ultimate macOS virtual machine, powered by KVM.
***
-
+
-
macOS Sequoia Support Coming Soon
+
macOS Sequoia Support Available Now
macOS Sequoia has not yet been tested extensively, but it has been **confirmed to install and boot with the current version of ULTMOS** on the latest macOS developer beta.
+
+
+**AutoPilot now has an additional option for macOS Sequoia beta!**
Please feel free to try out the macOS Sequoia beta with ULTMOS and leave feedback on how it went!
However, you should **NOT** use macOS Sequoia as your main virtual setup - and should be used for test purposes only. You have been warned!
-Preliminary built-in support for this version will be added to the project shortly.
+You can download the latest recovery image below for use with AutoPilot.
-
***
@@ -116,7 +120,7 @@ Here's a table with my best judgment on minimum, recommended, and best system re
macOS Guest Feature Support Matrix
| | | | | | | | | |
-|-------------------------- |-------- |-------- |-------- |-------- |-------- |-------- |--------- |--------- |
+|--------------------------:|:--------:|:--------:|:--------:|:--------:|:--------:|:--------:|:---------:|:---------:|
| **AutoPilot** | β | β | β | β | β | β | β | β |
| **Auto Download** | β | β | β | β | β | β | β | β |
| **Online Install** | β | β | β | β | β | β | β | β |
diff --git a/docs/SupportedOSes.md b/docs/SupportedOSes.md
index 4fe975c..f063ec6 100644
--- a/docs/SupportedOSes.md
+++ b/docs/SupportedOSes.md
@@ -64,7 +64,7 @@ If you find something is wrongly marked, please feel free to update it.
| | | | | | | | | |
-|-------------------------- |-------- |-------- |-------- |-------- |-------- |-------- |--------- |--------- |
+|--------------------------:|:--------:|:--------:|:--------:|:--------:|:--------:|:--------:|:---------:|:---------:|
| **AutoPilot** | β | β | β | β | β | β | β | β |
| **Auto Download** | β | β | β | β | β | β | β | β |
| **Online Install** | β | β | β | β | β | β | β | β |
diff --git a/docs/changelogs/v0-12-1.md b/docs/changelogs/v0-12-1.md
index 698bd81..60f9145 100644
--- a/docs/changelogs/v0-12-1.md
+++ b/docs/changelogs/v0-12-1.md
@@ -6,10 +6,14 @@ This update includes the following features / fixes / changes:
- Preliminary macOS Sequoia beta support
- Added macOS Sequoia beta support to Discord rich presence
+- Added temporary download link for macOS Sequoia beta BaseSystem to readme header notification (@eversiege)
- Fixed an issue where the OpenCore restore tool would fail
- *macOS Sequhuehuehuehueio*
To see individual code changes, visit the project's commits page at
+> [!NOTE]
+> This release has multiple authors. Attributions for contributor changes are included in relevant lines above.
+
> [!NOTE]
> Remember, commits by Coopydood will always be signed as **4CD28348A3DD016F** or GitHub's public key.
From 543f97213beaad9e98133842c2df8839526a28c8 Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Tue, 18 Jun 2024 00:02:37 +0100
Subject: [PATCH 13/34] hacked around the problem lol
Signed-off-by: Coopydood <39441479+Coopydood@users.noreply.github.com>
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 1adfefa..5716d10 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ However, you should **NOT** use macOS Sequoia as your main virtual setup - and s
You can download the latest recovery image below for use with AutoPilot.
-
BaseSystem.dmg (1.3 GB)
+ BaseSystem.dmg (1.3 GB)
***
From b0f03d3ea9b5b199d5ad0a1b618df99c95f0b12f Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Tue, 18 Jun 2024 00:04:07 +0100
Subject: [PATCH 14/34] you wouldnt download a download button
Signed-off-by: Coopydood <39441479+Coopydood@users.noreply.github.com>
---
README.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 5716d10..b641759 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,8 @@ However, you should **NOT** use macOS Sequoia as your main virtual setup - and s
You can download the latest recovery image below for use with AutoPilot.
- BaseSystem.dmg (1.3 GB)
+
+
BaseSystem.dmg (1.3 GB)
***
From 0cb0151b1433089edc2abdbf459f5aba6ea883ca Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Tue, 18 Jun 2024 00:05:34 +0100
Subject: [PATCH 15/34] oh f*ck me that looks better
Signed-off-by: Coopydood <39441479+Coopydood@users.noreply.github.com>
---
README.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/README.md b/README.md
index b641759..4aed0dc 100644
--- a/README.md
+++ b/README.md
@@ -21,8 +21,7 @@ macOS Sequoia has not yet been tested extensively, but it has been **confirmed t
-**AutoPilot now has an additional option for macOS Sequoia beta!**
-Please feel free to try out the macOS Sequoia beta with ULTMOS and leave feedback on how it went!
+**AutoPilot now has an additional option for macOS Sequoia beta!** Please feel free to try out the macOS Sequoia beta with ULTMOS and leave feedback on how it went!
However, you should **NOT** use macOS Sequoia as your main virtual setup - and should be used for test purposes only. You have been warned!
From 676e505d036b8b02b291dd4c5b9f7b5a7b619286 Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Tue, 18 Jun 2024 00:11:50 +0100
Subject: [PATCH 16/34] lets be honest this aint releasing on the 18th
---
docs/changelogs/v0-12-1.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/changelogs/v0-12-1.md b/docs/changelogs/v0-12-1.md
index 60f9145..abacc47 100644
--- a/docs/changelogs/v0-12-1.md
+++ b/docs/changelogs/v0-12-1.md
@@ -1,6 +1,6 @@
## v0.12.1
-### Minor update β’ 16/06/2024
+### Minor update β’ 18/06/2024
This update includes the following features / fixes / changes:
From 4cc9d37f26560aff7515ec5babb5c29c129dfe39 Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Tue, 18 Jun 2024 20:06:33 +0100
Subject: [PATCH 17/34] Add torrent download option
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 4aed0dc..a7292f4 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ You can download the latest recovery image below for use with AutoPilot.
-
BaseSystem.dmg (1.3 GB)
+
BaseSystem.dmg (1.3 GB) Or, you can also download the torrent.
From c8540e43e104b5734246f21f46c3ef702fd1a52f Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Tue, 18 Jun 2024 22:06:56 +0100
Subject: [PATCH 19/34] add archive.org message
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 5076111..5da3513 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ macOS Sequoia has not yet been tested extensively, but it has been **confirmed t
However, you should **NOT** use macOS Sequoia as your main virtual setup - and should be used for test purposes only. You have been warned!
-You can download the latest recovery image below for use with AutoPilot.
+You can download the latest recovery image below for use with AutoPilot. The file is hosted on the [Archive.org website](https://archive.org/details/macos-sequoia).
From fa3188c961790769f48e963183e9f6ee07dc4793 Mon Sep 17 00:00:00 2001
From: Coopydood <39441479+Coopydood@users.noreply.github.com>
Date: Tue, 18 Jun 2024 22:11:50 +0100
Subject: [PATCH 20/34] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 5da3513..b8a1591 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ Helping you build the ultimate macOS virtual machine, powered by KVM.
***
-
+