summaryrefslogtreecommitdiff
path: root/ldso/ldso/bfin/dl-sysdep.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-07-23 05:38:44 -0400
committerMike Frysinger <vapier@gentoo.org>2009-07-23 16:01:26 -0400
commit507eb11fc59cee5df9a38400ec77d15d2678f304 (patch)
treed1eb63906bd5369212a875f71ba9b0f1dec6e7c4 /ldso/ldso/bfin/dl-sysdep.h
parent562216ed313703032e9d0ccf76772b904c390b90 (diff)
Blackfin: rename __dl_boot to __start
The entry symbol is __start rather than __dl_boot. While in the past this was silently ignored, now with common code checking the _start symbol in C code, we end up with link errors: ldso/ldso/ld-uClibc_so.a(ldso.oS): In function `__dl_get_ready_to_run': ldso/ldso/ldso.c:(.text+0x2b30): undefined reference to `__start' collect2: ld returned 1 exit status make[1]: *** [lib/ld-uClibc.so] Error 1 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'ldso/ldso/bfin/dl-sysdep.h')
-rw-r--r--ldso/ldso/bfin/dl-sysdep.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ldso/ldso/bfin/dl-sysdep.h b/ldso/ldso/bfin/dl-sysdep.h
index 89483ae00..50c750990 100644
--- a/ldso/ldso/bfin/dl-sysdep.h
+++ b/ldso/ldso/bfin/dl-sysdep.h
@@ -137,10 +137,10 @@ struct funcdesc_ht;
/*
* Compute the GOT address. On several platforms, we use assembly
- * here. on FR-V FDPIC, there's no way to compute the GOT address,
+ * here. on FDPIC, there's no way to compute the GOT address,
* since the offset between text and data is not fixed, so we arrange
- * for the assembly _dl_boot to pass this value as an argument to
- * _dl_boot. */
+ * for the ldso assembly entry point to pass this value as an argument
+ * to _dl_start. */
#define DL_BOOT_COMPUTE_GOT(got) ((got) = dl_boot_got_pointer)
#define DL_BOOT_COMPUTE_DYN(dpnt, got, load_addr) \