From eef96f01510bb38d92a6fd394be4cb21aa42389c Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Fri, 20 Jul 2012 12:28:54 +0000
Subject: [PATCH] grub: replace an unnecessary piece of inline assembly that
 breaks the build on recent mac os x

SVN-Revision: 32784
---
 package/grub/patches/210-remove_inline_asm.patch | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 package/grub/patches/210-remove_inline_asm.patch

diff --git a/package/grub/patches/210-remove_inline_asm.patch b/package/grub/patches/210-remove_inline_asm.patch
new file mode 100644
index 0000000000..8eb9fc2c97
--- /dev/null
+++ b/package/grub/patches/210-remove_inline_asm.patch
@@ -0,0 +1,14 @@
+--- a/stage2/fsys_iso9660.c
++++ b/stage2/fsys_iso9660.c
+@@ -83,10 +83,7 @@ iso9660_devread (int sector, int byte_of
+ 
+   sector += (byte_offset >> sector_size_lg2);
+   byte_offset &= (buf_geom.sector_size - 1);
+-  asm volatile ("shl%L0 %1,%0"
+-		: "=r"(sector)
+-		: "Ic"((int8_t)(ISO_SECTOR_BITS - sector_size_lg2)),
+-		"0"(sector));
++  sector <<= ISO_SECTOR_BITS - sector_size_lg2;
+ 
+ #if !defined(STAGE1_5)
+   if (disk_read_hook && debug)