Jump to content

Yosemite Clover (Cannot) configure automatic start after delay ...


gusz
 Share

5 posts in this topic

Recommended Posts

I have Clover with 10.10.3, and everything works *except* I can't figure out how to configure the system to boot automatically after a 5 sec delay. It boots OK but I have to hit a key at the Clover screen to boot. The boot section on my working config.plist on the OSX/EFI partition is below. I thought this was done by editing this Boot section, changing Timeout to 5, but that doesn't work. I'm using vim editor, I've tried removing the hash before Timeout, using <string>5</string> and <integer>5</integer>, and everything else I can think of.


 


Appreciate method to fix. (I'd attach my entire config.plist, but I get "You aren't permitted to upload this kind of file" error message)


 


Gus


 


        <key>Boot</key>


        <dict>


                <key>#CustomLogo</key>


                <string>_NOT_SHOWN_</string>


                <key>#Timeout</key>


                <string>_NOT_SHOWN_</string>


                <key>Arguments</key>


                <string>-v kext-dev-mode=1</string>


                <key>Debug</key>


                <false/>


                <key>DefaultLoader</key>


                <string>题쪘</string>


                <key>DefaultVolume</key>


                <string>餘쪘</string>


                <key>Fast</key>


                <false/>


                <key>Legacy</key>


                <string>PBR</string>


                <key>XMPDetection</key>


                <integer>-1</integer>


        </dict>


Link to comment
Share on other sites

 

I have Clover with 10.10.3, and everything works *except* I can't figure out how to configure the system to boot automatically after a 5 sec delay. It boots OK but I have to hit a key at the Clover screen to boot. The boot section on my working config.plist on the OSX/EFI partition is below. I thought this was done by editing this Boot section, changing Timeout to 5, but that doesn't work. I'm using vim editor, I've tried removing the hash before Timeout, using <string>5</string> and <integer>5</integer>, and everything else I can think of.

 

Appreciate method to fix. (I'd attach my entire config.plist, but I get "You aren't permitted to upload this kind of file" error message)

 

Gus

 

        <key>Boot</key>

        <dict>

                <key>#CustomLogo</key>

                <string>_NOT_SHOWN_</string>

                <key>#Timeout</key>

                <string>_NOT_SHOWN_</string>

                <key>Arguments</key>

                <string>-v kext-dev-mode=1</string>

                <key>Debug</key>

                <false/>

                <key>DefaultLoader</key>

                <string>题쪘</string>

                <key>DefaultVolume</key>

                <string>餘쪘</string>

                <key>Fast</key>

                <false/>

                <key>Legacy</key>

                <string>PBR</string>

                <key>XMPDetection</key>

                <integer>-1</integer>

        </dict>

 

My config.plist part is:

<key>Boot</key>

<dict>

<key>Arguments</key>

<string>slide=0 npci=0x2000 kext-dev-mode=1</string>

<key>Debug</key>

<false/>

<key>DefaultVolume</key>

<string>Yosemite</string>

<key>Legacy</key>

<string>PBR</string>

<key>Secure</key>

<false/>

<key>Timeout</key>

<integer>5</integer>

<key>XMPDetection</key>

<integer>1</integer>

</dict>

My config.plist part is:

<key>Boot</key>

<dict>

<key>Arguments</key>

<string>slide=0 npci=0x2000 kext-dev-mode=1</string>

<key>Debug</key>

<false/>

<key>DefaultVolume</key>

<string>Yosemite</string>

<key>Legacy</key>

<string>PBR</string>

<key>Secure</key>

<false/>

<key>Timeout</key>

<integer>5</integer>

<key>XMPDetection</key>

<integer>1</integer>

</dict>

So delete # near Timeout.

Link to comment
Share on other sites

The boot section below, in config.plist, solved the problem. I believe the problem with my earlier boot section was that one needs to specify DefaultVolume (to boot), in addition to the 5 sec timeout. Gus


 


<key>Boot</key>


        <dict>


                <key>#CustomLogo</key>


                <string>_NOT_SHOWN_</string>


                <key>Timeout</key>


                <integer>5</integer>


                <key>Arguments</key>


                <string>-v kext-dev-mode=1</string>


                <key>Debug</key>


                <false/>


                <key>DefaultLoader</key>


                <string>boot.efi</string>


                <key>DefaultVolume</key>


                <string>OSX_10.10</string>


                <key>Fast</key>


                <false/>


                <key>Legacy</key>


                <string>PBR</string>


                <key>XMPDetection</key>


                <integer>-1</integer>


  • Like 1
Link to comment
Share on other sites

 Share

×
×
  • Create New...