diff options
author | comex | 2015-07-16 00:33:08 -0400 |
---|---|---|
committer | comex | 2015-07-16 00:33:08 -0400 |
commit | 9a117236a668681bd029a82db35136186187ada4 (patch) | |
tree | d6020b161976a733d775f1d345abee0a887fbfed /script/gen-inject-asm.sh | |
parent | typo (diff) | |
download | substitute-9a117236a668681bd029a82db35136186187ada4.tar.gz |
fix accidentally exported symbols
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 633a1a5..2432744 100755 --- a/script/gen-inject-asm.sh +++ b/script/gen-inject-asm.sh @@ -12,12 +12,12 @@ shift * inject into foreign-architecture processes), but we need two architectures * anyway, so the rest are included in case doing so is useful someday. */ .align 14 -.globl _inject_page_start +.private_extern _inject_page_start _inject_page_start: END while [ -n "$1" ]; do echo ".align 2" - echo ".globl _inject_start_$1" + echo ".private_extern _inject_start_$1" echo "_inject_start_$1:" printf ".byte " xxd -i < "$2" | xargs echo |