summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* updates to the uClinux-dist romfs and uClinux shared library targets.David McCullough2003-02-172-3/+48
|
* Use a define for the path to /etc/TZDavid McCullough2003-02-172-1/+3
|
* Using -g when doing the initfini compilation breaks the SH4 case prettyDavid McCullough2003-02-171-0/+5
| | | | | badly. I have removed -g for all platforms as I suspect no one wants it for the initfini creation process.
* If floating point was enabled, setjmp would write to memory well past theDavid McCullough2003-02-171-2/+3
| | | | end of the buffer.
* Fixup powerpc syscalls to eliminate warnings with gcc-3.2, and fixEric Andersen2003-02-164-26/+25
| | | | some other minor warnings.
* Add missing ';'s so powerpc will compileEric Andersen2003-02-151-2/+2
|
* Don't just tune, use -march which implies -mcpu as wellEric Andersen2003-02-151-3/+3
|
* Fix a _ton_ of system call user type/kernel type translationEric Andersen2003-02-153-109/+301
| | | | | problems, causing user space to get scrambled hosed up results. -Erik
* Update CVS to Debian 0.9.18-1 packageDavid Schleef2003-02-1210-107/+205
|
* Oops. Point to .18 not .17Eric Andersen2003-02-121-5/+5
|
* Move dev system commentEric Andersen2003-02-121-16/+16
|
* Update to note dev systemEric Andersen2003-02-121-10/+9
|
* Minor update regarding binutils0_9_18Eric Andersen2003-02-121-3/+3
|
* Some minor doc updatesEric Andersen2003-02-122-55/+22
|
* Remove now obsolete note about direntEric Andersen2003-02-121-4/+0
|
* update website for releaseEric Andersen2003-02-122-30/+59
|
* Eliminate a needless externEric Andersen2003-02-122-50/+41
|
* Update changelogEric Andersen2003-02-122-747/+182
|
* Bump version numberEric Andersen2003-02-121-1/+1
|
* Somewhat pointless naming pedantryEric Andersen2003-02-121-16/+16
|
* Use http not ftpEric Andersen2003-02-121-12/+9
|
* Per suggestion from Peter Lassahn, fix the install_dev targetEric Andersen2003-02-111-0/+1
|
* We need to have the size of struct dirent equal to the size of struct dirent64Eric Andersen2003-02-103-18/+12
| | | | | | | 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
* A few minor little changesEric Andersen2003-02-102-8/+7
|
* Mention the dev systems have been updatedEric Andersen2003-02-101-0/+15
|
* Don't use -O0 when DODEBUG is turned on.Miles Bader2003-02-101-4/+0
|
* Pass CHILD_STACK argument to system call (it possibly worked before `byMiles Bader2003-02-101-3/+5
| | | | accident', as the function argument is in the same register).
* Fix a warningEric Andersen2003-02-091-52/+49
|
* Fix a compile errorEric Andersen2003-02-091-1/+0
|
* Fixup handling of the .note.ABI-tag section so that it is ARM only,Eric Andersen2003-02-084-88/+15
| | | | | | and so it actually works as intended allowing binaries on ARM to be debugged. -Erik
* mention penguruEric Andersen2003-02-051-0/+3
|
* add brk for m68kDavid McCullough2003-02-052-1/+31
| | | | | NOTE: on uClinux-2.[45] kernels, brk works but is limited to slack space in the memory allocated to the process.
* 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
|