Contribute
Register

Screen distorted on boot HD5500, UEFI native (no CSM), 1920x1080 HP 450 G2

Status
Not open for further replies.
what did you have it set to before?

Default for uefi boot without legacy specified is "legacybiosdefault"

Code:
      // legacy bios protocol
      prop = getproperty (dictpointer, "legacy");
      if (prop != null)  {
        asciistrtounicodestr (prop->string, gsettings.legacyboot);
      } else if (gfirmwareclover) {
        // default for clover efi boot
        unicodesprint (gsettings.legacyboot, sizeof(gsettings.legacyboot), l"pbr");
      } else {
[B]        // default for uefi boot
        unicodesprint (gsettings.legacyboot, sizeof(gsettings.legacyboot), l"legacybiosdefault");
[/B]      }

the setting really only controls legacy booting though... Would not affect booting os x.

Note:
Code:
static void startlegacy(in legacy_entry *entry)
{
...  
    If (strcmp(gsettings.legacyboot, l"apple") != 0) { // not apple-style legacyboot
      //try my legacyboot
      switch (entry->volume->boottype) {
        case booting_by_cd:
          Status = booteltorito(entry->volume);
          break;
        case booting_by_mbr:
          Status = bootmbr(entry->volume);
          break;
        case booting_by_pbr:
          If (strcmp(gsettings.legacyboot, l"legacybiosdefault") == 0) {
            status = bootlegacybiosdefault(gsettings.legacybiosdefaultentry);
          } else if (strcmp(gsettings.legacyboot, l"pbrtest") == 0) {
            status = bootpbrtest(entry->volume);
          } else {
            // default
            status = bootpbr(entry->volume);
          }
          break;
        default:
          Break;
      }

you might want to verify your conclusions.

Sure!

You are right!

I suspect that did change my config.ini and not copied to the EFI/CLOVER folder
 
Status
Not open for further replies.
Back
Top