15a2072
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
15a2072
From: Peter Jones <pjones@redhat.com>
15a2072
Date: Fri, 16 Mar 2018 13:28:57 -0400
15a2072
Subject: [PATCH] Work around some minor include path weirdnesses
15a2072
15a2072
Signed-off-by: Peter Jones <pjones@redhat.com>
15a2072
---
15a2072
 include/grub/arm/efi/console.h    | 24 ++++++++++++++++++++++++
15a2072
 include/grub/arm64/efi/console.h  | 24 ++++++++++++++++++++++++
15a2072
 include/grub/i386/efi/console.h   | 24 ++++++++++++++++++++++++
15a2072
 include/grub/x86_64/efi/console.h | 24 ++++++++++++++++++++++++
15a2072
 4 files changed, 96 insertions(+)
15a2072
 create mode 100644 include/grub/arm/efi/console.h
15a2072
 create mode 100644 include/grub/arm64/efi/console.h
15a2072
 create mode 100644 include/grub/i386/efi/console.h
15a2072
 create mode 100644 include/grub/x86_64/efi/console.h
15a2072
15a2072
diff --git a/include/grub/arm/efi/console.h b/include/grub/arm/efi/console.h
15a2072
new file mode 100644
15a2072
index 00000000000..1592f6f76b5
15a2072
--- /dev/null
15a2072
+++ b/include/grub/arm/efi/console.h
15a2072
@@ -0,0 +1,24 @@
15a2072
+/*
15a2072
+ *  GRUB  --  GRand Unified Bootloader
15a2072
+ *  Copyright (C) 2002,2005,2006,2007  Free Software Foundation, Inc.
15a2072
+ *
15a2072
+ *  GRUB is free software: you can redistribute it and/or modify
15a2072
+ *  it under the terms of the GNU General Public License as published by
15a2072
+ *  the Free Software Foundation, either version 3 of the License, or
15a2072
+ *  (at your option) any later version.
15a2072
+ *
15a2072
+ *  GRUB is distributed in the hope that it will be useful,
15a2072
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15a2072
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15a2072
+ *  GNU General Public License for more details.
15a2072
+ *
15a2072
+ *  You should have received a copy of the GNU General Public License
15a2072
+ *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
15a2072
+ */
15a2072
+
15a2072
+#ifndef GRUB_ARM_EFI_CONSOLE_H
15a2072
+#define GRUB_ARM_EFI_CONSOLE_H
15a2072
+
15a2072
+#include <efi/console.h>
15a2072
+
15a2072
+#endif /* ! GRUB_ARM_EFI_CONSOLE_H */
15a2072
diff --git a/include/grub/arm64/efi/console.h b/include/grub/arm64/efi/console.h
15a2072
new file mode 100644
15a2072
index 00000000000..95689339384
15a2072
--- /dev/null
15a2072
+++ b/include/grub/arm64/efi/console.h
15a2072
@@ -0,0 +1,24 @@
15a2072
+/*
15a2072
+ *  GRUB  --  GRand Unified Bootloader
15a2072
+ *  Copyright (C) 2002,2005,2006,2007  Free Software Foundation, Inc.
15a2072
+ *
15a2072
+ *  GRUB is free software: you can redistribute it and/or modify
15a2072
+ *  it under the terms of the GNU General Public License as published by
15a2072
+ *  the Free Software Foundation, either version 3 of the License, or
15a2072
+ *  (at your option) any later version.
15a2072
+ *
15a2072
+ *  GRUB is distributed in the hope that it will be useful,
15a2072
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15a2072
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15a2072
+ *  GNU General Public License for more details.
15a2072
+ *
15a2072
+ *  You should have received a copy of the GNU General Public License
15a2072
+ *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
15a2072
+ */
15a2072
+
15a2072
+#ifndef GRUB_ARM64_EFI_CONSOLE_H
15a2072
+#define GRUB_ARM64_EFI_CONSOLE_H
15a2072
+
15a2072
+#include <efi/console.h>
15a2072
+
15a2072
+#endif /* ! GRUB_ARM64_EFI_CONSOLE_H */
15a2072
diff --git a/include/grub/i386/efi/console.h b/include/grub/i386/efi/console.h
15a2072
new file mode 100644
15a2072
index 00000000000..9231375cb07
15a2072
--- /dev/null
15a2072
+++ b/include/grub/i386/efi/console.h
15a2072
@@ -0,0 +1,24 @@
15a2072
+/*
15a2072
+ *  GRUB  --  GRand Unified Bootloader
15a2072
+ *  Copyright (C) 2002,2005,2006,2007  Free Software Foundation, Inc.
15a2072
+ *
15a2072
+ *  GRUB is free software: you can redistribute it and/or modify
15a2072
+ *  it under the terms of the GNU General Public License as published by
15a2072
+ *  the Free Software Foundation, either version 3 of the License, or
15a2072
+ *  (at your option) any later version.
15a2072
+ *
15a2072
+ *  GRUB is distributed in the hope that it will be useful,
15a2072
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15a2072
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15a2072
+ *  GNU General Public License for more details.
15a2072
+ *
15a2072
+ *  You should have received a copy of the GNU General Public License
15a2072
+ *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
15a2072
+ */
15a2072
+
15a2072
+#ifndef GRUB_I386_EFI_CONSOLE_H
15a2072
+#define GRUB_I386_EFI_CONSOLE_H
15a2072
+
15a2072
+#include <efi/console.h>
15a2072
+
15a2072
+#endif /* ! GRUB_I386_EFI_CONSOLE_H */
15a2072
diff --git a/include/grub/x86_64/efi/console.h b/include/grub/x86_64/efi/console.h
15a2072
new file mode 100644
15a2072
index 00000000000..dba9d8678d0
15a2072
--- /dev/null
15a2072
+++ b/include/grub/x86_64/efi/console.h
15a2072
@@ -0,0 +1,24 @@
15a2072
+/*
15a2072
+ *  GRUB  --  GRand Unified Bootloader
15a2072
+ *  Copyright (C) 2002,2005,2006,2007  Free Software Foundation, Inc.
15a2072
+ *
15a2072
+ *  GRUB is free software: you can redistribute it and/or modify
15a2072
+ *  it under the terms of the GNU General Public License as published by
15a2072
+ *  the Free Software Foundation, either version 3 of the License, or
15a2072
+ *  (at your option) any later version.
15a2072
+ *
15a2072
+ *  GRUB is distributed in the hope that it will be useful,
15a2072
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15a2072
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15a2072
+ *  GNU General Public License for more details.
15a2072
+ *
15a2072
+ *  You should have received a copy of the GNU General Public License
15a2072
+ *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
15a2072
+ */
15a2072
+
15a2072
+#ifndef GRUB_X86_64_EFI_CONSOLE_H
15a2072
+#define GRUB_X86_64_EFI_CONSOLE_H
15a2072
+
15a2072
+#include <efi/console.h>
15a2072
+
15a2072
+#endif /* ! GRUB_X86_64_EFI_CONSOLE_H */