mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 23:32:49 +02:00
grub: replace an unnecessary piece of inline assembly that breaks the build on recent mac os x
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32784 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
02d161708f
commit
ad8b4efd37
14
package/grub/patches/210-remove_inline_asm.patch
Normal file
14
package/grub/patches/210-remove_inline_asm.patch
Normal file
@ -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)
|
Loading…
Reference in New Issue
Block a user