summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Revert change 1.26, which breaks everything. :-(Eric Andersen2003-11-061-2/+3
|
* Sigh... I wasn't checking if the gid field in a group line actuallyManuel Novoa III2003-11-061-3/+5
| | | | contained a digit. Also adjust a comment.
* s,(RUNTIME_PREFIX)/,(RUNTIME_PREFIX),gEric Andersen2003-11-061-9/+9
|
* s,(DEVEL_PREFIX)/,(DEVEL_PREFIX),gEric Andersen2003-11-061-23/+23
|
* Add a utility macro.Manuel Novoa III2003-11-061-0/+4
|
* Oops... don't need recursive mutexes.Manuel Novoa III2003-11-061-3/+3
|
* Rewrite the pwd.h, grp.h, and shadow.h functions (except lckpwdf/ulckpwdf).Manuel Novoa III2003-11-0625-1865/+1194
|
* Add in aliases provided by the non arch specific implementationsEric Andersen2003-11-061-0/+6
|
* George Thanos writes:Eric Andersen2003-11-063-4/+4
| | | | | | | | | | | | | | | | | Dear Erik, We downloded uClibc lattest version from the CVS. Still there are some minor problems with extra/Configs/Config.e1 You have actually set ARCH_HAS_C_SYMBOL_PREFIX to NO which is not correct for our architecture. Please apply the patch that will fix the problem. Best Regards, - George P.S. Patch also removes some irritating comments we have added in the past.
* A few debugging cleanupsEric Andersen2003-11-061-6/+14
|
* The curse of cut-n-pasteEric Andersen2003-11-062-12/+2
|
* Add some initial x86 string optimizations. These make no attempt to use niftyEric Andersen2003-11-063-2/+385
| | | | | | | | | | | things like mmx/3dnow/etc. These are not inline, and will therefore not be as fast as modifying the headers to use inlines (and cannot therefore do tricky things when dealing with const memory). But they should (I hope!) be faster than their generic equivalents.... More importantly, these should provide a good example for others to follow when adding arch specific optimizations. -Erik
* Remove erroneous trailing semicolon.Manuel Novoa III2003-11-051-1/+1
|
* Fix a misnamed arrayEric Andersen2003-11-051-7/+1
|
* tiny cleanupEric Andersen2003-11-051-3/+2
|
* Rework the powerpc lib loader to better match the other architecturesEric Andersen2003-11-051-331/+328
|
* Rip the guts out of the dynamically generated sysconf.c, and live with a simpleEric Andersen2003-11-053-221/+4
| | | | | static version. This will need further work later on, but should do the job for the time being,
* last but certinaly not least, kill off initfini.cEric Andersen2003-11-051-172/+0
|
* Add quick hacks to create fake crti.o and crtn.o files. These architecturesEric Andersen2003-11-054-4/+116
| | | | | | need to be fixed properly. I tried, but I was unable to build a cross toolchain for each of these (using stock binutils and gcc) so it is someone else's problem to fix them now.
* Kill initfini.awkEric Andersen2003-11-053-175/+1
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+102
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+73
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+77
|
* v850 appers to be little endian onlyEric Andersen2003-11-051-0/+1
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+99
|
* duh. the alpha has an fpuEric Andersen2003-11-051-1/+1
|
* Yet more messing with selecting sane default configsEric Andersen2003-11-059-2/+21
|
* Yet more config system updatesEric Andersen2003-11-0510-2/+18
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+79
|
* Fix a buglet that shows up on powerpcEric Andersen2003-11-052-4/+4
|
* m68k is always big endian afaikEric Andersen2003-11-051-0/+1
|
* powerpc is always big endianEric Andersen2003-11-051-0/+1
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+89
|
* Patch from Peter S. Mazinger to hunt for awk in additionalEric Andersen2003-11-051-1/+4
| | | | places....
* Arthur Shipkowski, art ! videon-central ! com, writes:Eric Andersen2003-11-052-1/+28
| | | | | | | | | | | | | | | | | | | | | | I've noticed a few people have posted over the last year about problems compiling programs that use vfork when pthreads are involved. Some detective work turned up that ptfork.c aliases vfork to fork and then tries to call the original fork as __libc_fork. This patch removes the aliasing when there is no MMU present, and uses the same call semantics to call __libc_vfork. I then added a symbol to the m68k vfork.S to allow vfork to be called as __libc_vfork. The same bug exists in the uClibc CVS, and with a possible tweak this patch should go through there as well. Obviously, all other platforms need __libc_vfork as a workable means to call vfork in order for this to work for them. Let me know if there are any problems with this patch. Art Shipkowski Videon Central Software Engineer (814)235-1111 x307
* Force cris to be little endian. Afaik, there is no bigEric Andersen2003-11-051-0/+1
| | | | endian cris architecture.
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+113
|
* OopsEric Andersen2003-11-051-3/+1
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+122
|
* Do not provide a default for endianness. This needs to be selectedEric Andersen2003-11-051-1/+0
| | | | on a per-arch basis, or left to the user to choose.
* Kill off "mipsel" and just use "mips"Eric Andersen2003-11-055-21/+5
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-056-2/+157
|
* Begin the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+100
|
* As Peter S. Mazinger has pointed out, the config system wantsEric Andersen2003-11-042-1/+3
| | | | | some defaults. So give it some empty defaults and let people select their own options.
* Peter S. Mazinger writes:Eric Andersen2003-11-041-1/+1
| | | | | | | | | Hello! The latest changes document ldd in RUNTIME_PREFIX/bin, but it is installed in RUNTIME_PREFIX/usr/bin Peter
* Naming things this way will be much easier to deal withEric Andersen2003-11-041-29/+29
|
* Kill off the gcc wrapper. It has served us well, but there comes a time whenEric Andersen2003-11-043-758/+0
| | | | | | | 90% of correct is simply not good enough. Some people will not be very happy about the decision to kill the wrapper toolchain. Sorry, but a real toolchain is the One True Way(tm). -Erik
* Rework the config system. Better utilize the Kconfig languageEric Andersen2003-11-0445-1441/+377
| | | | | which should simplify enabling arbitrary architectures. -Erik
* minor cleanupEric Andersen2003-11-047-15/+15
|
* Minor cleanupEric Andersen2003-11-041-2/+2
|