Contribute
Register

Clover Configurator could not be synchronized because an error occurred: Found non-key inside <dict>

Status
Not open for further replies.
Joined
Jun 29, 2012
Messages
10
Motherboard
GA-Z77X-UD5H
CPU
i7
Graphics
GT 640 (2x)
Any Idea how to fix this? please see attached image
 

Attachments

  • clover.jpg
    clover.jpg
    76.8 KB · Views: 719
There is no "GraphicsEnabler=No" boot argument in any case, but the error is you have a <string> without a corresponding <key> tag on line 98. To specify more than one boot argument add each one to the command line string. e.g.
Code:
<key>Arguments</key>
<string>dart=0 GraphicsEnabler=yes</string>
Understanding XML property lists

All bootloader related settings such as graphics injection being enabled or not go in the config.plist itself. See the Clover wiki.
 
There is no "GraphicsEnabler=No" boot argument in any case, but the error is you have a <string> without a corresponding <key> tag on line 98. To specify more than one boot argument add each one to the command line string. e.g.
Code:
<key>Arguments</key>
<string>dart=0 GraphicsEnabler=yes</string>
Understanding XML property lists

All bootloader related settings such as graphics injection being enabled or not go in the config.plist itself. See the Clover wiki.

Got it, thank you!!!
 
I also got the same error but mine is a different line. its on line 30. but im not sure what thus it mean. Please help
 

Attachments

  • Screen Shot 2018-01-16 at 22.08.57.png
    Screen Shot 2018-01-16 at 22.08.57.png
    233.7 KB · Views: 393
Last edited:
I also got the same error but mine is a different line. its on line 30. but im not sure what thus it mean. Please help
You've got a <key> without a corresponding <string> on line 28.
If you don't use any Boot Arguments remove:
Code:
<key>Arguments</key>
 
Status
Not open for further replies.
Back
Top