Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix cosmetic typo | Bernhard Reutner-Fischer | 2009-10-14 | 1 | -3/+3 |
| | | | | | | s/dependancies/dependencies/g Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | ||||
* | fix make {,install_}{,host}utils | Bernhard Reutner-Fischer | 2009-09-18 | 4 | -17/+298 |
| | | | | Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | ||||
* | do not pass 3rd param to open() which do not create files | Denys Vlasenko | 2009-09-05 | 1 | -1/+1 |
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | ||||
* | support building out-of-tree | Bernhard Reutner-Fischer | 2009-08-17 | 1 | -0/+1 |
| | | | | | | Handle O= Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | ||||
* | define attribute_noreturn | Bernhard Reutner-Fischer | 2009-08-10 | 2 | -2/+10 |
| | | | | Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | ||||
* | fix compilation | Bernhard Reutner-Fischer | 2009-08-05 | 1 | -2/+2 |
| | | | | | | wrong placed attribute_noreturn Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | ||||
* | Don't shadow the chroot global | Ron | 2009-07-05 | 1 | -6/+6 |
| | | | | | Signed-off-by: Ron Lee <ron@debian.org> Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | Don't shadow stat with a local variable | Ron | 2009-07-05 | 2 | -7/+7 |
| | | | | | Signed-off-by: Ron Lee <ron@debian.org> Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | Don't shadow the err() function with a local var | Ron | 2009-07-05 | 1 | -2/+2 |
| | | | | | | | gcc-4.4 barks about that. Signed-off-by: Ron Lee <ron@debian.org> Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | Provide token prototypes for functions that are external but have no header | Ron | 2009-07-05 | 1 | -0/+3 |
| | | | | | | | This cuts down on a lot of noise from gcc-4.4 Signed-off-by: Ron Lee <ron@debian.org> Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | Make more utility functions static | Ron | 2009-07-05 | 3 | -15/+15 |
| | | | | | | | This keeps gcc-4.4 from nagging that they have no prototypes. Signed-off-by: Ron Lee <ron@debian.org> Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | Add noreturn attributes to some functions that won't ever do so | Ron | 2009-07-05 | 1 | -2/+2 |
| | | | | | | | | | usage() is also made static in answer to warnings about no prototype. In __pthread_manager_event() we also have to drop the return statement, else gcc will in turn complain about a non-returning function having one. Signed-off-by: Ron Lee <ron@debian.org> Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | add gitignore for utils | Mike Frysinger | 2009-06-28 | 1 | -0/+4 |
| | | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | utils: punt readelf | Mike Frysinger | 2009-06-28 | 2 | -352/+1 |
| | | | | | | | This miniature version of readelf has never been terribly useful and has caused significantly more headaches in its maintenance, so punt it. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | include more info in error messages so we have a better idea where things ↵ | Mike Frysinger | 2009-02-10 | 1 | -3/+3 |
| | | | | are failing | ||||
* | add mmap()/munmap() implementation for Windows | Mike Frysinger | 2009-02-10 | 2 | -2/+110 |
| | |||||
* | unify byte order cruft in bswap.h and porting.h and add a bswap_64() replacement | Mike Frysinger | 2009-02-09 | 2 | -39/+33 |
| | |||||
* | unify the headers/random defines into porting.h to avoid duplication/rot | Mike Frysinger | 2009-02-09 | 7 | -153/+116 |
| | |||||
* | dont force -Wl,-s when building host utils -- people can strip themselves | Mike Frysinger | 2009-02-09 | 1 | -3/+3 |
| | |||||
* | Partially revent "make utils" fix. This version is less intrusive, | Denis Vlasenko | 2009-01-28 | 1 | -51/+16 |
| | | | | | but still works! :) | ||||
* | "make utils" now successfully makes utils for target | Denis Vlasenko | 2009-01-28 | 2 | -23/+71 |
| | |||||
* | - make sure not to have relocs in Scrt1.o (Peter S. Mazinger) | Bernhard Reutner-Fischer | 2009-01-14 | 1 | -5/+9 |
| | |||||
* | utils/Makefile.in: de-obfuscate it a bit | Denis Vlasenko | 2009-01-11 | 1 | -18/+33 |
| | | | | | Rules.mak: use -Os, not -O2 | ||||
* | simple optimizations and style fixes in dynamic loading | Denis Vlasenko | 2009-01-10 | 2 | -30/+23 |
| | | | | | | | | | | | text data bss dec hex filename - 16709 240 92 17041 4291 lib/ld-uClibc.so + 16634 236 92 16962 4242 lib/ld-uClibc.so - 4602 344 4 4950 1356 lib/libdl-0.9.30-svn.so + 4571 328 4 4903 1327 lib/libdl-0.9.30-svn.so - 4602 344 4 4950 1356 lib/libdl.so + 4571 328 4 4903 1327 lib/libdl.so | ||||
* | - fix for !GETOPT_LONG | Bernhard Reutner-Fischer | 2008-12-22 | 1 | -1/+0 |
| | |||||
* | - install utils into the proper directories | Bernhard Reutner-Fischer | 2008-12-16 | 1 | -5/+5 |
| | |||||
* | Remove hardwired usr/ from install_utils (that's what $RUNTIME_PREFIX is for) | Rob Landley | 2008-12-10 | 1 | -6/+8 |
| | | | | | and add install_hostutils. Now install_utils should use $PREFIX more like other packages do. | ||||
* | - Add temporary hack to wipe dep files even on clean for utils. | Bernhard Reutner-Fischer | 2008-11-09 | 1 | -0/+3 |
| | | | | | utils lives outside of the normal build so this is needed until it is properly pulled into the normal system. | ||||
* | - less verbose make clean | Bernhard Reutner-Fischer | 2008-11-07 | 1 | -2/+2 |
| | |||||
* | - minor shrinkage (-50b) | Bernhard Reutner-Fischer | 2008-10-29 | 1 | -8/+8 |
| | |||||
* | - tidy up utils_install | Bernhard Reutner-Fischer | 2008-10-09 | 1 | -7/+5 |
| | |||||
* | - fix errno setting (we're outside of libc here) | Bernhard Reutner-Fischer | 2008-10-09 | 1 | -9/+5 |
| | |||||
* | - use c89-style comments | Bernhard Reutner-Fischer | 2008-10-03 | 1 | -4/+4 |
| | | | | Closes issue #5194 | ||||
* | - remove a couple of duplicate includes | Bernhard Reutner-Fischer | 2008-08-27 | 1 | -1/+0 |
| | |||||
* | - fix inline keyword | Bernhard Reutner-Fischer | 2008-07-23 | 3 | -8/+8 |
| | |||||
* | Added implementation for 'locale' command. | Carmelo Amoroso | 2008-05-02 | 1 | -2/+10 |
| | | | | Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com> | ||||
* | - trim trailing whitespace. No object-code changes. | Bernhard Reutner-Fischer | 2008-03-26 | 1 | -8/+8 |
| | |||||
* | - fixup stripping of host utils and make host-utils compile with std=gnu99 | Bernhard Reutner-Fischer | 2008-03-26 | 2 | -13/+13 |
| | |||||
* | Added AVR32 support to uClibc. Signed-off-by: Hans-Christian Egtvedt ↵ | Carmelo Amoroso | 2007-11-16 | 1 | -0/+5 |
| | | | | <hcegtvedt@atmel.com> | ||||
* | if chroot() failed, then reset "chroot_dir" to "." so that after we do our ↵ | Mike Frysinger | 2007-04-17 | 1 | -0/+1 |
| | | | | fallback chdir(), we dont continue to prefix the chroot path ... fixes `ldconfig.host -r some/dir/` | ||||
* | cleanup style; no functional changes | Mike Frysinger | 2007-04-17 | 4 | -1020/+952 |
| | |||||
* | fix ld.so.cache handling on no-mmu setups | Mike Frysinger | 2007-04-17 | 1 | -1/+1 |
| | |||||
* | more ifdef tweaks from holin (#1247) for retarded hosts (like OS X) | Mike Frysinger | 2007-03-14 | 1 | -2/+8 |
| | |||||
* | fix typo as pointed out by Tony Wu and cleanup source | Mike Frysinger | 2007-01-28 | 1 | -18/+23 |
| | |||||
* | - fix compilation of __LDSO_CACHE_SUPPORT__ | Bernhard Reutner-Fischer | 2006-12-12 | 1 | -4/+4 |
| | | | | s/dprintf(2/fprintf(stderr/g | ||||
* | the makefile will include elf.h for us #778 | Mike Frysinger | 2006-10-07 | 2 | -2/+2 |
| | |||||
* | replace my @debian.org addr with @uclibc.org. Fixup license on | Eric Andersen | 2006-07-05 | 2 | -17/+4 |
| | | | | readelf and ldd to again state that they are GPLv2 | ||||
* | update license | Mike Frysinger | 2006-07-05 | 1 | -17/+2 |
| | |||||
* | the 16/32 swap funcs were swapped #875 | Mike Frysinger | 2006-05-26 | 1 | -2/+2 |
| | |||||
* | remove warning since it seems to have "gone away" now | Mike Frysinger | 2006-02-26 | 1 | -0/+2 |
| |