Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | fix building on alpha | Mike Frysinger | 2006-01-20 | 1 | -0/+15 | |
| | ||||||
* | would help if i used the right variable name ... | Mike Frysinger | 2006-01-19 | 1 | -1/+1 | |
| | ||||||
* | Frank Mehnert writes: | Mike Frysinger | 2006-01-19 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | in ldso/ldso.c, function _dl_get_ready_to_run, the variable app_tpnt_tmp is not initialized. The function _dl_parse_dynamic_info() initializes some of their members but not all. For example, if the binary does _not_ contain a DT_TEXTREL record, it is possible that the condition if (app_tpnt->dynamic_info[DT_TEXTREL]) is nevertheless true and we therefore enter the following code path (ldso.c:270). My suggestion is to add _dl_memset(&app_tpnt_rel, 0, sizeof(app_tpnt_rel)); just behind the variable declarations of _dl_get_ready_to_run(). | |||||
* | update sparc code using x86_64 as a template | Mike Frysinger | 2006-01-19 | 1 | -204/+302 | |
| | ||||||
* | first pass at updating sparc ldso with code from glibc | Mike Frysinger | 2006-01-19 | 1 | -29/+43 | |
| | ||||||
* | update syscall macros so both ldso and libc can use them | Mike Frysinger | 2006-01-19 | 1 | -168/+2 | |
| | ||||||
* | move a bunch of arch-specific checks out of common files and into an arch ↵ | Mike Frysinger | 2006-01-19 | 6 | -11/+1 | |
| | | | | specific header file to make porting/updates a lot easier | |||||
* | cut out unused code | Mike Frysinger | 2006-01-17 | 1 | -18/+6 | |
| | ||||||
* | cleanup whitespace | Mike Frysinger | 2006-01-17 | 1 | -61/+60 | |
| | ||||||
* | since just about everyone uses return _dl_elf_main for START() now, make it ↵ | Mike Frysinger | 2006-01-17 | 10 | -59/+6 | |
| | | | | the default | |||||
* | grab some more fixes from x86_64 | Mike Frysinger | 2006-01-14 | 1 | -9/+23 | |
| | ||||||
* | m68k ldso works again (well, lazy relocation is broken atm) | Mike Frysinger | 2006-01-14 | 2 | -142/+208 | |
| | ||||||
* | add back in _dl_start_user | Mike Frysinger | 2006-01-14 | 1 | -0/+5 | |
| | ||||||
* | fixup so we can at least get to the ldso Standalone execution step | Mike Frysinger | 2006-01-14 | 1 | -16/+32 | |
| | ||||||
* | Revert 13276, cache corrupted on x86 | Peter S. Mazinger | 2006-01-14 | 1 | -11/+39 | |
| | ||||||
* | use regular headers rather than trying to get tricky | Mike Frysinger | 2006-01-14 | 1 | -39/+11 | |
| | ||||||
* | fix up ability to rename ldso | Mike Frysinger | 2006-01-13 | 1 | -17/+17 | |
| | ||||||
* | fix a (very unlikely) page leak | Mike Frysinger | 2006-01-12 | 1 | -3/+3 | |
| | ||||||
* | need to include bits/sysnum.h for all of our __NR_* defs | Mike Frysinger | 2006-01-11 | 1 | -15/+2 | |
| | ||||||
* | support a few more relocation types | Mike Frysinger | 2006-01-10 | 1 | -9/+11 | |
| | ||||||
* | list more relocs | Mike Frysinger | 2006-01-09 | 1 | -3/+6 | |
| | ||||||
* | other half of lazy relocation from glibc dl-trampoline | Mike Frysinger | 2006-01-08 | 1 | -0/+63 | |
| | ||||||
* | patch by Jocke to fix up lazy relocation | Mike Frysinger | 2006-01-08 | 1 | -7/+2 | |
| | ||||||
* | nlist should be unsigned, not signed, as it tracks # of elements in ↵ | Mike Frysinger | 2005-12-27 | 1 | -1/+1 | |
| | | | | init_fini_list | |||||
* | revert debug "fix" since it isnt correct and previous version works | Mike Frysinger | 2005-12-27 | 1 | -3/+3 | |
| | ||||||
* | Remove all trailing ; after *_alias and change 2 to use weak_alias instead ↵ | Peter S. Mazinger | 2005-12-16 | 1 | -1/+1 | |
| | | | | of __attribute__ ... | |||||
* | Fix static apps on linux 2.6. Linux clobbers r7 in 2.6, so | Joakim Tjernlund | 2005-12-15 | 1 | -2/+4 | |
| | | | | use r3 instead to pass _dl_fini. | |||||
* | fix signed/unsigned warnings and unused warnings | Mike Frysinger | 2005-12-14 | 4 | -14/+13 | |
| | ||||||
* | remove .oS too | Mike Frysinger | 2005-12-14 | 1 | -1/+1 | |
| | ||||||
* | Fix debugging. | "Steven J. Hill" | 2005-12-11 | 1 | -3/+3 | |
| | ||||||
* | Remove trailing ';' from strong_alias, thx Bernhard Fischer | Peter S. Mazinger | 2005-12-10 | 1 | -1/+1 | |
| | ||||||
* | Added .oS asm targets and make ldso build w/ -DSHARED (needed by nptl) | Peter S. Mazinger | 2005-11-28 | 1 | -1/+1 | |
| | ||||||
* | change to Lesser GPL 2.1 as pointed out by psm | Mike Frysinger | 2005-11-23 | 8 | -8/+8 | |
| | ||||||
* | Depedencies corrected (less make oldconfig/headers), rerunning make remakes ↵ | Peter S. Mazinger | 2005-11-22 | 2 | -12/+8 | |
| | | | | only headers | |||||
* | rework depends and stripping so that libraries arent rebuilt all the time in ↵ | Mike Frysinger | 2005-11-22 | 1 | -2/+4 | |
| | | | | a loop | |||||
* | remove headers_done since it broke buildroot again | Mike Frysinger | 2005-11-22 | 1 | -1/+1 | |
| | ||||||
* | add some copyright info | Mike Frysinger | 2005-11-22 | 8 | -0/+56 | |
| | ||||||
* | Remove TOPDIR | Peter S. Mazinger | 2005-11-21 | 3 | -9/+3 | |
| | ||||||
* | Do not create any files (dl-progname.h) in ldso anymore | Peter S. Mazinger | 2005-11-21 | 4 | -16/+8 | |
| | ||||||
* | Partly undo earlier patch on vapier's request | Peter S. Mazinger | 2005-11-21 | 10 | -21/+7 | |
| | ||||||
* | Guard debug_sym/debug_reloc, make sure elfinterp.c sees __SUPPORT_LD_DEBUG__ | Peter S. Mazinger | 2005-11-21 | 11 | -9/+35 | |
| | ||||||
* | Do not create header links, use -I to find them. Moved dl-progname.h to ↵ | Peter S. Mazinger | 2005-11-21 | 2 | -12/+4 | |
| | | | | ldso/ldso, that will exist if top_srcdir != top_builddir. | |||||
* | fix up ifdef checks so dl_iterate_phdr is defined in all the proper objects | Mike Frysinger | 2005-11-20 | 2 | -2/+4 | |
| | ||||||
* | make -j2 works here | Peter S. Mazinger | 2005-11-18 | 1 | -2/+1 | |
| | ||||||
* | Add info to CFLAGS about lib we are building | Peter S. Mazinger | 2005-11-18 | 2 | -4/+4 | |
| | ||||||
* | Include all lib*/Makefile.in in top_srcdir/Makefile.in, allows adding ↵ | Peter S. Mazinger | 2005-11-17 | 3 | -93/+94 | |
| | | | | foreign objects to a lib | |||||
* | Use -z relro/-z now on all libs, add some new variables needed later, move ↵ | Peter S. Mazinger | 2005-11-17 | 2 | -10/+0 | |
| | | | | common ldso/libdl parts to Rules.mak, remove strip from all TARGET_ARCH | |||||
* | update license | Mike Frysinger | 2005-11-09 | 1 | -15/+4 | |
| | ||||||
* | Do not set the RELOCS_DONE flag until it is actually done. This order ↵ | "Steven J. Hill" | 2005-11-06 | 1 | -2/+2 | |
| | | | | matters for NPTL libpthreads to work. Well, that was a nice waste of 3 hours. | |||||
* | Don't need this debug check anymore. | Joakim Tjernlund | 2005-11-02 | 1 | -6/+0 | |
| |