Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Minor makefile tweaks | Eric Andersen | 2003-11-04 | 1 | -1/+3 | |
| | ||||||
* | Begin preparations for the next release | Eric Andersen | 2003-11-03 | 1 | -1/+1 | |
| | ||||||
* | Remove warning that apparently is not needed for e1 | Eric Andersen | 2003-11-03 | 1 | -1/+0 | |
| | ||||||
* | Updated to match the other architectures. Fixes problem with "fcntl: | Tobias Anderberg | 2003-11-03 | 1 | -29/+67 | |
| | | | | function not implemented". | |||||
* | Additional passwd and group tests | Eric Andersen | 2003-11-02 | 5 | -46/+157 | |
| | ||||||
* | Implement getgrent_r. Rework getpwent and getgrent a bit further | Eric Andersen | 2003-11-02 | 2 | -24/+38 | |
| | ||||||
* | Both setegid and seteuid were implemented suboptimally, such that | Eric Andersen | 2003-11-02 | 2 | -3/+42 | |
| | | | | | we were unable to switch back to the original saved group/user ID. -Erik | |||||
* | Add some missing prototypes | Eric Andersen | 2003-11-02 | 1 | -1/+19 | |
| | ||||||
* | Be extra careful to check uid and gid converstions to kernel types | Eric Andersen | 2003-11-02 | 1 | -17/+74 | |
| | ||||||
* | Make the syscall locally, avoid an extern | Eric Andersen | 2003-11-02 | 1 | -2/+6 | |
| | ||||||
* | If realloc failed, we'd lose the pointer to the exit function table. | Manuel Novoa III | 2003-11-02 | 1 | -6/+8 | |
| | ||||||
* | Hopefully fix the struct tm extension problem once and for all. | Manuel Novoa III | 2003-11-02 | 2 | -25/+67 | |
| | | | | Also fix a dst-related bug which caused the use of uninitialized data. | |||||
* | Add some additional pwd/grp tests, to prevent me from | Eric Andersen | 2003-11-01 | 4 | -1/+158 | |
| | | | | | breaking obvious things in the future. -Erik | |||||
* | Fix things (properly) to open /etc/passd and /etc/group if | Eric Andersen | 2003-11-01 | 4 | -24/+36 | |
| | | | | | | | they have not yet been opened. My last try was completely and embarrasingly broken. -Erik | |||||
* | this script is no longer used, and can be removed. | Eric Andersen | 2003-11-01 | 1 | -84/+0 | |
| | ||||||
* | Fix Erik's typo. | Manuel Novoa III | 2003-10-31 | 1 | -1/+1 | |
| | ||||||
* | Some more soft float fixes... for arm in particular (libfloat). | Manuel Novoa III | 2003-10-31 | 7 | -43/+14 | |
| | | | | | | Remove the ADD_LIBGCC_FUNCTIONS option and do things the right way. Either we have a shared libgcc available, or the libgcc routines aren't PIC and don't belong in the shared libc anyway. | |||||
* | getpwent(), getpwent_r(), and getgrent(), getgrent_r() would all | Eric Andersen | 2003-10-31 | 3 | -1/+8 | |
| | | | | | | fail if you had not previously called setpwent() or setgrent() respectively. Oops. My bad. -Erik | |||||
* | gdb wants to dlopen "libthread_db.so.1", so be sure to assign | Eric Andersen | 2003-10-31 | 1 | -1/+1 | |
| | | | | the correct soname | |||||
* | properly deal with soft-float when profiling as well | Eric Andersen | 2003-10-25 | 4 | -0/+12 | |
| | ||||||
* | Add -msoft-float to SAFECFLAGS when necessary. | Manuel Novoa III | 2003-10-25 | 1 | -0/+3 | |
| | ||||||
* | Sigh. It seems some stupid programs expect this... | Eric Andersen | 2003-10-24 | 1 | -0/+1 | |
| | ||||||
* | Disable optimizations with debugging | Eric Andersen | 2003-10-24 | 1 | -2/+2 | |
| | ||||||
* | better tuning for xscale that copes with generally available toolchains | Eric Andersen | 2003-10-24 | 1 | -2/+2 | |
| | ||||||
* | Peter Kjellerstedt writes: | Eric Andersen | 2003-10-23 | 1 | -68/+65 | |
| | | | | | | | | | | | | | | | The attached patch performs a clean up of extra/gcc-uClibc/gcc-uClibc.c: * Use NULL for pointers and '\0' for characters; not the opposite... * Fixed an (assumed) segv if --uclibc-cc was used. * Skip the argument to -x so it isn't considered to be a source file. * Simplified the loop in xstrcat(). * A little white space clean up. //Peter | |||||
* | Peter S. Mazinger pointed out that I missed a spot. I should | Eric Andersen | 2003-10-22 | 1 | -1/+3 | |
| | | | | stop applying patches by hand... | |||||
* | Per suggestion and patch from Ken Staton, emulates poll using | Eric Andersen | 2003-10-22 | 2 | -1/+196 | |
| | | | | select for older 2.0 kernels where poll is missing. | |||||
* | Atsushi Nemoto writes: | Eric Andersen | 2003-10-22 | 1 | -0/+2 | |
| | | | | | uClibc's libm has isinf/isinff, isnan/isnanf but not finite/finitef. Here is a patch. | |||||
* | It seems we need to also define SI_LOAD_SHIFT since that was | Eric Andersen | 2003-10-22 | 1 | -0/+1 | |
| | | | | also exported by the Linux kernel.h header that we do not include. | |||||
* | Those crazy binutils folks changed their abi. Add this so older | Eric Andersen | 2003-10-21 | 1 | -0/+5 | |
| | | | | apps can cope gracefully. | |||||
* | Doh! In include/bits/uClibc_config.h when we define things, we appropriately | Eric Andersen | 2003-10-21 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | prepend "__". Unfortunately, when we #undef things, we do not prepend the "__". This results in collateral damage to unsuspecting applications as we undefine random unrelated macros. Oops. For example, when compiling xfree86, libGLcore.a defines MALLOC for its own usage. But include/bits/uClibc_config.h then does an #undef MALLOC #define __MALLOC_930716__ 1 which inadvertantly trashes the define from libGLcore.... Ouch. The autogenerated include/bits/uClibc_config.h should instead have contained: #undef __MALLOC__ #define __MALLOC_930716__ 1 This patch makes that happen. | |||||
* | Fix a stupid bug that caused uClibc to never provide the correct | Eric Andersen | 2003-10-20 | 2 | -1/+2 | |
| | | | | | | fpu_control.h header file, since the correct arch specific one was always later overwritten by the generic one. oops. -Erik | |||||
* | Patch from Peter S. Mazinger: | Eric Andersen | 2003-10-20 | 1 | -1/+1 | |
| | | | | patch to allow building uClibc with busybox's chmod | |||||
* | Merge some newer/updated bits from the glibc elf.h | Eric Andersen | 2003-10-20 | 1 | -106/+226 | |
| | ||||||
* | We were failing to properly set h_errno on success, which could | Eric Andersen | 2003-10-19 | 1 | -0/+3 | |
| | | | | | | | cause gethostbyaddr_r to keep looping allocating more and more memory each time till alloca finally caused a segfault. Ugh. This fixes that as well... -Erik | |||||
* | more install changes | Eric Andersen | 2003-10-18 | 1 | -19/+19 | |
| | ||||||
* | Do not install the uClibc wrapper toolchain by default. Make | Eric Andersen | 2003-10-18 | 1 | -1/+1 | |
| | | | | people ask for it explicitly. | |||||
* | the runtime should not install a /bin dir | Eric Andersen | 2003-10-18 | 1 | -1/+0 | |
| | ||||||
* | Add a new RUNTIME_PREFIX | Eric Andersen | 2003-10-18 | 2 | -16/+19 | |
| | ||||||
* | Peter Kjellerstedt writes: | Eric Andersen | 2003-10-18 | 25 | -83/+69 | |
| | | | | | | | | | | ln.patch: * Define $(LN) as ln in Rules.mak. * Change all occurrences of ln into $(LN). * Change all constructs like (cd path && ln -sf foo/file file) into $(LN) -sf foo/file path/file. The latter construct is already used in a number of places so it should not be an additional compatibility problem. | |||||
* | Peter Kjellerstedt writes: | Eric Andersen | 2003-10-18 | 96 | -194/+188 | |
| | | | | | | | rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM). | |||||
* | Peter Kjellerstedt writes: | Eric Andersen | 2003-10-18 | 14 | -95/+97 | |
| | | | | | | | | | install.patch: * Define $(INSTALL) as install in Rules.mak. * Change all occurrences of install into $(INSTALL). * Change all occurrences of mkdir -p into $(INSTALL) -d. install -d is already used in a number of places so this should not be an additional compatibility problem. | |||||
* | Implement putgrent to make Peter S. Mazing happy | Eric Andersen | 2003-10-18 | 2 | -1/+57 | |
| | ||||||
* | Doh!!! | Eric Andersen | 2003-10-17 | 1 | -1/+1 | |
| | ||||||
* | Point people to the kernel.org mirrors for downloading the dev | Eric Andersen | 2003-10-17 | 3 | -30/+31 | |
| | | | | systems to take some load off my server | |||||
* | Do not set errno when they asked for size 0 | Eric Andersen | 2003-10-16 | 1 | -1/+1 | |
| | ||||||
* | Code formatting cleanup. | Miles Bader | 2003-10-16 | 1 | -5/+6 | |
| | ||||||
* | Don't set errno if for zero SIZE returns. | Miles Bader | 2003-10-16 | 1 | -11/+14 | |
| | | | | Code formatting cleanup. | |||||
* | More detail on the use of MALLOC_DEBUG | Eric Andersen | 2003-10-16 | 1 | -4/+12 | |
| | ||||||
* | Updated cris configuration; added support for %m. | Tobias Anderberg | 2003-10-15 | 1 | -1/+1 | |
| |