This commit is contained in:
陈浩南 2024-08-17 11:53:01 +08:00
parent e408f9c488
commit 44eb056f49
3 changed files with 9 additions and 10 deletions

View File

@ -159,18 +159,17 @@ inputs:
{
extraFiles =
{
"shell.efi" = "${inputs.pkgs.edk2-uefi-shell}/shell.efi";
"efi/DisplayEngine.efi" = ./bios/DisplayEngine.efi;
"efi/SetupBrowser.efi" = ./bios/SetupBrowser.efi;
"efi/UiApp.efi" = ./bios/UiApp.efi;
"efi/Bootx64.efi" = ./bios/Bootx64.efi;
"DisplayEngine.efi" = ./bios/DisplayEngine.efi;
"SetupBrowser.efi" = ./bios/SetupBrowser.efi;
"UiApp.efi" = ./bios/UiApp.efi;
"EFI/Boot/Bootx64.efi" = ./bios/Bootx64.efi;
};
extraEntries =
''
menuentry 'Advanced UEFI Firmware Settings' {
insmod fat
insmod chain
chainloader @bootRoot@/Bootx64.efi
chainloader EFI/Boot/Bootx64.efi
}
'';
};

View File

@ -883,11 +883,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1723695314,
"narHash": "sha256-qAjxCaXSRScGjZe24N2k0mVD7RYGvxlR4fjDhyDARa8=",
"lastModified": 1723866309,
"narHash": "sha256-9FXNU8DgbHNZkF9Ae59KsAkbydUzY269GLTgCLv36QM=",
"owner": "CHN-beta",
"repo": "nixpkgs",
"rev": "1e3245ea7d7f8661b9efce6b32589daf780fe240",
"rev": "372f03471aa2e95b1054d422500357babfe33fb4",
"type": "github"
},
"original": {

View File

@ -72,7 +72,7 @@ inputs:
menuentry "UEFI Shell" {
insmod fat
insmod chain
chainloader @bootRoot@/shell.efi
chainloader /shell.efi
}
''
)