]> glassweightruler.freedombox.rocks Git - waydroid.git/blobdiff - tools/helpers/arch.py
hardware_manager: Validate upgrade zips against the saved ota channel
[waydroid.git] / tools / helpers / arch.py
index af18e668515bbfe92c482a3fbac330a79495b23e..735d344e17c773223b81c2b3702730f6969037af 100644 (file)
@@ -24,5 +24,7 @@ def maybe_remap(target):
             if "sse4_2" not in f.read():
                 logging.info("x86_64 CPU does not support SSE4.2, falling back to x86...")
                 return "x86"
+    elif target == "arm64" and platform.architecture()[0] == "32bit":
+        return "arm"
 
     return target