forked from pool/grub2
38 lines
999 B
Diff
38 lines
999 B
Diff
|
From 71a44537c3293d14184901a39f87e2b9d748c8ce Mon Sep 17 00:00:00 2001
|
||
|
From: Anton Blanchard <anton@samba.org>
|
||
|
Date: Wed, 29 Jan 2014 10:37:54 +1100
|
||
|
Subject: [PATCH 09/23] Add powerpc64 types
|
||
|
|
||
|
Signed-off-by: Ram Pai <linuxram@us.ibm.com>
|
||
|
From: Anton Blanchard <anton@samba.org>
|
||
|
---
|
||
|
include/grub/powerpc/types.h | 8 ++++++++
|
||
|
1 file changed, 8 insertions(+)
|
||
|
|
||
|
diff --git a/include/grub/powerpc/types.h b/include/grub/powerpc/types.h
|
||
|
index a098ae6..7a2fc6b 100644
|
||
|
--- a/include/grub/powerpc/types.h
|
||
|
+++ b/include/grub/powerpc/types.h
|
||
|
@@ -19,11 +19,19 @@
|
||
|
#ifndef GRUB_TYPES_CPU_HEADER
|
||
|
#define GRUB_TYPES_CPU_HEADER 1
|
||
|
|
||
|
+#ifdef __powerpc64le__
|
||
|
+/* The size of void *. */
|
||
|
+#define GRUB_TARGET_SIZEOF_VOID_P 8
|
||
|
+
|
||
|
+/* The size of long. */
|
||
|
+#define GRUB_TARGET_SIZEOF_LONG 8
|
||
|
+#else
|
||
|
/* The size of void *. */
|
||
|
#define GRUB_TARGET_SIZEOF_VOID_P 4
|
||
|
|
||
|
/* The size of long. */
|
||
|
#define GRUB_TARGET_SIZEOF_LONG 4
|
||
|
+#endif
|
||
|
|
||
|
/* powerpc is big-endian. */
|
||
|
#define GRUB_TARGET_WORDS_BIGENDIAN 1
|
||
|
--
|
||
|
1.8.3.1
|