diff options
author | Paul Mundt <lethal@linux-sh.org> | 2005-04-27 12:46:57 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2005-04-27 12:46:57 +0000 |
commit | f93b91420d04e610d87adb6aa2db2b256fedf0c7 (patch) | |
tree | 919b6479700011b8d3bc7ef2d8ef0464e2fe76ba | |
parent | fc67e7bd57314ab784c9aa1231968706c1fbc338 (diff) |
Simplify PERFORM_BOOTSTRAP_RELOC() default path.
This makes sh and sh64 get more in line with what the other
architectures are doing. Also fixes up some build failures.
-rw-r--r-- | ldso/ldso/sh/dl-startup.h | 8 | ||||
-rw-r--r-- | ldso/ldso/sh64/dl-startup.h | 8 |
2 files changed, 0 insertions, 16 deletions
diff --git a/ldso/ldso/sh/dl-startup.h b/ldso/ldso/sh/dl-startup.h index 848ca0a60..1ddfb1f12 100644 --- a/ldso/ldso/sh/dl-startup.h +++ b/ldso/ldso/sh/dl-startup.h @@ -50,14 +50,6 @@ asm( case R_SH_NONE: \ break; \ default: \ - SEND_STDERR("BOOTSTRAP_RELOC: unhandled reloc type "); \ - SEND_NUMBER_STDERR(ELF32_R_TYPE((RELP)->r_info), 1); \ - SEND_STDERR("REL, SYMBOL, LOAD: "); \ - SEND_ADDRESS_STDERR(REL, 0); \ - SEND_STDERR(", "); \ - SEND_ADDRESS_STDERR(SYMBOL, 0); \ - SEND_STDERR(", "); \ - SEND_ADDRESS_STDERR(LOAD, 1); \ _dl_exit(1); \ } diff --git a/ldso/ldso/sh64/dl-startup.h b/ldso/ldso/sh64/dl-startup.h index e53b0a88a..d40344d08 100644 --- a/ldso/ldso/sh64/dl-startup.h +++ b/ldso/ldso/sh64/dl-startup.h @@ -113,14 +113,6 @@ asm("" \ case R_SH_NONE: \ break; \ default: \ - SEND_STDERR("BOOTSTRAP_RELOC: unhandled reloc type "); \ - SEND_NUMBER_STDERR(ELF32_R_TYPE((RELP)->r_info), 1); \ - SEND_STDERR("REL, SYMBOL, LOAD: "); \ - SEND_ADDRESS_STDERR(REL, 0); \ - SEND_STDERR(", "); \ - SEND_ADDRESS_STDERR(SYMBOL, 0); \ - SEND_STDERR(", "); \ - SEND_ADDRESS_STDERR(LOAD, 1); \ _dl_exit(1); \ } |