You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
From ad3da599d5735859d141ecb8cb9a31f126cd6aa5 Mon Sep 17 00:00:00 2001 |
|
From: Vladimir Serbinenko <phcoder@gmail.com> |
|
Date: Sun, 20 Apr 2014 16:12:41 +0200 |
|
Subject: [PATCH 080/237] * grub-core/kern/misc.c (__bzero): Don't compile in |
|
GRUB_UTIL. |
|
|
|
Reported by: Yves Blusseau <blusseau@zetam.org>. |
|
--- |
|
ChangeLog | 6 ++++++ |
|
grub-core/kern/misc.c | 3 +++ |
|
2 files changed, 9 insertions(+) |
|
|
|
diff --git a/ChangeLog b/ChangeLog |
|
index 73a8928..3b61c0a 100644 |
|
--- a/ChangeLog |
|
+++ b/ChangeLog |
|
@@ -1,3 +1,9 @@ |
|
+2014-04-20 Vladimir Serbinenko <phcoder@gmail.com> |
|
+ |
|
+ * grub-core/kern/misc.c (__bzero): Don't compile in GRUB_UTIL. |
|
+ |
|
+ Reported by: Yves Blusseau <blusseau@zetam.org>. |
|
+ |
|
2014-04-20 Piotr Krysiuk <piotras@gmail.com> |
|
|
|
* grub-core/lib/i386/relocator.c: Allow loading old kernels by placing |
|
diff --git a/grub-core/kern/misc.c b/grub-core/kern/misc.c |
|
index 54db2e1..c5c815d 100644 |
|
--- a/grub-core/kern/misc.c |
|
+++ b/grub-core/kern/misc.c |
|
@@ -542,6 +542,9 @@ memset (void *s, int c, grub_size_t n) |
|
return grub_memset (s, c, n); |
|
} |
|
|
|
+#endif |
|
+ |
|
+#if !defined(GRUB_UTIL) && defined(__APPLE__) |
|
void GRUB_BUILTIN_ATTR |
|
__bzero (void *s, grub_size_t n) |
|
{ |
|
-- |
|
2.9.3 |
|
|
|
|