aboutsummaryrefslogtreecommitdiff
path: root/scripts/basic/split-include.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2006-11-18small fixes: using fd-based io instead of FILE*-based,Denis Vlasenko5-62/+63
missed O_TRUNC, etc
2006-11-18udhcp: fix indentation and style.Denis Vlasenko33-642/+332
Eliminate (group) a lot of smallish *.h files Remove lots of unneeded #includes
2006-11-18Add names of people historically linked to bbox projectDenis Vlasenko1-18/+18
2006-11-18nc: fix --help textDenis Vlasenko1-6/+2
2006-11-17add -Wundef, fix uncovered bugsDenis Vlasenko19-74/+71
2006-11-17forgot about avn add... :(Denis Vlasenko3-0/+1279
2006-11-17runit: add runsv, runsvdir and sv. Oh yes.Denis Vlasenko6-17/+64
It even seems to work. +11K. :(
2006-11-17httpd: make Bernhard happierDenis Vlasenko1-2/+4
2006-11-17- Set INSTALL_OPTS according to the config.Bernhard Reutner-Fischer1-0/+6
2006-11-17- fix generation of the busybox.links install script inputfileBernhard Reutner-Fischer2-2/+2
2006-11-17- typo fixBernhard Reutner-Fischer1-2/+2
2006-11-17- end may be used uninitialized.Bernhard Reutner-Fischer1-1/+2
- TODO: should eventually use skip_whitespace there
2006-11-16httpd: reduce ifdef forest. comment out redundant PATH settingDenis Vlasenko2-87/+77
2006-11-16httpd:Denis Vlasenko1-22/+17
fix union aliasing bug symptom: wget of non-existent file gets redirected to /text/html/something on second and subsequend wget attempts fix double-free bug symptom: glibc caught double-free (we didn't NULL config->xxx ptrs after free)
2006-11-16httpd: add -i (inetd) and -f (foreground) otions.Denis Vlasenko3-90/+56
-i makes possible to run httpd in both inetd and standalone mode without recompile (or need to have two different binaries)
2006-11-16httpd: stop being silly with setenvDenis Vlasenko1-61/+28
2006-11-16svlogd: new applet. +9k. Still too big, but it was 12k yesterday.Denis Vlasenko11-18/+2342
2006-11-15remove duplicate flag declsMike Frysinger1-3/+3
2006-11-12umount: umount -a shouldn't stop on first failureDenis Vlasenko1-5/+6
2006-11-10httpd: cosmetic fixes (the bug which was being hunted downDenis Vlasenko1-51/+45
turned out to be nonexistent :)
2006-11-10wget: fix error message.Denis Vlasenko4-8/+8
Bad: wget http://127.0.0.1:81/fgdg/Makefile Connecting to 127.0.0.1[127.0.0.1]:81 : HTTP/1.0 404 Not Foundror 404 Not Found Good: wget http://127.0.0.1:81/fgdg/Makefile Connecting to 127.0.0.1[127.0.0.1]:81 get: server returned error: HTTP/1.0 404 Not Found nslookup: fix my mistake applets: make Bernhard Fischer <rep.nop@aon.at> happy :)
2006-11-09add && !defined(__UCLIBC__) to static link warning checkDenis Vlasenko1-1/+2
2006-11-07small ipv6 doc changes; nslookup a tiny bit smallerDenis Vlasenko3-4/+6
2006-11-07getty: remove ancient termio support (was using termois anyway)Denis Vlasenko1-101/+65
2006-11-05httpd: sendCgi() forked child needs to close openedDenis Vlasenko1-28/+20
server socket and accepted socket
2006-11-05rename: compare_string_array -> index_in_str_arrayDenis Vlasenko10-44/+50
introduce index_in_substr_array and use it in iproute2
2006-11-05ps: add documentation on POSIX psDenis Vlasenko2-1/+176
2006-11-05usage.h: stop using ancient USAGE_xxx (we have USE_xx now)Denis Vlasenko1-34/+13
2006-11-05ps: implement POSIX-like options, most notably -oDenis Vlasenko2-0/+290
(activated by CONFIG_DESKTOP)
2006-11-05smart_ulltoa5: make available in libbbDenis Vlasenko3-41/+56
2006-11-05replace /proc scanning code by more versatile one.Denis Vlasenko6-168/+325
Use it where appropriate. Stop scanning /etc/passwd *for every process*!!! (uid->username) top: reduce memory usage - we won't save unneeded fields from /proc info anymore. Downside: ~+250 bytes of code
2006-11-05top: improve CPU% calculationDenis Vlasenko5-59/+56
style fixes
2006-11-02Fix kbuild bugs noticed by Bernhard Fischer <rep.nop@aon.at>Denis Vlasenko3-15/+14
2006-11-01Unneeded code removed, usused field "unsigned pscpu" removedDenis Vlasenko5-14/+14
2006-11-01mostly style fixesDenis Vlasenko12-161/+156
2006-11-01pidof: reduce #ifdef forestDenis Vlasenko1-39/+19
2006-11-01PID should be stored in pid_t, not int or long.Denis Vlasenko8-69/+76
find_pid_by_name() was returning 0 or -1 in last array element, but -1 was never checked. We can use just 0 intead.
2006-11-01ps: reduce #ifdef forestDenis Vlasenko1-25/+13
2006-11-01#if CONFIG_xxx -> #if ENABLE_xxxDenis Vlasenko3-20/+12
2006-10-31find: -type T was actually meaning ! -type T!Denis Vlasenko1-1/+1
With this fix, "make mrproper" works correctly
2006-10-31build system: Makefiles are in source dir, add $(srctree)Denis Vlasenko1-3/+3
2006-10-31reads: fix bug 1078Denis Vlasenko1-1/+2