• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

RSS
Rev. Time Author
7334cfc 2005-01-06 12:06:49 Mike Frysinger

Justin Cormack <justin@street-vision.com> writes:
Here is a small patch to add epoll support to uclibc.

The only thing I am not sure about is what needs to be done (if anything)
to make it work on 2.4/2.2 kernels (are the syscall numbers defined but
give errors when called or not?).

Tested on 2.6, though some other issues prevent more extensive testing at
the minute.

Mike Frysinger:
cleaned up patch and added checks to make sure that the syscall actually
exists, returning ENOSYS in cases where it doesn't.

a7e1456 2005-01-06 08:11:28 Mike Frysinger

fix eriks e-mail address

5db304a 2005-01-02 05:28:21 Mike Frysinger

Amir Shalem writes:

here are few patches for better compatability in ./Makefile:
cp.diff - use portable (POSIX) way to specfic --no-dereference (-d)

1b15669 2005-01-02 05:25:05 Mike Frysinger

Amir Shalem writes:

here are few patches for better compatability in ./Makefile:
make.diff - make should never called directly, change it to $(MAKE)

6c662ad 2004-12-28 04:43:31 Eric Andersen

clarify

5e31d8a 2004-12-28 04:40:58 Eric Andersen

fix typo

9039109 2004-12-28 04:28:55 Eric Andersen

Update FAQ, remove references to 'toolchain' and instead emphasize
'buildroot', which can do everything 'toolchain' could do and then
some. And is actively maintained.
-Erik

cacaa7f 2004-12-26 18:00:59 Mike Frysinger

Peter S. Mazinger: make sure the ld RELRO and NOW options are independent options

4485e5f 2004-12-26 17:57:06 Mike Frysinger

Peter S. Mazinger: use ASFLAGS when compiling asm files

b329886 2004-12-23 10:29:45 Eric Andersen

Fix thinko

d373951 2004-12-23 08:03:42 Eric Andersen

Remove the obsolete XATTR option

45eb72e 2004-12-23 07:35:31 Eric Andersen

Fix typo

9581a1b 2004-12-23 06:57:24 Eric Andersen

Make certain that the prototype for fgets_unlocked is defined

e528b69 2004-12-23 06:55:56 Eric Andersen

Cleanup for when LDSO_CACHE_SUPPORT is disabled

47a9d45 2004-12-23 06:40:45 Eric Andersen

Patch from Peter S. Mazinger:
Add pie support for mips

f8e6aa0 2004-12-23 06:34:27 Eric Andersen

Patch from Peter S. Mazinger:
Add UCLIBC_BUILD_NOEXECSTACK support.

6ae64d2 2004-12-23 06:24:32 Eric Andersen

Patch from Peter S. Mazinger:
Seperate out security features into a separate menu

433ccbd 2004-12-23 06:14:23 Eric Andersen

Patch from Peter S. Mazinger:
rename UCLIBC_PROPOLICE to UCLIBC_HAS_SSP

3d831a7 2004-12-23 06:04:52 Eric Andersen

Cleaned up patch from Peter S. Mazinger adding support for
-fstack-protector and -fno-stack-protector-all security
options

98701e8 2004-12-23 04:53:11 Eric Andersen

Patch from psm, vapier, and solar, adding xattr syscalls

e320e67 2004-12-23 04:11:07 Eric Andersen

Patch from Peter S. Mazinger:
rename UCLIBC_PIE_SUPPORT to UCLIBC_BUILD_PIE

5941632 2004-12-23 03:58:12 Eric Andersen

Patch from Peter S. Mazinger to simplify PIE handling

4a56d69 2004-12-23 03:52:12 Eric Andersen

Patch from Peter S. Mazinger to consistantly use "ASFLAGS"
as the flags for all calls to 'as'

05d9958 2004-12-21 17:35:58 Eric Andersen

Add support for the Analog Devices Blackfin mmuless processor

f6cc754 2004-12-21 03:23:24 Ned Ludd

- added LD_TRACE_LOADED_OBJECTS to be stripped from the env on suid exec

537a24b 2004-12-21 03:16:49 Ned Ludd

- dont use dos format

d503d1d 2004-12-20 09:10:51 Ned Ludd

- Added support for 13 new syscalls to allow more things to compile when using uClibc. mincore() and the ones for Extended Attributes setxattr(), lsetxattr(), fsetxattr(), getxattr(), lgetxattr(), fgetxattr(), listxattr(), llistxattr(), flistxattr(), removexattr(), lremovexattr(), fremovexattr() which are optional.

1c8d7ee 2004-12-17 01:28:34 Eric Andersen

On Thu Dec 16, 2004 at 03:49:31PM +0100, Johan Adolfsson wrote:
> What's the correct way of calling llseek/_llseek?
> The manpage I have indicates _llseek and thats what the version of
> util-linux
> I tried use as well so compiling for uClibc fails.
> Would the following patch fix it or is it the apps that needs fixing?

ece14c1 2004-12-14 05:33:27 Eric Andersen

Remove whitespace

a80a5b7 2004-12-12 14:02:43 Eric Andersen

Patch from Paul Brook:

The Arm crt0.S contains non-PIC code for locating _init and _fini sections.
This caused problems on my uclinux system when static constructors were
enabled.

The attached patch implements a PIC version of this code.

Paul