public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/asahi-installer] epel10: Do not require expert for M3
@ 2026-09-17 5:03 Davide Cavalca
0 siblings, 0 replies; only message in thread
From: Davide Cavalca @ 2026-09-17 5:03 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/asahi-installer
Branch : epel10
Commit : 53bfb1be32e2322ae7f263640a19e2d355ff9d76
Author : Davide Cavalca <dcavalca@fedoraproject.org>
Date : 2026-09-14T20:38:41-07:00
Stats : +55/-0 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/asahi-installer/c/53bfb1be32e2322ae7f263640a19e2d355ff9d76?branch=epel10
Log:
Do not require expert for M3
---
diff --git a/444.patch b/444.patch
new file mode 100644
index 0000000..ff45b5c
--- /dev/null
+++ b/444.patch
@@ -0,0 +1,52 @@
+From 71281db4639a36f7df13c199c1bdb5dcb29e7c61 Mon Sep 17 00:00:00 2001
+From: Davide Cavalca <davide@asahilinux.org>
+Date: Mon, 14 Sep 2026 20:33:54 -0700
+Subject: [PATCH] Do not require expert for M3
+
+Signed-off-by: Davide Cavalca <davide@asahilinux.org>
+---
+ src/main.py | 24 ++++++++++++------------
+ 1 file changed, 12 insertions(+), 12 deletions(-)
+
+diff --git a/src/main.py b/src/main.py
+index e6407ba..88dd2ab 100644
+--- a/src/main.py
++++ b/src/main.py
+@@ -75,17 +75,17 @@ class Device:
+ "j475cap": Device("13.4", False), # Mac Studio (M2 Max, 2023)
+ "j475dap": Device("13.4", False), # Mac Studio (M2 Ultra, 2023)
+ "j180dap": Device("13.4", False), # Mac Pro (M2 Ultra, 2023)
+- "j433ap": Device("14.8.3", True), # iMac (24-inch, M3, 2023)
+- "j434ap": Device("14.8.3", True), # iMac (24-inch, M3, 2023)
+- "j504ap": Device("14.8.3", True), # MacBook Pro (14-inch, M3, 2023)
+- "j613ap": Device("14.8.3", True), # MacBook Air (13-inch, M3, 2024)
+- "j615ap": Device("14.8.3", True), # MacBook Air (15-inch, M3, 2024)
+- "j514sap": Device("14.8.3", True), # MacBook Pro (14-inch, M3 Pro, 2023)
+- "j514cap": Device("14.8.3", True), # MacBook Pro (14-inch, M3 Max, 2023)
+- "j514map": Device("14.8.3", True), # MacBook Pro (14-inch, M3 Max, 2023)
+- "j516sap": Device("14.8.3", True), # MacBook Pro (16-inch, M3 Pro, 2023)
+- "j516cap": Device("14.8.3", True), # MacBook Pro (16-inch, M3 Max, 2023)
+- "j516map": Device("14.8.3", True), # MacBook Pro (16-inch, M3 Max, 2023)
++ "j433ap": Device("14.8.3", False), # iMac (24-inch, M3, 2023)
++ "j434ap": Device("14.8.3", False), # iMac (24-inch, M3, 2023)
++ "j504ap": Device("14.8.3", False), # MacBook Pro (14-inch, M3, 2023)
++ "j613ap": Device("14.8.3", False), # MacBook Air (13-inch, M3, 2024)
++ "j615ap": Device("14.8.3", False), # MacBook Air (15-inch, M3, 2024)
++ "j514sap": Device("14.8.3", False), # MacBook Pro (14-inch, M3 Pro, 2023)
++ "j514cap": Device("14.8.3", False), # MacBook Pro (14-inch, M3 Max, 2023)
++ "j514map": Device("14.8.3", False), # MacBook Pro (14-inch, M3 Max, 2023)
++ "j516sap": Device("14.8.3", False), # MacBook Pro (16-inch, M3 Pro, 2023)
++ "j516cap": Device("14.8.3", False), # MacBook Pro (16-inch, M3 Max, 2023)
++ "j516map": Device("14.8.3", False), # MacBook Pro (16-inch, M3 Max, 2023)
+ }
+
+ # Asahi Linux does not support running in a virtual machine, this option
+@@ -120,7 +120,7 @@ class Device:
+ "14.6",
+ "iBoot-10151.140.19",
+ "23.10.220.0.0,0",
+- True,
++ False,
+ ["j433ap", "j434ap", "j504ap", "j613ap", "j615ap", "j514sap", "j514cap", "j514map", "j516sap", "j516cap", "j516map"],
+ "https://updates.cdn-apple.com/2025FallFCS/patches/089-71124/49AD260A-D47F-4B5E-A793-30446187196E/com_apple_MobileAsset_MacSoftwareUpdate/f6d1ac9149f6a06401ff87fae5b262c420bfc5f7.zip"),
+ ]
diff --git a/asahi-installer.spec b/asahi-installer.spec
index a37dc25..a0d62b3 100644
--- a/asahi-installer.spec
+++ b/asahi-installer.spec
@@ -46,6 +46,9 @@ Source3: https://www.python.org/ftp/python/%{installer_python_version}/%{
# Python release binaries for macOS
Source4: https://keybase.io/nad/pgp_keys.asc?fingerprint=0d96df4d4110e5c43fbfb17f2d347ea6aa65421d#/key.asc
+# Do not require expert for M3
+Patch: %{url}/pull/444.patch
+
BuildRequires: gnupg2
BuildRequires: python3-devel
BuildRequires: python3dist(asn1)
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-09-17 5:03 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-17 5:03 [rpms/asahi-installer] epel10: Do not require expert for M3 Davide Cavalca
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox