diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-02 12:06:01 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-02 12:06:01 +0000 |
commit | 822a5d2922336680f23a68cf203a3264c8b4d152 (patch) | |
tree | b03bfa6f827e11f07edf5a5b8d761a5efa27a5ec /libc | |
parent | 18c06fe19e02a05756fb1727612afbd2a17f15e2 (diff) |
Turn off the useless personality crap
Diffstat (limited to 'libc')
-rw-r--r-- | libc/sysdeps/linux/i386/crt0.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/i386/crt0.S b/libc/sysdeps/linux/i386/crt0.S index 6b4d424ef..ff5a100d5 100644 --- a/libc/sysdeps/linux/i386/crt0.S +++ b/libc/sysdeps/linux/i386/crt0.S @@ -67,10 +67,12 @@ _start: pushl %ebx /* Argument pointer */ pushl %ecx /* And the argument count */ +#if 0 /* Make sure we are not using iBCS2 personality. (i.e. force linux). */ movl $136,%eax sub %ebx,%ebx int $0x80 +#endif /* Ok, now run uClibc's main() -- shouldn't return */ call __uClibc_main |