Updated Pop!_OS boot stanza creation

A small edit will be required by users since it seems Pop!_OS creates a secondary EFI system partition. Users will have to fix the `volume` option by providing their Pop!_OS EFI system partition UUID in their `refind.conf` file with a manual edit.
This commit is contained in:
jlobue10 2023-03-02 20:11:06 -08:00 committed by GitHub
parent fbaec179de
commit d0bb5335b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -449,7 +449,8 @@ string MainWindow::CreateBootStanza(QString &BootOption, const char *BootNum, bo
Boot_Stanza_GUI.append("\ticon /EFI/refind/os_icon");
Boot_Stanza_GUI.append(BootNum);
Boot_Stanza_GUI.append(".png\n");
Boot_Stanza_GUI.append("\tloader /EFI/systemd-bootx64.efi\n");
Boot_Stanza_GUI.append("\tvolume REPLACE_WITH_POP_OS_EFI_SYS_PART_UUID\n");
Boot_Stanza_GUI.append("\tloader /EFI/systemd/systemd-bootx64.efi\n");
Boot_Stanza_GUI.append("\tgraphics on\n}\n");
return Boot_Stanza_GUI;
}