diff options
author | comex | 2015-01-24 20:04:20 -0500 |
---|---|---|
committer | comex | 2015-01-24 20:06:46 -0500 |
commit | d89af8f6d5f3b971dda663081c03d790437c2f03 (patch) | |
tree | 2c17f0247ff3eef7d4338cadb069b1334ba785c6 /script/gen-inject-asm.sh | |
parent | Current version of generic-dis-*, for posterity (I'm sure it'll need to be ch... (diff) | |
download | substitute-d89af8f6d5f3b971dda663081c03d790437c2f03.tar.gz |
Add function to deal with mprotecting RW and back. A bit more complex than the minimum would be...
(and minor build fixes)
Diffstat (limited to '')
-rwxr-xr-x | script/gen-inject-asm.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/gen-inject-asm.sh b/script/gen-inject-asm.sh index e2b97ec..eacbbad 100755 --- a/script/gen-inject-asm.sh +++ b/script/gen-inject-asm.sh @@ -1,5 +1,5 @@ #!/bin/sh -echo <<END +cat <<END /* Generated by script/gen-inject-asm.sh. The relevant source is in-tree (make * out/darwin-inject-asm.S), but this file has been checked in too, in case * your C compiler doesn't support all of these architectures. @@ -9,7 +9,7 @@ echo <<END * disabled in case any future Rosetta-like emulator breaks naive attempts to * inject into foreign-architecture processes), but we need two architectures * anyway, so the rest are included in case doing so is useful someday. */ - .align 12 +.align 12 .globl _inject_page_start _inject_page_start: END |