summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-02-12Minor update regarding binutilsEric Andersen
2003-02-12Some minor doc updatesEric Andersen
2003-02-12Remove now obsolete note about direntEric Andersen
2003-02-12update website for releaseEric Andersen
2003-02-12Eliminate a needless externEric Andersen
2003-02-12Update changelogEric Andersen
2003-02-12Bump version numberEric Andersen
2003-02-12Somewhat pointless naming pedantryEric Andersen
2003-02-12Use http not ftpEric Andersen
2003-02-11Per suggestion from Peter Lassahn, fix the install_dev targetEric Andersen
2003-02-10We need to have the size of struct dirent equal to the size of struct dirent64Eric Andersen
so when _FILE_OFFSET_BITS=64 (such that we transparently change 32bit into 64 bit interfaces), we will not lose an unsigned char from d_name which silently becomes the d_type field instead. oops. -Erik
2003-02-10A few minor little changesEric Andersen
2003-02-10Mention the dev systems have been updatedEric Andersen
2003-02-10Don't use -O0 when DODEBUG is turned on.Miles Bader
2003-02-10Pass CHILD_STACK argument to system call (it possibly worked before `byMiles Bader
accident', as the function argument is in the same register).
2003-02-09Fix a warningEric Andersen
2003-02-09Fix a compile errorEric Andersen
2003-02-08Fixup handling of the .note.ABI-tag section so that it is ARM only,Eric Andersen
and so it actually works as intended allowing binaries on ARM to be debugged. -Erik
2003-02-05mention penguruEric Andersen
2003-02-05add brk for m68kDavid McCullough
NOTE: on uClinux-2.[45] kernels, brk works but is limited to slack space in the memory allocated to the process.
2003-02-05Patch from Stefan Allius to make adding libgcc functions to the library anEric Andersen
option, to avoid the possibility of adding non PIC code into the shared PIC uClibc library, thereby making the .text segment unshareable.
2003-02-04Patch from Stefan Allius to fix a compiler warningEric Andersen
2003-02-03Fixup compile on 2.2.x kernels when UCLIBC_HAS_LFS is enabledEric Andersen
2003-02-03Oops. I'd left an extra invocation of sigaction in there...Eric Andersen
2003-01-31hehEric Andersen
2003-01-31Fix copyrightEric Andersen
2003-01-31Correct license.Miles Bader
2003-01-30Patch from Marshall M. Midden @ brecis.com:Eric Andersen
pipe.c for mips was broken with freeswan. No error checking.
2003-01-30Per discussion with Nick Fedchik, restore original LGPLEric Andersen
licensing to libc/inet/ether_addr.c
2003-01-30Patch from Christophe Massiot:Eric Andersen
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.
2003-01-30Patch from Christian Krause:Eric Andersen
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
2003-01-30The original glibc sysdeps/mips/dl-machine.h source from Kazumoto Kojima wasEric Andersen
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.
2003-01-30Use correct names for dummy crti.o/crtn.o files.Miles Bader
2003-01-30Initial checkin.Miles Bader
2003-01-29Create stub crti.o and crtn.o files when UCLIBC_CTOR_DTOR is disabledEric Andersen
-Erik
2003-01-28Fix scandir64 to not free the wrong pieces of memory (which couldEric Andersen
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
2003-01-28Add a couple of testsEric Andersen
2003-01-28Stefan Allius noticed dlib_pic.o was not using XXFLAGS as it shouldEric Andersen
2003-01-28Patch from Stefan Allius to fix the build whenEric Andersen
large file support is disabled
2003-01-27Add multiple-include protection.Miles Bader
2003-01-25bahEric Andersen
2003-01-25CleanerEric Andersen
2003-01-25Fix the 'make release' targetEric Andersen
2003-01-25This seems to be needed or else apps will blow up.Eric Andersen
-Erik
2003-01-25some minor todo updatesEric Andersen
2003-01-25Move some stuff into old-newsEric Andersen
2003-01-25Update webpage for releaseEric Andersen
2003-01-25Update the changelog for releaseEric Andersen
2003-01-24Fix powerpc struct kernel_stat typesEric Andersen
2003-01-24Stick some evil casts in to make sure this works regardlessEric Andersen
of the underlying data types.