Contribute
Register

OCS: no schema for comment a 2 index, context <kernel>!

Status
Not open for further replies.
Joined
Nov 19, 2019
Messages
7
Motherboard
p8h67-m pro
CPU
intel i7 2600
Graphics
intel graphics
system boots fine however I get this error briefly flashing before the opencore options at boot, (had to record with camera to get it). I googled a bit and and pics using occompare is what i came up with but dont know what to do any further. I notice there's indeed a -comment- line missing on number 7, but dont know what to add
 

Attachments

  • Screenshot 2022-03-10 at 11.14.02.png
    Screenshot 2022-03-10 at 11.14.02.png
    67.5 KB · Views: 937
  • Screenshot 2022-03-10 at 11.23.00.png
    Screenshot 2022-03-10 at 11.23.00.png
    330 KB · Views: 951
system boots fine however I get this error briefly flashing before the opencore options at boot, (had to record with camera to get it). I googled a bit and and pics using occompare is what i came up with but dont know what to do any further. I notice there's indeed a -comment- line missing on number 7, but dont know what to add
compare your config.plist with the sample.plist when you download opencore

you just need to add a comment, a string value, you don't even need to add anything in there
 
you just need to add a comment, a string value, you don't even need to add anything in there
so just comment / string / blank under 7? also can I just leave as is if it's unnecessary?

compare your config.plist with the sample.plist when you download opencore

? I started this from scratch (4th time actually) and I used the sample provided with the release, didnt find anything related to it in the dortiana guide
 
so just comment / string / blank under 7? also can I just leave as is if it's unnecessary?



? I started this from scratch (4th time actually) and I used the sample provided with the release, didnt find anything related to it in the dortiana guide
yes, so it looks something like this for example:
Code:
<dict>
                <key>Arch</key>
                <string>Any</string>
                <key>BundlePath</key>
                <string>Lilu.kext</string>
                <key>Comment</key>
                <string></string>
                <key>Enabled</key>
                <true/>
                <key>ExecutablePath</key>
                <string>Contents/MacOS/Lilu</string>
                <key>MaxKernel</key>
                <string></string>
                <key>MinKernel</key>
                <string></string>
                <key>PlistPath</key>
                <string>Contents/Info.plist</string>
            </dict>
 
yes, so it looks something like this for example:
Code:
<dict>
                <key>Arch</key>
                <string>Any</string>
                <key>BundlePath</key>
                <string>Lilu.kext</string>
                <key>Comment</key>
                <string></string>
                <key>Enabled</key>
                <true/>
                <key>ExecutablePath</key>
                <string>Contents/MacOS/Lilu</string>
                <key>MaxKernel</key>
                <string></string>
                <key>MinKernel</key>
                <string></string>
                <key>PlistPath</key>
                <string>Contents/Info.plist</string>
            </dict>
like this? new child under 7?
 

Attachments

  • Screenshot 2022-03-10 at 11.52.29.png
    Screenshot 2022-03-10 at 11.52.29.png
    341.2 KB · Views: 434
yes

also make sure to always run ocvalidate on your config.plist
ocvalidate returns the same error

no schema for comment a 2 index, context <kernel>!​

 
then recheck your config.plist
dunno what im missing, occompare returns nothing missing from user config, but for sample sample.plist -->kernel -missing key: comment
my plist minus serials removed
 

Attachments

  • config.plist
    30.6 KB · Views: 108
dunno what im missing, occompare returns nothing missing from user config, but for sample sample.plist -->kernel -missing key: comment
my plist minus serials removed
this:
Code:
<key>Block</key>
        <array>
            <dict>
                <key>Arch</key>
                <string>Any</string>
                <key>Comment</key>
                <string></string>
                <key>Enabled</key>
                <false/>
                <key>Identifier</key>
                <string>com.apple.driver.AppleTyMCEDriver</string>
                <key>MaxKernel</key>
                <string></string>
                <key>MinKernel</key>
                <string></string>
            </dict>
        </array>
        <key>Comment</key>
        <string>USBPorts.kext</string>
        <key>Emulate</key>
        <dict>
            <key>Cpuid1Data</key>
            <data></data>
            <key>Cpuid1Mask</key>
            <data></data>
            <key>DummyPowerManagement</key>
            <false/>
            <key>MaxKernel</key>
            <string></string>
            <key>MinKernel</key>
            <string></string>
        </dict>

this section should not be in there:
Code:
<key>Comment</key>
        <string>USBPorts.kext</string>
 
Status
Not open for further replies.
Back
Top