1. 724d196 Move applets/applet.c into libbb, allows to get rid of --whole-archive by Denis Vlasenko · 17 years ago
  2. 82d38da get rid of global "struct bb_applet *current_applet" by Denis Vlasenko · 17 years ago
  3. d419a9f whitespace fix by Denis Vlasenko · 17 years ago
  4. ac7d0e3 add libbb/appletlib.c by Denis Vlasenko · 17 years ago
  5. d62fd84 libbusybox: move (possibly compressed) help stuff into libbusybox. by Denis Vlasenko · 17 years ago
  6. feb7ae7 printf("%s\n") -> puts() by Denis Vlasenko · 17 years ago
  7. 0c97c9d 'simple' error message functions by Loic Grenie <loic.grenie@gmail.com>. by Denis Vlasenko · 17 years ago
  8. 96e1b38 introduce and use close_on_exec_on(fd). -50 bytes. by Denis Vlasenko · 17 years ago
  9. a4f4de9 print_signames_and_exit -> print_signames (because of "ash calls kill_main") by Denis Vlasenko · 17 years ago
  10. 304a97a trivial typo fix by Denis Vlasenko · 17 years ago
  11. 72e1c89 pgrep,pkill: new applets by Loic Grenie <loic.grenie@gmail.com> by Denis Vlasenko · 17 years ago
  12. 2450e4b xrealloc_getcwd_or_warn: smaller cod and less wasted RAM at run time by Denis Vlasenko · 17 years ago
  13. 1ebd0a6 remove if() which is always true by Denis Vlasenko · 17 years ago
  14. ab8c937 more "if (p) free(p)" fixes; fix a typo in comment by Denis Vlasenko · 17 years ago
  15. e918e15 remove stray semicolon by Denis Vlasenko · 17 years ago
  16. 8607677 libbb: make const_int_0 reside in rodata by Denis Vlasenko · 17 years ago
  17. 1d31f0f libbb: align bb_common_bufsiz1 to "long long" by Denis Vlasenko · 17 years ago
  18. 4daad90 introduce bb_putchar(). saves ~1800 on uclibc (less on glibc). by Denis Vlasenko · 17 years ago
  19. 86b29ea lineedit: plug memory leak by Denis Vlasenko · 17 years ago
  20. 5d61e71 introduce safe_poll (fixes a problem in top) by Denis Vlasenko · 17 years ago
  21. 6a5377a documentation bits in comments, no code changes by Denis Vlasenko · 17 years ago
  22. 818322b *: kill bb_get_last_path_component, replace with two functions by Denis Vlasenko · 17 years ago
  23. a9335ea cp: make it a bit closer to POSIX, but still refuse to open and by Denis Vlasenko · 17 years ago
  24. fa05074 cp: make "cp file /dev/node" special case; explained in comments by Denis Vlasenko · 17 years ago
  25. 976690a run_shell: code shrink for selinux by Denis Vlasenko · 17 years ago
  26. a2f6101 setup_environment: code shrink by Denis Vlasenko · 17 years ago
  27. ff6e8e2 top: TOPMEM feature - 's(how sizes)' command. +2.5k when enabled, by Denis Vlasenko · 17 years ago
  28. c8d4d2f messages: by popular request allow PATH to be customized at build time by Denis Vlasenko · 17 years ago
  29. beffd43 busybox --install -s: prevent puzzling "/bin/busybox: Invalid argument" message by Denis Vlasenko · 17 years ago
  30. 76c476f smart_ulltoa5: emit small letters k,m,g... - makes top more readable by Denis Vlasenko · 17 years ago
  31. b308d81 top: use poll instead of select for waiting on one descriptor by Denis Vlasenko · 17 years ago
  32. 0f214ec cp: fix recursion check to not waste bytes remembering names of dirs by Denis Vlasenko · 17 years ago
  33. 8a5fab6 cp: detect and prevent infinite recursion by Denis Vlasenko · 17 years ago
  34. 512499c ps: fix RSS parsing (rss field in /proc/PID/stat is in pages, not bytes) by Denis Vlasenko · 17 years ago
  35. 30bab71 make copy_file() a bit easier to understand, and smaller by Denis Vlasenko · 17 years ago
  36. 737d131 support "#!/bin/busybox"-style wrappers. Needed for SELinux. by Denis Vlasenko · 17 years ago
  37. 6666ac4 cp,mv: simpler arg[cv] handling -> smallish code savings by Denis Vlasenko · 17 years ago
  38. 3d82962 cp: make POSIX-me-harder mode complain with a bit less insane message by Denis Vlasenko · 17 years ago
  39. d37f222 libbb,crond,lash: fix getopt32 (don't know how it managed to slip through) by Denis Vlasenko · 17 years ago
  40. fe7cd64 don't pass argc in getopt32, it's superfluous by Denis Vlasenko · 17 years ago
  41. 367960b make standalone httpd work on NOMMU machines by Denis Vlasenko · 17 years ago
  42. a27a11b introduce and use xdup2(int, int) by Denis Vlasenko · 17 years ago
  43. 1b97efd httpd shring and logging update, part 1 or 7 by Denis Vlasenko · 17 years ago
  44. a0319ba hdparm: shrink rodata by ~250 bytes by Denis Vlasenko · 17 years ago
  45. 6a2f7f4 whitespace fixes, no code changes by Denis Vlasenko · 17 years ago
  46. ab9c44b v[hp]error_msg have 2-3 callsites only -> incorporate there. by Denis Vlasenko · 17 years ago
  47. bb23c06 if pidfile turned out to be !regular file, do not unlink it. by Denis Vlasenko · 17 years ago
  48. 384b1d1 httpd: add -v[v]: prints client addresses, HTTP codes returned [and URLs] by Denis Vlasenko · 17 years ago
  49. dbe6e66 trylink: automatically use custom link script if user provides one by Denis Vlasenko · 17 years ago
  50. 3952f20 expand, unexpand: new applets from Tito <farmatito@tiscali.it> by Denis Vlasenko · 17 years ago
  51. e324184 s/#ifdef CONFIG_/#if ENABLE_/g by Denis Vlasenko · 17 years ago
  52. 6ca409e trylink: produce even more info about final link stage by Denis Vlasenko · 17 years ago
  53. e5d37cc httpd: fix CGI handling bug (we were closing wrong fd). by Denis Vlasenko · 17 years ago
  54. f893da8 ls,ps,watch: measure terminal width on fd 0, not 1 by Denis Vlasenko · 17 years ago
  55. 501bfe2 stat: fix option -Z segv (bug 1454) by Denis Vlasenko · 17 years ago
  56. e5dbba2 bb_uudecode: now this is the more thorough fix... I hope... by Denis Vlasenko · 17 years ago
  57. 4661117 bb_uuencode: fix obscure case where we were using data past last byte of source by Denis Vlasenko · 17 years ago
  58. 0e2c9fb mount: print errno on NFS error (again) by Denis Vlasenko · 17 years ago
  59. 80edead udhcp: slight shrink by Denis Vlasenko · 17 years ago
  60. 1caca34 start_stop_daemon: NOMMU fixes, round 2 by Alex Landau <landau_alex@yahoo.com> by Denis Vlasenko · 17 years ago
  61. a1b16f4 start_stop_daemon: NOMMU fix; smaller fixes by Denis Vlasenko · 17 years ago
  62. 1bab1de fix for suffix optimization (which was in previous commit) by Denis Vlasenko · 17 years ago
  63. 3734b94 bb_getpwuid, bb_getgrgid: change order of arguments to more intuitive one; by Denis Vlasenko · 17 years ago
  64. f4cee7a getopt32: fix getopt32 breakage (forgot to memset(0) it) -- thanks rockeychu by Denis Vlasenko · 17 years ago
  65. 990d0f6 Replace index_in_[sub]str_array with index_in_[sub]strings, by Denis Vlasenko · 17 years ago
  66. 5bfcb4d getopt32 must remain NOFORK-safe (no mallocs!). Using alloca and pretending by Denis Vlasenko · 17 years ago
  67. bdc88fd rework long option handling. saves ~1.2k by Denis Vlasenko · 17 years ago
  68. b71c668 style fix (stray space before ';') by Denis Vlasenko · 17 years ago
  69. 0919657 libbb: nuke BB_GETOPT_ERROR, always die if there are mutually exclusive options by Denis Vlasenko · 17 years ago
  70. 557fb71 chpasswd: fixes and code shrink by Denis Vlasenko · 17 years ago
  71. 1ec5eae chpasswd: now with svn add by Denis Vlasenko · 17 years ago
  72. 21d1014 chpasswd: new applet by Alexander Shishkin <virtuoso@slind.org> by Denis Vlasenko · 17 years ago
  73. 2f6ae43 stray trailing tabs removed by Denis Vlasenko · 17 years ago
  74. 49a128a remove accumulated stray trailing whitespace by Denis Vlasenko · 17 years ago
  75. fb79a2e xioctl and friends by Tito <farmatito@tiscali.it> by Denis Vlasenko · 17 years ago
  76. d166f83 md5_sha1_sum: fix mishandling when run as /bin/md5sum (with path) by Denis Vlasenko · 17 years ago
  77. 54e19da correct_password: if password is 'x' or '*' and there is no shadow, use by Denis Vlasenko · 17 years ago
  78. e190c16 correct_password: do not print "no shadow passwd..." message by Denis Vlasenko · 17 years ago
  79. 4b9b0ce find: fix build failure on certain configs by Denis Vlasenko · 17 years ago
  80. 98ebab8 top,ps: improve /proc/PID/cmdinfo reading code by Denis Vlasenko · 17 years ago
  81. 8b14098 add bb_basename.c by Denis Vlasenko · 17 years ago
  82. dc757aa introduce and use bb_basename() by Denis Vlasenko · 17 years ago
  83. f7d07b1 killall, pidof: use argv0 for process matching too by Denis Vlasenko · 17 years ago
  84. 42ee26d procps: shrink /proc scanning code a bit by Denis Vlasenko · 17 years ago
  85. e8240f1 uuencode: shrink by Denis Vlasenko · 17 years ago
  86. 80b8b39 Consolidate ARRAY_SIZE macro; remove one unneeded global var (walter harms <wharms@bfs.de>) by Denis Vlasenko · 17 years ago
  87. 198bada pidof: size optimizations (-50 bytes) by Denis Vlasenko · 17 years ago
  88. 931de89 random shrinkage of statics, -60 bytes saved by Denis Vlasenko · 17 years ago
  89. 88976d0 remove extra ')' by Denis Vlasenko · 17 years ago
  90. 7510384 do not do utime() on links, it acts on link targets, and we don't want that. by Denis Vlasenko · 17 years ago
  91. 31789a8 top,ps: 'stringify' tty only when needed. -60 bytes. by Denis Vlasenko · 17 years ago
  92. 362c6ec top: speedup if tty info is not requested by Denis Vlasenko · 17 years ago
  93. 3afac4c top,ps: reduce CPU usage in decimal conversion (optional) by Denis Vlasenko · 17 years ago
  94. a61cb92 make /etc/network parsing configurable. -200 bytes when off. by Denis Vlasenko · 17 years ago
  95. 6d9ea24 networking/interface.c: huke remaining big statics; use malloc for INET[6]_rresolve by Denis Vlasenko · 17 years ago
  96. 1b16bda networking/interface.c: reduce bss usage by Denis Vlasenko · 17 years ago
  97. 91e149a libbb: random hunt for statics by Denis Vlasenko · 17 years ago
  98. ebd27aa fix an obvious typo while trying to access the tv_usec member by Mike Frysinger · 17 years ago
  99. bd7bb29 wget: use monotonic_sec instead of gettimeofday by Denis Vlasenko · 17 years ago
  100. 459be35 hwclock: size optimizations by Denis Vlasenko · 17 years ago