Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-06-27 | Yes... I forgot to update bits/dirent.h for the other archs. :-( | Manuel Novoa III | |
2001-06-25 | Remove simulated d_type support for getdents and the dirent struct, and use | Manuel Novoa III | |
the straight getdents syscall instead of the wrapper (which leaked memory). | |||
2001-06-25 | Add in missing syscalls.h for powerpc | Eric Andersen | |
2001-06-25 | Fixed vfork so the child doesn't trash the parents return address. | David McCullough | |
2001-06-23 | This adds in support for PIC on x86. Unfortunately, this will break | Eric Andersen | |
all arches till they add in an libc/sysdeps/linux/<arch>/bits/syscalls.h file. Sorry about there, there was no other way... -Erik | |||
2001-06-21 | Patch from Shane Nay, who noticed that these were not properly labeling | Eric Andersen | |
functions as such, thereby hosing the shared lib loader. | |||
2001-06-19 | This was violating policy and using a kernel header file... | Eric Andersen | |
-Erik | |||
2001-06-18 | This commit finishes adding support for the old m68k-coff toolchains by | Eric Andersen | |
working around a missing header file in the compiler shipped with the uCsimm and uCdimm. This should make the folk in Toronto happy, since now they can use the latest CVS version of uClibc. -Erik | |||
2001-06-17 | Add the in* and out* functions for i386. Note: the sys/io.h header for | Manuel Novoa III | |
glibc-2.2.2 actually defines static inline versions for i386, but only provides prototypes for externs for the other archs I looked at. Since uClibc shares this header amongst archs, I stashed the inline defs in bits/io_i386.h and included it when __i386__ was defined. Better solutions are most welcome, but it doesn't clutter sys/io.h too badly and now lilo and the pcmcia tools build against uClibc on i386 without modification. | |||
2001-06-15 | These are needed for powerpc to compile | Eric Andersen | |
2001-06-15 | I am very proud of myself. I managed to write a working _start for | Eric Andersen | |
x86 entirely in C -- no asm required. muahahahaha! -Erik | |||
2001-06-12 | Some sparc updates from Stanley <ngstanley@cwc.nus.edu.sg> | Eric Andersen | |
2001-06-12 | Make sure these use the local sysdep.h header file | Eric Andersen | |
2001-06-12 | Cleanup the toploevel makefile handing of shared libs. Add weak_alias | Eric Andersen | |
define, and set things up so nasty old coff toolchains can now compile things and should actually work again. -Erik | |||
2001-05-26 | These are needed for arm to compile | Eric Andersen | |
2001-05-26 | Makefile targets to symlink arch-specific headers into include/ (only | David Schleef | |
used on mipsel.) | |||
2001-05-26 | Nasty hack to get around inconsistency between dynamic linker | David Schleef | |
entry and kernel entry to crt0.o. | |||
2001-05-26 | Make powerpc compile. Needs this header... | Eric Andersen | |
2001-05-25 | Changes to make types.h more compatible with the Linux kernel. | David Schleef | |
2001-05-25 | Random change to get a log message: Previous change is to make this | David Schleef | |
header more compatible with the kernel and not with glibc. | |||
2001-05-25 | Enable mlock and friends if __UCLIBC_HAS_MMU__ is defined. util-linux | Eric Andersen | |
needs this to compile. | |||
2001-05-25 | Added powerpc-specific mmap syscall, 'cause we're special. | David Schleef | |
2001-05-25 | Add in some more GNU compatible locale stuff. I only implement the | Eric Andersen | |
C locale of course. util-linux needs this stuff to compile... | |||
2001-05-25 | Needed for libm | David Schleef | |
2001-05-25 | Add in missing capset and capget syscalls. Stub out syscalls when missing | Eric Andersen | |
rather then just omitting them... -Erik | |||
2001-05-25 | Update for the SH port from Jean-Yves Avenard <jean-yves_avenard@hp.com> | Eric Andersen | |
2001-05-22 | Copied sgidefs.h from Debian libc6 2.2.2-4 for MIPS. Should go into | David Schleef | |
the main include/ directory, but we'll hide it here for now. | |||
2001-05-22 | Header cleanups to fix compilation. Mostly a hack, pending figuring | David Schleef | |
out the best way to do some things. | |||
2001-05-22 | Copied bits/*.h from Debian MIPS libc6-dev 2.2.2-4 package. | David Schleef | |
2001-05-22 | First cut of MIPS port | David Schleef | |
2001-05-16 | Move the default ptrace.c to common, but let arches override it (such | Eric Andersen | |
as m68k which has some asm in its version). -Erik | |||
2001-05-12 | These seem to be missing also | Eric Andersen | |
2001-05-12 | This file was missing on arm | Eric Andersen | |
2001-05-12 | I'd broken powerpc crt0.o installation | Eric Andersen | |
2001-05-12 | Add missing header file for arm | Eric Andersen | |
2001-05-12 | Ok, this should finish off my massive ro-organization. The source | Eric Andersen | |
tree is less messy now (which helps), all libraries are placed into uClibc/lib when compiling, all libraries now use a consistant mechanism for being built, all libraries use a consistant naming scheme where the lib name includes the uClibc version number, which makes ldconfig happy and willing to work with us. -Erik | |||
2001-05-11 | Bring powerpc back into line so it compiles again. | Eric Andersen | |
2001-05-11 | Fix 'make clean' target | Eric Andersen | |
2001-05-08 | Quick fix to setjmp/longjmp/sigsetjmp etc to make them work. | David McCullough | |
This should really be fixed to fall into line with the other archs. | |||
2001-05-07 | Change FILENAME_MAX to be only 255. Max filename on ext2 is 255, | Eric Andersen | |
so there is no reason to allocate 4k. Change working of execvep.c per patch from Matthias Kilian <kili@outback.escape.de> so that there is not a fixed 127 byte buffer. Too easy to overflow... -Erik | |||
2001-05-04 | This patch allows powerpc to compile again. It also checks if we | Eric Andersen | |
are compiling for an arch for which uClibc has an ld.so or not, and otherwise sets things up to use the system ld.so. -Erik | |||
2001-05-04 | Initial sparc port, thanks to Mathew Bosworth <mbosworth@metaflow.com>, | Eric Andersen | |
who sent this to me a month ago and I forgot to check it in. Oops. Better late then never. -Erik | |||
2001-04-28 | Fix up a comment | Eric Andersen | |
2001-04-25 | As pointed out by Michiel Thuys <michiel.thuys@intersil.com>, this was | Eric Andersen | |
checking sizeof which was pure bloat and in many cases wrong. -Erik | |||
2001-04-24 | These are needed for arm ld.so support (not at all working yet...) | Eric Andersen | |
-Erik | |||
2001-04-23 | Always use __NR_<name>, not SYS_<name> | Eric Andersen | |
-Erik | |||
2001-04-20 | Nobody should be using the SYS_ syscall names. Use the __NR_<foo> | Eric Andersen | |
names instead. -Erik | |||
2001-04-19 | Bring sh and i386 longjmp implementations into sync | Eric Andersen | |
2001-04-19 | Add missing alias siglongjmp = longjmp; | Eric Andersen | |
-Erik | |||
2001-04-19 | Remove all the __THROW macros | Eric Andersen | |