summaryrefslogtreecommitdiffstats
path: root/extra
Commit message (Collapse)AuthorAgeFilesLines
...
* - linuxthreads and linuxthreads.old need nanosleep()Bernhard Reutner-Fischer2008-06-051-0/+2
|
* - adds several config-options to allow for turning off certain featuresBernhard Reutner-Fischer2008-06-031-5/+277
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | like o UCLIBC_HAS_GNU_ERROR o UCLIBC_HAS_BSD_ERR o UCLIBC_HAS_PTY o UCLIBC_HAS_GETPT (1) o UCLIBC_SYSCALL_STUBS o UCLIBC_SYSCALL_STUB_WARNING o UCLIBC_LINUX_SPECIFIC (2) o UCLIBC_BSD_SPECIFIC (3) o UCLIBC_NTP_LEGACY (4) o UCLIBC_SV4_DEPRECATED (5) o UCLIBC_HAVE_REALTIME (6) o UCLIBC_HAVE_ADVANCED_REALTIME (7) o UCLIBC_HAVE_EPOLL (8) o UCLIBC_HAVE_XATTR (9) o UCLIBC_HAVE_PROFILING (10) (1) make non-standard getpt optional and implement standard posix_openpt (2) fstatfs(), inotify_*(), ioperm(), iopl(), madvise(), modify_ldt(), personality() ppoll(), setresuid() (3) mincore(), getdomainname(), setdomainname() (4) ntp_adjtime(), ntp_gettime() aliases (5) ustat() [use statfs(2) in your code instead] (6) All marked as "(REALTIME)" in SUSv3 (7) All marked as "(ADVANCED REALTIME)" in SUSv3 (8) epoll_create(), epoll_ctl(), epoll_wait() (9) all Extended Attributes (10) helpers for gcc's -finstrument-functions - Fixes _dl_exit() - Implements sleep(3) for !UCLIBC_HAVE_REALTIME - Implements usleep(3) for !UCLIBC_HAVE_REALTIME - adds #warning about incorrect posix_fadvise{,64}() - removes unused and unwanted uselib() Net outcome is that an allnoconfig with HAVE_SHARED is now about 88k instead of formerly 130k.
* Rename HAVE_NO_SHARED to ARCH_HAS_NO_SHARED, otherwise it's too confusingDenis Vlasenko2008-06-023-5/+5
| | | | | with HAVE_SHARED
* - default kernel-modules funcs to on.Bernhard Reutner-Fischer2008-05-311-4/+5
|
* Makefile.kconfig: whitespace fixDenis Vlasenko2008-05-311-3/+3
| | | | | top-level Makefile.in: add TODO
* Fix build failure due to missing 'smallint' definitionCarmelo Amoroso2008-05-272-2/+2
| | | | | | These are source files built on the host. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* - Wrap overlong comment-lines. No object-code changesBernhard Reutner-Fischer2008-05-211-4/+6
|
* - my manpage sais that init_module, create_module, query_module, delete_moduleBernhard Reutner-Fischer2008-05-211-0/+9
| | | | were removed in linux-2.6
* Introduce and use small[u]int type. Changes in size:Denis Vlasenko2008-05-202-2/+2
| | | | | | | | | | | | | | - 79 0 28 107 6b libc/inet/rpc/create_xid.o + 76 0 25 101 65 libc/inet/rpc/create_xid.o - 126 0 4 130 82 libc/misc/assert/__assert.o + 123 0 1 124 7c libc/misc/assert/__assert.o - 648 4 24 676 2a4 libc/misc/internals/__uClibc_main.o + 645 4 21 670 29e libc/misc/internals/__uClibc_main.o - 230 0 4 234 ea libc/stdlib/abort.o + 216 0 1 217 d9 libc/stdlib/abort.o - 129 0 4 133 85 libc/termios/tcgetsid.o + 126 0 1 127 7f libc/termios/tcgetsid.o
* Added a bounch of locale fixes.Carmelo Amoroso2008-05-191-1/+1
| | | | | | | | | | | | | | | | | * extra/locale/gen_wc8bit.c: use strrchr to parse locale name to handle the case in which it contains a '.' character like ANSI_X3.4-1968 * include/locale.h: use __UCLIBC_HAS_XLOCALE__ to control inclusion of xlocale.h only * libc/misc/ctype/ctype.c: add missing weak_alias for __tolower_l and __toupper_l * libc/misc/locale/locale.c: use strcasecmp (case insensitive) for utf-8 locale name. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* fix "make install_kernel_headers" to not create asm-genericDenis Vlasenko2008-05-091-7/+11
| | | | | for 2.4 kernels.
* Split kernel headers installation from "make install_headers".Denis Vlasenko2008-05-072-39/+70
| | | | | It is "make install_kernel_headers" now.
* - indentBernhard Reutner-Fischer2008-05-021-181/+177
|
* Added implementation for 'locale' command.Carmelo Amoroso2008-05-022-0/+823
| | | | Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com>
* install_headers: do not exit if unifdef "fails", it's okDenis Vlasenko2008-05-011-1/+4
|
* install_headers: properly quote thingsDenis Vlasenko2008-04-301-3/+4
|
* install_headers.sh: detect a case when kernel headers are alreadyDenis Vlasenko2008-04-301-20/+26
| | | | | installed in target dir, and dont try to copy them again
* build system: improve install_headers.Denis Vlasenko2008-04-272-0/+1091
| | | | | | | | | | | | | Now it uses dedicated script instead of inline makefile commands, which helps readability. It also installs asm[-generic] and linux subdirs from kernel headers (previously it had to be done separately). Lastly, it passes each uclibc header thru unifdef, which strips #ifdef UCLIBC_INTERNAL conditional from headers. Currently it's a no-op (no such #ifders in tree). The plan is to have libc_hidden_proto(foo) migrated to headers and guard them by these #ifdefs.
* Fix some sh4 specific entriesCarmelo Amoroso2008-04-251-0/+1
| | | | Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Fix whitespace damage in top level Config.in.Hans-Christian Egtvedt2008-04-241-14/+14
|
* Fix whitespace damage in Config.avr32.Hans-Christian Egtvedt2008-04-161-13/+13
|
* Paul Brook writes:Bernhard Reutner-Fischer2008-03-261-0/+10
| | | | | | | | | | | | | | | The attached patch adds support for compiling arm uClibc as pure Thumb code. This is needed because some recent ARM codes do not implement traditional ARM mode. Specifically: * Cortex-M1 - An extremely minimal FPGA based core that only implements Thumb-1 (aka ARMv6-M). * Cortex-M3 - A Thumb-2 only ARMv7-M core. Most of uClibc already builds in Thumb mode, all that is left are a handful of assembly bits. Tested on arm-uclinuxeabi.
* Remove extra file separatorCarmelo Amoroso2008-03-161-1/+1
|
* - wrap superlong linesBernhard Reutner-Fischer2008-01-191-9/+10
|
* - add C99 floating point environment, rounding and exception handling functionsBernhard Reutner-Fischer2008-01-191-0/+9
| | | | for i386. UCLIBC_HAS_FENV
* - remove unused fileBernhard Reutner-Fischer2008-01-171-2/+0
|
* Chris Zankel writes:Mike Frysinger2008-01-052-0/+19
| | | | | | | | | | | | | | | | | | The following patches add support for the Xtensa processor architecture to uClibc. They are based on a recent SVN checkout (12/05/2007). The first patch (attached to this post) adds Xtensa support to various shared configuration and make files. The following patches then include the Xtensa specific files and directories. I welcome any feedback and would appreciate it if you could include the patches into the mainline tree. I am certainly committed to maintain the port. Bob Wilson was kind enough to review the patches. Some notes about the architecture: Xtensa is a configurable and extensible processor architecture developed by Tensilica. For more information, please visit: www.linux-xtensa.org.
* not everyone is a ninja: explicitly state that people should convert from ↵Mike Frysinger2008-01-051-0/+2
| | | | sys_errlist[] to strerror()
* zen in #938 writes:Mike Frysinger2008-01-051-61/+31
| | | | | | | | I had occasion to look at the uClibc script "getent" and felt compelled to clean out the cargo-cult programming style. I believe that this version is clearer, and I've added some minor features while I was in there: * usage clause, if no arguments or "--help" requested * original version appears to have been intending to "exit 2" on failure to match, but didn't * basic, probably good enough, support for ethers and netgroups * faster ;-) [as if that matters for this script]
* Added AVR32 support to uClibc. Signed-off-by: Hans-Christian Egtvedt ↵Carmelo Amoroso2007-11-163-0/+39
| | | | <hcegtvedt@atmel.com>
* Fix build system to generate locale data instead of using pregenerated onesCarmelo Amoroso2007-11-091-1/+3
|
* Added support for GNU hash style into dynamic linkerCarmelo Amoroso2007-11-071-0/+15
|
* - fix order of link-flagsBernhard Reutner-Fischer2007-10-241-2/+2
| | | | | | | On cygwin one has to pass make menuconfig HOST_LOADLIBES="-lcurses -lintl" otherwise just curses is linked in and some symbols that live in intl are unresolved. Closes #1554 and possibly a couple of other reports.
* - spelling fixBernhard Reutner-Fischer2007-09-201-2/+2
|
* bug 1310: drop hidden aliases to data since some arches crap with this due ↵Mike Frysinger2007-09-151-0/+1
| | | | to copy relocs
* fix from Kevin Day to make sure we use strchr() rather than index()Mike Frysinger2007-09-151-2/+2
|
* use POSIX -eq rather than bash == #1360Mike Frysinger2007-05-241-1/+1
|
* - shrink resolver codeBernhard Reutner-Fischer2007-04-171-0/+9
|
* add a basic .depend target to better catch updates in source filesMike Frysinger2007-04-171-0/+4
|
* - doesn't make sense to impose a limit that is too narrow. 12 ought to be fine..Bernhard Reutner-Fischer2007-04-141-1/+1
|
* Patch by Ricard Wanderlof <ricardw at axis dot com>:Peter Kjellerstedt2007-04-131-0/+24
| | | | | | * Add configurable buffer sizes for getpwnam() and getgrnam(). The default buffer size is, as before, 256 (glibc seems to use 1024 by default).
* - add arm1176 optionsBernhard Reutner-Fischer2007-03-201-0/+8
|
* fix typo pointed out by Al StoneMike Frysinger2007-03-181-1/+1
|
* Have Makefile.in call conf-header.sh instead of having kconfig call it Rob Landley2007-03-174-3/+3
| | | | | | via system(). Also move it to extra/scripts since it's a uClibc build script, not part of upstream kconfig. Adjust the "grabbing a new kconfig snapshot" procedure accordingly.
* No configs actually set LIBGCC_CFLAGS to anything, and it's not even Rob Landley2007-03-1623-72/+0
| | | | written into the resulting .config, so remove it.
* touchup new kconfig handling so we dont constantly rebuildMike Frysinger2007-02-211-3/+3
|
* simple script for counting relocsMike Frysinger2007-02-181-0/+78
|
* default to pulling kernel headers from the system installMike Frysinger2007-02-181-1/+1
|
* make arch default to hostarchMike Frysinger2007-02-1424-1/+23
|
* pull latest kconfig from kernelMike Frysinger2007-02-1442-5237/+10252
|