From 207e2258fbd8eda459acba5cac41b97a7c9955c5 Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Wed, 6 May 2026 10:28:43 +0200 Subject: [PATCH] add mass-storage-gadget64 as argument to rpiboot --- rpi/write_to | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi/write_to b/rpi/write_to index eff0a54..59fe3e6 100755 --- a/rpi/write_to +++ b/rpi/write_to @@ -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]: