Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-10-12 | small style fixes | Denis Vlasenko | |
2006-10-11 | ifupdown: stop emitting annoying/misleading error messages. | Denis Vlasenko | |
Patch by Gabriel Somlo <somlo at cmu.edu> | |||
2006-10-10 | fixes from Vladimir Dronnikov <dronnikov@gmail.ru> | Denis Vlasenko | |
2006-10-08 | correct largefile support, add comments about it. | Denis Vlasenko | |
2006-10-08 | attempt to regularize atoi mess. | Denis Vlasenko | |
2006-10-07 | dd: make it recognize not only 'k' but 'K' too; | Denis Vlasenko | |
make it (partially) CONFIG_LFS-aware | |||
2006-10-07 | wget: don't be careless with xstrdup'ing | Denis Vlasenko | |
2006-10-07 | wget: fix download of URLs like: | Denis Vlasenko | |
http://busybox.net?var=a/b http://busybox.net?login=john@doe http://busybox.net#test/test | |||
2006-10-06 | dnsd fix; option_mask32 added. dnsd needs more love. | Denis Vlasenko | |
2006-10-05 | eject: -T fix | Denis Vlasenko | |
2006-10-05 | httpd: add -u user[:grp] support | Denis Vlasenko | |
2006-10-05 | build system overhaul | Denis Vlasenko | |
2006-10-03 | bb_applet_name -> applet_name | Denis Vlasenko | |
2006-10-03 | getopt_ulflags -> getopt32. | Denis Vlasenko | |
It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit. | |||
2006-10-03 | rename bb_default_error_retval -> xfunc_error_retval | Denis Vlasenko | |
2006-10-03 | lots of silly indent fixes | Denis Vlasenko | |
2006-10-03 | traceroute: fix compilation if netinet/protocols.h is missing | Denis Vlasenko | |
2006-10-03 | traceroute: do not look up icmp protocol# in /etc, it is well-known :) | Denis Vlasenko | |
2006-10-02 | ifupdown: Debian users contributed improvement to it | Denis Vlasenko | |
2006-10-01 | wget: make progress bar and ETA work correctly with -c | Denis Vlasenko | |
2006-09-30 | lsmod: repair indentation | Denis Vlasenko | |
httpd: ifdef CONFIG -> if ENABLE (shorted, catched typos) | |||
2006-09-30 | vconfig: fix bug 701 (I be damned if I understand it) | Denis Vlasenko | |
2006-09-30 | libiproute/ll_map.c: fix bug 279 | Denis Vlasenko | |
("On-demand net module loading fails with CONFIG_FEATURE_IFUPDOWN_IP") | |||
2006-09-29 | Yet another silly little byte saving. couldn't -> cannot | Denis Vlasenko | |
2006-09-28 | rt_names.c: move few strings into rodata | Denis Vlasenko | |
2006-09-28 | ifupdown: make dhcp start/stop scripts user configurable | Denis Vlasenko | |
in /etc/network/interfaces. Patch author is Gabriel L. Somlo <somlo@cmu.edu> | |||
2006-09-27 | silly switch style fix | Denis Vlasenko | |
2006-09-27 | ifupdown: fix for standalone shell; removed hardcoded PATH | Denis Vlasenko | |
2006-09-26 | ifupdown: style cleanup, no code changes | Denis Vlasenko | |
2006-09-26 | several fixes from openWRT project | Denis Vlasenko | |
2006-09-26 | httpd: sanitize indentation | Denis Vlasenko | |
2006-09-26 | wget: add (configurable) large file support. Run tested. | Denis Vlasenko | |
2006-09-23 | wget: fix bug where wget creates null file if there is no remote one. | Denis Vlasenko | |
add O_LARGEFILE support (not run tested :). | |||
2006-09-23 | inetd: deindent main loop, other readability enhancements | Denis Vlasenko | |
2006-09-23 | inetd: reformat with tabs for indentation | Denis Vlasenko | |
2006-09-23 | ifupdown: getopt_ulflags'ification. | Denis Vlasenko | |
2006-09-23 | arping: fix bug (getopt_ulflags and optarg don't mix), | Denis Vlasenko | |
remove unreachable error path. | |||
2006-09-22 | netstat: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-22 | hostname: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-22 | telnetd: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-17 | whitespace cleanup | Denis Vlasenko | |
2006-09-15 | So, in the cornucopia of superfulous warning directives I didn't add to the | Rob Landley | |
tree, we have the warning about failed inlines (which with our inline limit set to zero means any usage of the "inline" keyword at all). Note that setting the inline limit to zero, and using -Werror, both predated adding the warning about inlines to the tree. So whatever checkin added that did nothing but break the tree. But oh well. The second category of superfluous warnings is warning about functions with no previous declaration. Apparently, if you add ALWAYS_INLINE to an empty function definition, it considers the sucker undeclared as far as the warning is concerned. (I.E. it's a buggy warning. I try not to ask the compiler to generate warnings it can't competently generate.) This is why I removed "inline" (unbreak allbareconfig), and couldn't replace it with "ALWAYS_INLINE" (still broke allbareconfig). | |||
2006-09-11 | - convert a few xopen3(,,0) into xopen(,). Also peruse the fact that xopen ↵ | Bernhard Reutner-Fischer | |
defaults to 0777 on it's own, so we don't need to xopen3(,,0777). Saves a few bytes: $ size busybox.old busybox text data bss dec hex filename 839676 8780 243592 1092048 10a9d0 busybox.old 839660 8780 243592 1092032 10a9c0 busybox $ make CC=gcc-4.2-HEAD bloatcheck function old new delta static.vconfig_main 281 279 -2 static.rx_main 1076 1074 -2 static.mt_main 294 292 -2 static.gzip_main 753 751 -2 static.mkfs_minix_main 4034 4030 -4 static.unzip_main 1771 1766 -5 static.crontab_main 1513 1507 -6 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/7 up/down: 0/-23) Total: -23 bytes | |||
2006-09-11 | Build fixes for gcc 4.0 with -Werror, from Tito. | Rob Landley | |
2006-09-09 | wget: wrap one atrociously long line (around 200 chars long!). | Denis Vlasenko | |
2006-09-09 | udhcp: FEATURE_UDHCP_SYSLOG should be selected only if | Denis Vlasenko | |
udhcp[cd] really are going to use it. | |||
2006-09-07 | Fix (hopefully) bug 976. Need more thorough audit. | Denis Vlasenko | |
Restore erroneously removed FEATURE_UDHCP_SYSLOG. | |||
2006-09-07 | Add CONFIG_FEATURE_SYSLOG which controls whether | Denis Vlasenko | |
bb_xx_msg will ever try to send output to syslog. Add "select CONFIG_FEATURE_SYSLOG" to relevant applets. This allows to omit syslog code if we do not have any syslog-capable applets in the build. | |||
2006-09-06 | Implement optional syslog logging using ordinary | Denis Vlasenko | |
bb_xx_msg calls, and convert networking/* to it. The rest of bbox will be converted gradually. | |||
2006-09-03 | uuencode: common implementation for wget and uuencode (closing bug 694) | Denis Vlasenko | |