adespoton / utmconfigs

Config files for booting Mac OS 9 and OS X on UTM emulator
The Unlicense
348 stars 21 forks source link

Update config.plist for 10.2 Configuration #31

Closed garamb1 closed 5 months ago

garamb1 commented 5 months ago

Hi! I was trying out the configuration for 10.2 and I noticed, when imported, that the snapshot argument is present inside the configuration and needs to be removed in order to retain the changes to the VM (especially the HD image) after a reboot.

For reference, config.plist should be updated from:

[...]
        <key>AddArgs</key>
        <array>
            <string>-g 1280x720x32</string>
            <string>-usbdevice tablet</string>
            <string>-snapshot</string>
        </array>
[...]

To:

[...]
        <key>AddArgs</key>
        <array>
            <string>-g 1280x720x32</string>
            <string>-usbdevice tablet</string>
        </array>
[...]

Happy to put a PR if needed. Thank you!

adespoton commented 5 months ago

Whoops! I hadn’t realized that snuck in to the published version.  Please PR, and I’ll accept.-Em On May 3, 2024, at 11:08 AM, Vincenzo @.***> wrote: Hi! I was trying out the configuration for 10.2 and I noticed, when imported, that the snapshot argument is present inside the configuration and needs to be removed in order to retain the changes to the VM (especially the HD image) after a reboot. For reference, config.plist should be updated from: [...]

AddArgs
    <array>
        <string>-g 1280x720x32</string>
        <string>-usbdevice tablet</string>
        <string>-snapshot</string>
    </array>

[...]

To: [...]

AddArgs
    <array>
        <string>-g 1280x720x32</string>
        <string>-usbdevice tablet</string>
    </array>

[...]

Happy to put a PR if needed. Thank you!

—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you are subscribed to this thread.Message ID: @.***>