* include/grub/symbol.h (END) [__arm__]: New macros. Replace all .end
occurencies with END.
This commit is contained in:
parent
d0d1e3dacb
commit
ea57de18f8
5 changed files with 16 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* include/grub/symbol.h (END) [__arm__]: New macros. Replace all .end
|
||||
occurencies with END.
|
||||
|
||||
2013-11-13 Colin Watson <cjwatson@ubuntu.com>
|
||||
|
||||
* util/grub-editenv.c (help_filter, argp): Document how to delete
|
||||
|
|
|
@ -33,4 +33,4 @@ FUNCTION(_start)
|
|||
str r1, [ip]
|
||||
ldr ip, =EXT_C(grub_main)
|
||||
bx ip
|
||||
.end
|
||||
END
|
||||
|
|
|
@ -58,4 +58,4 @@ FUNCTION(raise)
|
|||
mov r0, #0
|
||||
bx lr
|
||||
|
||||
.end
|
||||
END
|
||||
|
|
|
@ -166,4 +166,4 @@ transition_space:
|
|||
VARIABLE(grub_uboot_syscall_ptr)
|
||||
.long 0 @
|
||||
|
||||
.end
|
||||
END
|
||||
|
|
|
@ -37,6 +37,14 @@
|
|||
# define EXT_C(sym) sym
|
||||
#endif
|
||||
|
||||
#ifdef __arm__
|
||||
#ifdef __clang__
|
||||
#define END
|
||||
#else
|
||||
#define END .end
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined (__APPLE__)
|
||||
#define FUNCTION(x) .globl EXT_C(x) ; EXT_C(x):
|
||||
#define VARIABLE(x) .globl EXT_C(x) ; EXT_C(x):
|
||||
|
|
Loading…
Reference in a new issue