From 6a6373a60870fcd4da79283d2adb5f55317cb750 Mon Sep 17 00:00:00 2001 From: X Sanchez Date: Tue, 10 Mar 2026 23:01:46 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20platform=20fusing=20one=20?= =?UTF-8?q?error=20(#180)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/vm_manifest.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/vm_manifest.py b/scripts/vm_manifest.py index e499c58..a15aa5a 100755 --- a/scripts/vm_manifest.py +++ b/scripts/vm_manifest.py @@ -36,7 +36,7 @@ def create_manifest( manifest = { "platformType": "vresearch101", - "platformFusing": platform_fusing, # None = auto-detect from host OS + # "platformFusing": platform_fusing, # None = auto-detect from host OS "machineIdentifier": b"", # Generated on first boot, then persisted to manifest "cpuCount": cpu_count, "memorySize": memory_bytes, @@ -58,6 +58,9 @@ def create_manifest( }, "sepStorage": "SEPStorage", } + + if platform_fusing is not None: + manifest["platformFusing"] = platform_fusing # Write to config.plist config_path = vm_dir / "config.plist"