Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing OpenCoreBoot's config.plist to allow to select the default boot disk via AllowSetDefault #53

Closed
sck opened this issue Jun 21, 2020 · 5 comments

Comments

@sck
Copy link

sck commented Jun 21, 2020

I have been trying to enable AllowSetDefault in OpenCore-Catalina's config.plist. There is a script called opencore-image-ng.sh which builds a new OpenCore.qcow2 and also uses the config.plist. But the generated OpenCore.qcow2 never behaves like the original qcow2 (even when not changing the config.plist at all). It prints start pxe over ipv4 in the beginning and after pressing ESC it just starts the UEFI shell, and doesn't offer to boot into OSX at all

@sickcodes
Copy link
Owner

You can try loop mounting the qcow image or just hexedit it and turn that value on.

@sck
Copy link
Author

sck commented Jun 24, 2020

I've now been able to rebuilt OpenCoreBoot with a new config.plist:

For libguestfs/loop mounting I added these packages to my Dockerfile:

RUN sudo pacman -S --noconfirm linux cpio
RUN sudo pacman -S --noconfirm unzip

OpenCore is missing some files for the image to be rebuilt, so I reinstalled it under /home/arch/OSX-KVM/OpenCore-Catalina

F="OpenCore-0.5.9-DEBUG.zip"

test -f $F || (
  wget https://github.com/acidanthera/OpenCorePkg/releases/download/0.5.9/$F
  unzip -o $F
)

Now the image can be rebuilt without errors:

sudo rm -f OpenCore.qcow2; sudo ./opencore-image-ng.sh  --cfg config.plist --img OpenCore.qcow2

For enabling to boot automatically I removed -device ide-hd,bus=sata.3,drive=InstallMedia and -drive id=InstallMedia,if=none,file=$BASESYSTEM,format=raw from the qemu parameters and used this patch for config.plist:

                        <key>HideAuxiliary</key>
                        <false/>
                        <key>PickerAttributes</key>
-                       <integer>1</integer>
+                       <integer>0</integer>
                        <key>PickerAudioAssist</key>
                        <false/>
                        <key>PickerMode</key>
-                       <string>External</string>
+                       <string>Builtin</string>
                        <key>PollAppleHotKeys</key>
                        <true/>
                        <key>ShowPicker</key>
-                       <true/>
+                       <false/>
                        <key>TakeoffDelay</key>
                        <integer>0</integer>
                        <key>Timeout</key>
                        <key>Timeout</key>
-                       <integer>0</integer>
+                       <integer>5</integer>
                </dict>
                <key>Debug</key>
                <dict>

This will then boot from the first hdd which is where my macos installation resides.

@sck sck closed this as completed Jun 24, 2020
@sickcodes
Copy link
Owner

You’re awesome dude, pull request or can I include this in the code for you?

@sck
Copy link
Author

sck commented Jul 4, 2020

Feel free to use what I documented! I have a slightly different setup atm, so not easy to generate a pull request...

@daraul
Copy link

daraul commented Jul 14, 2020

Any way we can see the code, @sck? Even if it's not in a PR, it would still be useful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants