summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch from Stefan Allius to make adding libgcc functions to the library anEric Andersen2003-02-052-11/+35
| | | | | option, to avoid the possibility of adding non PIC code into the shared PIC uClibc library, thereby making the .text segment unshareable.
* Patch from Stefan Allius to fix a compiler warningEric Andersen2003-02-041-1/+3
|
* Fixup compile on 2.2.x kernels when UCLIBC_HAS_LFS is enabledEric Andersen2003-02-032-11/+29
|
* Oops. I'd left an extra invocation of sigaction in there...Eric Andersen2003-02-031-3/+1
|
* hehEric Andersen2003-01-311-3/+3
|
* Fix copyrightEric Andersen2003-01-311-3/+2
|
* Correct license.Miles Bader2003-01-314-12/+12
|
* Patch from Marshall M. Midden @ brecis.com:Eric Andersen2003-01-302-2/+41
| | | | pipe.c for mips was broken with freeswan. No error checking.
* Per discussion with Nick Fedchik, restore original LGPLEric Andersen2003-01-301-12/+21
| | | | licensing to libc/inet/ether_addr.c
* Patch from Christophe Massiot:Eric Andersen2003-01-302-1/+28
| | | | | | | | | | | | Hello, When using uClibc to compile the modutils for a MIPS target, the linker outputs an "undefined symbol: _flush_cache". After some digging, it's a syscall only available on the MIPS architecture, and the _flush_cache symbol is in the GNU libc. Attached patch defines it in uClibc as well. I'm not sure if I made it the right way, though, but it works for me.
* Patch from Christian Krause:Eric Andersen2003-01-301-0/+3
| | | | | | | | | | | | | | | | | | | | | | | I found a problem in uClibc in libpthread/linuxthres/condvar.c: pthread_cond_timedwait never uses rt singals uClibc has two implementations of pthread_cond_timewait - pthread_cond_timedwait_relative_old using the "normal" signals and pthread_cond_timedwait_relative_new usign the rt signals (for kernels >= 2.2). The function pointer pthread_cond_tw_rel is initialised with the old function. In "__pthread_init_condvar(int)" this pointer is set to the new function using rt signals, but "__pthread_init_condvar" is never called in the uClibc. The following patch solves this issue, so that __pthread_init_condvars is called and the function pointer is always initialised with the correct function. regards, christian
* The original glibc sysdeps/mips/dl-machine.h source from Kazumoto Kojima wasEric Andersen2003-01-301-3/+3
| | | | | | | | | | | | under the LGPL. I noticed Steven J. Hill has accidentally changed the license to be GPL. Per email with him, change it back to LGPL. Erik Andersen wrote: >I just noticed that uClibc/ldso/ldso/mips/resolve.S is >listed as licensed under the GPL, rather than the LGPL >like the rest of uClibc. Accident? > Yes. Feel free to change it.
* Use correct names for dummy crti.o/crtn.o files.Miles Bader2003-01-301-2/+2
|
* Initial checkin.Miles Bader2003-01-302-0/+63
|
* Create stub crti.o and crtn.o files when UCLIBC_CTOR_DTOR is disabledEric Andersen2003-01-291-2/+9
| | | | -Erik
* Fix scandir64 to not free the wrong pieces of memory (which couldEric Andersen2003-01-2810-92/+297
| | | | | | | | and did cause segfaults) by adjusting the working scandir.c to the the 64 thing. Fix up potential for mismatches between the libc and kernel dirent structures, which could also cause ugly problems. -Erik
* Add a couple of testsEric Andersen2003-01-284-2/+166
|
* Stefan Allius noticed dlib_pic.o was not using XXFLAGS as it shouldEric Andersen2003-01-281-1/+1
|
* Patch from Stefan Allius to fix the build whenEric Andersen2003-01-282-0/+4
| | | | large file support is disabled
* Add multiple-include protection.Miles Bader2003-01-271-0/+4
|
* bahEric Andersen2003-01-251-1/+1
|
* CleanerEric Andersen2003-01-251-3/+2
|
* Fix the 'make release' target0_9_17Eric Andersen2003-01-251-2/+4
|
* This seems to be needed or else apps will blow up.Eric Andersen2003-01-251-9/+2
| | | | -Erik
* some minor todo updatesEric Andersen2003-01-251-7/+10
|
* Move some stuff into old-newsEric Andersen2003-01-252-76/+76
|
* Update webpage for releaseEric Andersen2003-01-252-38/+130
|
* Update the changelog for releaseEric Andersen2003-01-252-61/+168
|
* Fix powerpc struct kernel_stat typesEric Andersen2003-01-241-19/+18
|
* Stick some evil casts in to make sure this works regardlessEric Andersen2003-01-241-13/+13
| | | | of the underlying data types.
* A few more needed updatesEric Andersen2003-01-249-152/+736
|
* Begin release preparations...Eric Andersen2003-01-242-761/+541
|
* Support having libs in /usr/X11R6/lib by default as wellEric Andersen2003-01-242-0/+2
|
* Stupid typoEric Andersen2003-01-241-1/+2
|
* Finish up fixing stat and setting various system types.Eric Andersen2003-01-2412-98/+52
|
* Don't clean config system except on 'make distclean'. Remember toEric Andersen2003-01-241-1/+2
| | | | clean locale stuff on 'make clean'
* Better stat testsEric Andersen2003-01-243-37/+118
|
* I thought it would be smaller to inline since these funcs are small.Eric Andersen2003-01-244-10/+51
| | | | | Well, not inlining saves 300 bytes, so do that instead. -Erik
* Ok, people are probably going to hate me for this... This commit changes theEric Andersen2003-01-2416-504/+311
| | | | | | | | | | | | | | | type of 'struct stat' and 'struct stat64' so they use consistant types. This change is the result of a bug I found while trying to use GNU tar. The problem was caused by our using kernel types within struct stat and trying to directly compare these values with standard types. Trying an 'if (a < b)' when 'a' is an 'unsigned long' and 'b' is an 'int' leads to very different results then when comparing entities of the same type (i.e. time_t values).... Grumble. Nasty stuff, but I'm glad I got this out of the way now. As a result of this fix, uClibc 0.9.17 will not be binary compatible with earlier releases. I have always warned people this can and will happen. -Erik
* Add FAQ entry for "sh: can't access tty; job control turned off"Eric Andersen2003-01-241-2/+24
| | | | -Erik
* Doh! Fix potential stack corruption caused by dynamic atexitEric Andersen2003-01-241-2/+6
| | | | | allocating size incorrectly.... -Erik
* Update architecture specific support to consistantlyEric Andersen2003-01-2319-137/+56
| | | | | | generate a crt0 and crt1 file. Most arches still need to be updated to call __uClibc_start_main() rather than __uClibc_main().
* Hopefully this is correctEric Andersen2003-01-232-11/+18
|
* Hopefully this will work as expected. I have no way toEric Andersen2003-01-232-6/+16
| | | | test but this should be correct.
* Update crt0 for arm to provide the main referenceEric Andersen2003-01-231-7/+13
| | | | | | a bit more nicely, and make _init and _fini be weak for people with broken compilers -Erik
* Shuffle OPTIMIZATION setting a bitEric Andersen2003-01-231-4/+3
|
* Wasn't thinking... we don't need to seek to end when appending if stdioManuel Novoa III2003-01-231-12/+0
| | | | is built without buffer support.
* Update tests to be somewhat consistant with the rest of the worldEric Andersen2003-01-2315-73/+129
|
* Update ignore listEric Andersen2003-01-231-1/+1
|
* Update a tiny bitEric Andersen2003-01-231-5/+1
|