summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixes from M. R. Brown <mrbrown@0xd6.org> to fixup some littleEric Andersen2002-01-024-4/+10
| | | | compile nits with the SH architecture, and support SH4,
* Cope with all variants of 'gcc -dumpmachine' outputEric Andersen2002-01-021-1/+1
|
* Patch to add rcmd support, from Stefan Soucek, which I'd longEric Andersen2002-01-022-1/+670
| | | | | ago forgotten. Oops. Needed some minor scrubbing for bitrot, -Erik
* Fix a few things I'd missed when using old (2.0.x) kernels.Eric Andersen2002-01-024-55/+13
| | | | -Erik
* Oops. Disable threading.Eric Andersen2002-01-021-2/+2
| | | | -Erik
* Sync SH header files with glibc 2.2.4, so it can actually have a chanceEric Andersen2002-01-0270-965/+1890
| | | | | (at least in theory) of working. -Erik
* Once again, rework the signal handling to be even more correct. We noEric Andersen2002-01-0228-406/+804
| | | | | | | | | longer segfault when running test/signal/sigchld.c, which exposed a bit of a rats nest. The problem ended up being a erroneous syscall defination, but in the process of finding that out, I scrubbed things up nicely and adapted things to use the rt_ signals if they are available. This now passes all the signal tests. -Erik
* Take the shorcut version, which is good enough forEric Andersen2002-01-021-2/+2
| | | | | nearly all normal usage. -Erik
* Fix usleep to work correctly. Fix sleep behavior in theEric Andersen2002-01-023-16/+113
| | | | | presence of SIGCHLD. -Erik
* Turn off the useless personality crapEric Andersen2002-01-021-0/+2
|
* Silly spelling errorEric Andersen2002-01-021-1/+1
|
* New and improved!Eric Andersen2002-01-021-21/+19
|
* Cleaned up test that doesn't need manual intervention.Eric Andersen2002-01-021-4/+27
| | | | -Erik
* Add a test for a sigchld bugEric Andersen2002-01-023-1/+65
|
* Support arch specific optimizations (examples shown for x86 and ARM).Eric Andersen2002-01-0111-89/+39
| | | | | Autodetect target architecture by asking the compiler. -Erik
* Change all 'cd <foo>; bar' constructs to 'cd <foo> && bar' forEric Andersen2002-01-0113-27/+27
| | | | | proper error checking -Erik
* Change 'cd <foo> ; bar' to 'cd <foo> && bar' for proper error checkingEric Andersen2002-01-011-1/+1
|
* Remove erroneous allow-shlib-undefinedEric Andersen2002-01-011-2/+2
|
* A little script to strip out unused portions of shared libs.David Schleef2001-12-291-0/+72
|
* Add in the missing get_kernel_syms syscallEric Andersen2001-12-291-1/+5
|
* More Updates.Eric Andersen2001-12-221-0/+239
|
* Add udhcpEric Andersen2001-12-221-5/+8
|
* More scrubbingEric Andersen2001-12-221-2/+2
|
* Sigh. More grammar fixesEric Andersen2001-12-221-4/+5
|
* GrammarEric Andersen2001-12-221-1/+1
|
* Text updateEric Andersen2001-12-221-18/+13
|
* update website for releaseEric Andersen2001-12-221-143/+33
|
* Support older link nameEric Andersen2001-12-221-0/+1
|
* Bump version number to 0.980_9_8Eric Andersen2001-12-221-1/+1
| | | | -Erik
* Update some URLsEric Andersen2001-12-221-4/+4
|
* A very large patch from Miles Bader <miles@lsi.nec.co.jp> to bringEric Andersen2001-12-2167-1086/+1742
| | | | | v850 back into working condition. Thanks Miles! -Erik
* Miles Bader <miles@lsi.nec.co.jp> noted that I'd broken settingEric Andersen2001-12-211-4/+4
| | | | | OPTIMIZATION from the Config file. Revert that. -Erik
* Oops. Revert debugging definesEric Andersen2001-12-211-4/+4
|
* Fix snapshot linkEric Andersen2001-12-201-1/+1
|
* Forgot thisEric Andersen2001-12-201-1/+7
|
* Update the docs and websiteEric Andersen2001-12-204-270/+515
|
* Add the website into CVSEric Andersen2001-12-2011-0/+868
|
* Ignore tmp dirEric Andersen2001-12-201-0/+1
|
* Fixup autogeneration of bits/syscalls.hEric Andersen2001-12-201-0/+1
|
* Use tar instead of cp -LR for make install, since older GNU cpEric Andersen2001-12-201-1/+2
| | | | | (i.e. RedHat 6.2) don't support -LR -Erik
* Steven Carr noticed that uClibc's inet_aton() is stricter then inEric Andersen2001-12-201-1/+7
| | | | | | | | glibc, since no trailing blanks was permitted, such that inet_aton("192.168.1.1 ",&value); would work with glibc, and fail with uClibc. This brings uClibc's inet_aton() behavior into sync with glibc's behavior. -Erik
* Oops. I accidentally commited some experimental test codeEric Andersen2001-12-201-21/+3
| | | | | (which was broken) yesterday. Revert that bit. -Erik
* Update my email address. I am no longer andersen@lineo.comEric Andersen2001-12-19115-182/+679
|
* Use the asm version by default on x86. Tag _start as a function.Eric Andersen2001-12-192-3/+6
|
* Add basename and dirname. Write memrchr.Eric Andersen2001-12-195-2/+142
| | | | -Erik
* merged the two startup files so that uClinux people always get the correctDavid McCullough2001-12-193-70/+31
| | | | | arg processing whether they are using PIC or not, and vice-versa for the MMU folks.
* patch from Jari Korva <jpkorva@iki.fi>:Eric Andersen2001-12-072-7/+12
| | | | | | | | - fixes endianness bug in gethostbyaddr() (i386 worked fine, while m68k didn't: 192.168.160.162 was queried with 192.168.160.162.in-addr.arpa while it should have been 162.160.168.192.ip-addr.arpa) - contains missing pieces from my previous getnameinfo() patch: now it actually compiles!
* Add in an ARCH_CFLAGS placeholder so scripts can mod it.David McCullough2001-12-051-0/+4
|
* Hack the 68000 last ditch abort to work for all 68000 targets.David McCullough2001-12-051-1/+1
|
* Update TODO list a bitEric Andersen2001-11-301-17/+20
|