28 lines
1 KiB
Diff
28 lines
1 KiB
Diff
From d390f1f873fa42fa5791ba48f9acf0f41da33632 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Milan=20P=2E=20Stani=C4=87?= <mps@arvanta.net>
|
|
Date: Sat, 19 Oct 2019 17:10:16 +0000
|
|
Subject: [PATCH] kexec/arch/i386/kexec-x86.c: fix build on Alpine linux x86
|
|
arch
|
|
|
|
---
|
|
kexec/arch/i386/kexec-x86.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/kexec/arch/i386/kexec-x86.c b/kexec/arch/i386/kexec-x86.c
|
|
index 444cb69..6001e76 100644
|
|
--- a/kexec/arch/i386/kexec-x86.c
|
|
+++ b/kexec/arch/i386/kexec-x86.c
|
|
@@ -36,8 +36,8 @@
|
|
struct file_type file_type[] = {
|
|
{ "multiboot-x86", multiboot_x86_probe, multiboot_x86_load,
|
|
multiboot_x86_usage },
|
|
- { "multiboot2-x86", multiboot2_x86_probe, multiboot2_x86_load,
|
|
- multiboot2_x86_usage },
|
|
+ { "multiboot2-x86", multiboot_x86_probe, multiboot_x86_load,
|
|
+ multiboot_x86_usage },
|
|
{ "elf-x86", elf_x86_probe, elf_x86_load, elf_x86_usage },
|
|
{ "bzImage", bzImage_probe, bzImage_load, bzImage_usage },
|
|
{ "beoboot-x86", beoboot_probe, beoboot_load, beoboot_usage },
|
|
--
|
|
2.23.0
|
|
|