Fix unattend.xml path to match actual image structure

Changed from Deploy/Control/unattend.xml to Deploy/FlatUnattendW10.xml
to match the real GE Aerospace image layout.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
cproudlock
2026-02-06 16:02:01 -05:00
parent cee4ecd18d
commit f614596cdc

View File

@@ -69,7 +69,7 @@ def deploy_path(image_type):
def unattend_path(image_type): def unattend_path(image_type):
"""Return the unattend.xml path for an image type.""" """Return the unattend.xml path for an image type."""
return os.path.join(deploy_path(image_type), "Control", "unattend.xml") return os.path.join(deploy_path(image_type), "FlatUnattendW10.xml")
def image_status(image_type): def image_status(image_type):