aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Fleming <matt.fleming@intel.com>2013-01-07 20:39:12 +0000
committerMatt Fleming <matt.fleming@intel.com>2013-01-07 20:40:18 +0000
commitc5f62920d2a8ffba0e9c3282403a8676c6073de5 (patch)
treef01c311c355797efa3cc2a36350fbcfbf6d19a7f
parent15a67011987c341814533ac4d8e23c9a72dc7605 (diff)
downloadsyslinux-c5f62920d2a8ffba0e9c3282403a8676c6073de5.tar.gz
syslinux-c5f62920d2a8ffba0e9c3282403a8676c6073de5.tar.xz
syslinux-c5f62920d2a8ffba0e9c3282403a8676c6073de5.zip
efi: Delete EFI handover protocol check
We don't need to bail if the kernel we're trying to boot supports the handover protocol even though we don't know how use it. We can simply boot the kernel the old fashioned way until we grow the necessary support. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
-rw-r--r--efi/main.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/efi/main.c b/efi/main.c
index 754cbc53..2ecf9f9e 100644
--- a/efi/main.c
+++ b/efi/main.c
@@ -759,10 +759,6 @@ int efi_boot_linux(void *kernel_buf, size_t kernel_size,
printf("bzImage version 0x%x unsupported\n", hdr->version);
goto bail;
}
- if (hdr->version >= 0x20b) {
- printf("bzImage version 0x%x handover protocol unimplemented \n", hdr->version);
- goto bail;
- }
/* FIXME: check boot sector signature */
if (hdr->boot_flag != BOOT_SIGNATURE) {