add mass-storage-gadget64 as argument to rpiboot

This commit is contained in:
2026-05-06 10:28:43 +02:00
parent b981149654
commit 207e2258fb
+1 -1
View File
@@ -163,7 +163,7 @@ class Darwin(HostSystem):
prt('unmount bootfs')
os.system('diskutil unmount bootfs')
lines = []
with Popen(['rpiboot'], stdout=PIPE) as p:
with Popen(['rpiboot', '-d', 'mass-storage-gadget64'], stdout=PIPE) as p:
tmo = 1
t = 0
while select([p.stdout], [], [], tmo)[0]: