aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* add some tests for common typos and for obsolete functionsvapier2006-04-161-1/+47
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14888 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use memmove() instead of bcopy()vapier2006-04-162-12/+12
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14887 69ca8d6d-28ef-0310-b511-8ec308f3f277
* touchup commentvapier2006-04-161-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14886 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use strchr() not index()vapier2006-04-163-5/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14885 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use memcmp() not bcmp()vapier2006-04-161-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14883 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remove code for protocols we don't properly support. (Most of this couldlandley2006-04-142-383/+1
| | | | | | | | never be selected via menuconfig anyway.) If somebody wants one of these protocols, ask on the list for us to support it _properly_. git-svn-id: svn://busybox.net/trunk/busybox@14868 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Robert P Day to remove standalone code from httpd. (Busybox haslandley2006-04-141-64/+0
| | | | | | | | its own make standalone planned as a general solution to this for all applets.) git-svn-id: svn://busybox.net/trunk/busybox@14866 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Busybox is under the GPL.landley2006-04-141-7/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14863 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Hard wiring configuration symbol values into the code defeats the purposelandley2006-04-141-22/+4
| | | | | | | | | | of _having_ configuration symbol values. Also, changing #ifdef CONFIG to #if ENABLE isn't nearly as useful as changing them to if (ENABLE) or USE()/SKIP()... git-svn-id: svn://busybox.net/trunk/busybox@14852 69ca8d6d-28ef-0310-b511-8ec308f3f277
* The link to Bernhard's subversion branch belongs in subversion.html (wherelandley2006-04-141-5/+0
| | | | | | | it already is). git-svn-id: svn://busybox.net/trunk/busybox@14851 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Robert P Day: let menuconfig indent stuff for us, we don't havelandley2006-04-1313-137/+137
| | | | | | | to do it in Config.in. git-svn-id: svn://busybox.net/trunk/busybox@14850 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - remove unneeded include, use shorter boilerplate while at it and alsoaldot2006-04-134-63/+17
| | | | | | | | | | shrink filter_accept_reject_list() a tiny bit while at it. text data bss dec hex filename 59 0 0 59 3b filter_accept_reject_list.o 62 0 0 62 3e filter_accept_reject_list.o.orig git-svn-id: svn://busybox.net/trunk/busybox@14848 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - patch from Denis Vlasenko to add and use bb_xopen3()aldot2006-04-1312-71/+38
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14847 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - better wording.aldot2006-04-121-1/+1
| | | | | | | Closes bug #656. git-svn-id: svn://busybox.net/trunk/busybox@14839 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - note to think about eventually ditching vdprintf()aldot2006-04-121-0/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14838 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - patch from Denis Vlasenko to add and use bb_xchdir()aldot2006-04-1212-62/+46
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14837 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - patch from Denis Vlasenko to add bb_xbind() and bb_xlisten()aldot2006-04-1210-28/+50
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14836 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - patch from Denis Vlasenko to add and use bb_xdaemon()aldot2006-04-1212-22/+33
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14834 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - patch from Denis Vlasenko to add and use bb_xsocket() and to usealdot2006-04-1222-218/+99
| | | | | | | | bb_xopen some more while at it. Also use shorter boilerplate while at it. git-svn-id: svn://busybox.net/trunk/busybox@14833 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add verbatim cp of http://www.gnu.org/copyleft/lesser.txtaldot2006-04-121-0/+504
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14832 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - use C99 %j format to print intmax.aldot2006-04-121-16/+16
| | | | | | | Closes bugs #802 and #743 git-svn-id: svn://busybox.net/trunk/busybox@14831 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add and use bb_opendir(), bb_xopendir().aldot2006-04-1213-90/+66
| | | | | | | | | | | text data bss dec hex filename 889445 9392 1035784 1934621 1d851d busybox.gcc-4.2.orig 889297 9392 1035784 1934473 1d8489 busybox.gcc-4.2 889009 9820 1037860 1936689 1d8d31 busybox.gcc-4.1.orig 888817 9820 1037860 1936497 1d8c71 busybox.gcc-4.1 git-svn-id: svn://busybox.net/trunk/busybox@14830 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - pin the CFLAGS to make sure that we don't have to re-evaluate thealdot2006-04-111-1/+1
| | | | | | | check_gcc over and over again. Makes make -j work for me.. git-svn-id: svn://busybox.net/trunk/busybox@14824 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - include netinet/in.h for struct sockaddr_in.aldot2006-04-111-0/+1
| | | | | | | Closes bug #735 git-svn-id: svn://busybox.net/trunk/busybox@14822 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - httpd in inetd mode: POST from IE (6) ends up in 'cannot display page'aldot2006-04-111-5/+5
| | | | | | | Closes #827 git-svn-id: svn://busybox.net/trunk/busybox@14820 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - comment out the check-referer lines.aldot2006-04-111-1/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14819 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - we seem to use h3, so make it consistent.aldot2006-04-111-2/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14818 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - update screenshot to reflect the busybox-1.1.2 stable release.aldot2006-04-111-24/+30
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14817 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - tweak visibility of label expected_hwif_error as it's only needed foraldot2006-04-111-0/+2
| | | | | | | CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF or CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF git-svn-id: svn://busybox.net/trunk/busybox@14815 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - remove implied closing paragraphaldot2006-04-112-2/+3
| | | | | | | - add (improper but pretty) border='0' git-svn-id: svn://busybox.net/trunk/busybox@14814 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Robert P. J. Day writes: even in the header file, make it clear that the ↵vapier2006-04-111-0/+3
| | | | | | routine depends on __uClinux__ git-svn-id: svn://busybox.net/trunk/busybox@14812 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add note pointing to the stable branch, so users can pickup the currentaldot2006-04-102-0/+11
| | | | | | | stable version with fixes via svn. git-svn-id: svn://busybox.net/trunk/busybox@14800 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Announce 1.1.2.landley2006-04-101-0/+12
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14799 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - poke botaldot2006-04-101-3/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14798 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add a colorful "valid HTML 4.01 Transitional" button to be able to check ↵aldot2006-04-102-0/+5
| | | | | | | | | the referer easily. Just rip it out if this is not considered generally useful.. TIA. git-svn-id: svn://busybox.net/trunk/busybox@14797 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - make it resemble html.aldot2006-04-106-24/+24
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14796 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - make it resemble english and fix typo s/interperet/interpret/g;aldot2006-04-101-8/+8
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14795 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Tito to unify deluser and delgroup, and generally shrink code.landley2006-04-105-217/+76
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14793 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - put udhcp back in (Rob, you removed this in r14787 by accident..).aldot2006-04-101-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14792 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Notes about pic, static linking, and debugging dynamic linking.landley2006-04-101-1/+31
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14791 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Second verse, same as the first.landley2006-04-101-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14788 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Missing dependency spotted by Robert P Day.landley2006-04-101-3/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14787 69ca8d6d-28ef-0310-b511-8ec308f3f277
* I forgot to re-enable shared library build after 1.1.1. (Undo svn 14590.)landley2006-04-101-9/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14786 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Rob Sullivan to consolidate crc32 table generation.landley2006-04-106-71/+65
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14785 69ca8d6d-28ef-0310-b511-8ec308f3f277
* We use -funsigned-char now, so having a separate RESERVE_CONFIG_UBUFFER islandley2006-04-102-2/+2
| | | | | | | a bit silly. Wean of that where it currently makes no difference... git-svn-id: svn://busybox.net/trunk/busybox@14784 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Modprobe update from Ignacio García Pérez, updating support for modprobe.conf.landley2006-04-101-73/+109
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14783 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - fix typo introduced in the last commit.aldot2006-04-101-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14782 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - typo: s/biltin/builtin/galdot2006-04-102-48/+48
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14781 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Another size reduction patch from Garrett.landley2006-04-062-488/+18
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14776 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - patch from Rob Sullivan to add support for -Laldot2006-04-062-37/+66
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14764 69ca8d6d-28ef-0310-b511-8ec308f3f277