- Update to 14 - Adjust make commands in spec - Drop upstreamed fixes - Add patches to avoid build failure - Update SUSE/openSUSE specific patches OBS-URL: https://build.opensuse.org/request/show/561561 OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory/shim?expand=0&rev=135
29 lines
638 B
Diff
29 lines
638 B
Diff
From c6ecc2923b8072e9cb24806b1c1b92f63016fd63 Mon Sep 17 00:00:00 2001
|
|
From: Gary Lin <glin@suse.com>
|
|
Date: Thu, 4 Jan 2018 14:31:51 +0800
|
|
Subject: [PATCH] httpboot: include console.h
|
|
|
|
in_protocol is declared in console.h, so httpboot.c has to include the
|
|
header.
|
|
|
|
Signed-off-by: Gary Lin <glin@suse.com>
|
|
---
|
|
httpboot.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/httpboot.c b/httpboot.c
|
|
index 058704f..b753405 100644
|
|
--- a/httpboot.c
|
|
+++ b/httpboot.c
|
|
@@ -34,6 +34,7 @@
|
|
#include <efi.h>
|
|
#include <efilib.h>
|
|
#include "str.h"
|
|
+#include "console.h"
|
|
#include "Http.h"
|
|
#include "Ip4Config2.h"
|
|
#include "Ip6Config.h"
|
|
--
|
|
2.15.1
|
|
|