You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Fedora Ninjas <grub2-owner@fedoraproject.org>
|
|
|
|
Date: Wed, 26 Feb 2014 21:49:12 -0500
|
|
|
|
Subject: [PATCH] always return error to UEFI
|
|
|
|
|
|
|
|
---
|
|
|
|
grub-core/kern/efi/efi.c | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/grub-core/kern/efi/efi.c b/grub-core/kern/efi/efi.c
|
|
|
|
index cd839cc988a..1a8dba531b6 100644
|
|
|
|
--- a/grub-core/kern/efi/efi.c
|
|
|
|
+++ b/grub-core/kern/efi/efi.c
|
|
|
|
@@ -158,7 +158,7 @@ grub_exit (void)
|
|
|
|
{
|
|
|
|
grub_efi_fini ();
|
|
|
|
efi_call_4 (grub_efi_system_table->boot_services->exit,
|
|
|
|
- grub_efi_image_handle, GRUB_EFI_SUCCESS, 0, 0);
|
|
|
|
+ grub_efi_image_handle, GRUB_EFI_LOAD_ERROR, 0, 0);
|
|
|
|
for (;;) ;
|
|
|
|
}
|
|
|
|
|