1. 5a6617a sysctl: fix broken -p [file] - close bug 231 by Denis Vlasenko · 16 years ago
  2. b975feb mark msh as deprecated by Mike Frysinger · 16 years ago
  3. 40b8dc4 use bb_strtou() in umask/wait and check errno to see if there was a problem rather than using endp by Mike Frysinger · 16 years ago
  4. 8ec1c9d make sure we check job status whenever updating the prompt by Mike Frysinger · 16 years ago
  5. 0b87e4a test for invalid named variables by Mike Frysinger · 16 years ago
  6. 7c3e52c do not let handle_dollar() accept vars that start with a digit by Mike Frysinger · 16 years ago
  7. 56bdea1 implement `wait` builtin by Mike Frysinger · 16 years ago
  8. e61f07f remove ((expr)) bash'ism by Denis Vlasenko · 16 years ago
  9. 701ac18 randomconfig fix by Denis Vlasenko · 16 years ago
  10. 5a82845 update the normally disabled debug code around the syntax() func to use new maybe_die() by Mike Frysinger · 16 years ago
  11. a2333c8 randomtest fixes by Denis Vlasenko · 16 years ago
  12. 78f9d8e add hush tests for parameter expansion by Mike Frysinger · 16 years ago
  13. 6379bb4 implement most POSIX parameter expansions (~+500bytes) by Mike Frysinger · 16 years ago
  14. 42ab865 make sure we exit based on test failure rather than always exiting with 0 by Mike Frysinger · 16 years ago
  15. 25a6ca0 split up feature todo by posix/bash by Mike Frysinger · 16 years ago
  16. ad88d5a unify `set` handling with command line processing, fixup `set` argv processing so it doesnt clobber argv when setting options, and barf on unhandled set options by Mike Frysinger · 16 years ago
  17. 19a7ea1 handle the "-s" command line option that POSIX requires by Mike Frysinger · 16 years ago
  18. a71cfa8 rename "-f" (fake) option to "-n" to match POSIX by Mike Frysinger · 16 years ago
  19. d006edb tweak format modifier in debug code to fixup gcc warning by Mike Frysinger · 16 years ago
  20. ec2c655 convert some of the ENABLE_FEATURE_EDITING from CPP if to C if by Mike Frysinger · 16 years ago
  21. 39456a1 stop lying about [[ test support by Mike Frysinger · 16 years ago
  22. 781b672 mkfs.vfat: fix a problem with over-estimating FAT size by Denis Vlasenko · 16 years ago
  23. 70a2c8d make lash deprecation more prominent by Mike Frysinger · 16 years ago
  24. f54dd09 mkfs.vfat: mkdosfs compat with choosing clyster size by Denis Vlasenko · 16 years ago
  25. 14ee4e6 mkfs.vfat: more of pointless tweaking by Denis Vlasenko · 16 years ago
  26. 020f465 mkfs.vfat: small tweak to comments by Denis Vlasenko · 16 years ago
  27. 9d04b6b mkdosfs (aka mkfs.vfat): new applet by Vladimir by Denis Vlasenko · 16 years ago
  28. 4d3a812 ls: warning fix rm: accept and ignore -v (verbose) by Denis Vlasenko · 16 years ago
  29. 3603cd2 tail: fix tail +N syntax not working. Closes bug 221. by Denis Vlasenko · 16 years ago
  30. bfc0fae enable most job functions on no-mmu systems by Mike Frysinger · 16 years ago
  31. f9beb61 tftp: when we infer local name from remote (-r [/]path/path/file), by Denis Vlasenko · 16 years ago
  32. b2705e1 do not make startup banner depend on job support by Mike Frysinger · 16 years ago
  33. c0ea82a libbb: revent previous version of "concurrent history updating" by Denis Vlasenko · 16 years ago
  34. ddbee97 move parse_stream out of ENABLE_HUSH_TICK to avoid implicit decl/build error by Mike Frysinger · 16 years ago
  35. 57abf9e libbb: make history saving/loading concurrent-safe by Denis Vlasenko · 16 years ago
  36. 3fd1046 timeout: fix parsing of -t NUM on MMU by Denis Vlasenko · 16 years ago
  37. 424f79b hush: rearrange functions to reduce amount of forward references. by Denis Vlasenko · 16 years ago
  38. e1300f6 hush: fix segv at repeated "set -- a b c" + "shift" by Denis Vlasenko · 16 years ago
  39. 786ce17 hush: fix strcpy of potentially overlapping strings by Denis Vlasenko · 16 years ago
  40. ccff0b9 msh testsuite: fix false positive, tweak run stript by Denis Vlasenko · 16 years ago
  41. 3a014b8 ls: make readlink error to not disrupt output (try ls -l /proc/self/fd). by Denis Vlasenko · 16 years ago
  42. 05af832 cpio: more compat: -0 and -L options by Denis Vlasenko · 16 years ago
  43. 83518d1 Compatibility fixes: by Denis Vlasenko · 16 years ago
  44. 0b28103 cd: "support" -v by ignoring it by Denis Vlasenko · 16 years ago
  45. feecc7b hush: tweak testsuite by Denis Vlasenko · 16 years ago
  46. a8b6dff hush: fix bug 207 and "hush -c" parameter passing. by Denis Vlasenko · 16 years ago
  47. 5368ad5 ash: expand comment by Denis Vlasenko · 16 years ago
  48. 11fb7cf hush: fix set [--] params. Closes bug 199. by Denis Vlasenko · 16 years ago
  49. 1bb3d7e ash: add missing comma in debug scaffolding by Denis Vlasenko · 16 years ago
  50. b9e70dd ash: fix a case where we close wrong descriptor; add debug hack for that by Denis Vlasenko · 16 years ago
  51. f173395 ash: DEBUG should be 0 :) by Denis Vlasenko · 16 years ago
  52. b21f379 ash: fix TRACE commands by Denis Vlasenko · 16 years ago
  53. 653d8e7 ash: make evaltree save/restore int suppression depth. by Denis Vlasenko · 16 years ago
  54. 731de5c doc update by Denis Vlasenko · 16 years ago
  55. 4b87570 ash: in dotrap(), do not clear gotsig[] for SIGINT if there is no handler by Denis Vlasenko · 16 years ago
  56. 0354aba df: fix FEATURE_DF_FANCY=off, FEATURE_HUMAN_READABLE=on case. by Denis Vlasenko · 16 years ago
  57. 7f88e34 ash: tentatively fix bug 189. by Denis Vlasenko · 16 years ago
  58. 5981ba5 init: test for vt terminal with VT_OPENQRY, by Denis Vlasenko · 16 years ago
  59. 5c2b814 ash: fix "ash -c 'exec 1>&0'" complaining that fd 0 is busy by Denis Vlasenko · 16 years ago
  60. c1969f6 ls: make color-related code more readable. Fix a case when by Denis Vlasenko · 16 years ago
  61. cbb4e61 httpd: add comment explaining why SERVER_NAME etc is not set. by Denis Vlasenko · 16 years ago
  62. 9f57cf6 ftpd: fix command fetching to not do it in 1-byte reads; by Denis Vlasenko · 16 years ago
  63. fce4a94 ftpd: add some comments by Denis Vlasenko · 16 years ago
  64. e3b840c ftpd: trim messages (but make sure they still make sense) by Denis Vlasenko · 16 years ago
  65. 5b492ee ftpd: do not use nasty tricks for re-execing if we are on MMU machine. by Denis Vlasenko · 16 years ago
  66. 1432cb4 ftpd: add support for MDTM, I see clients often use it, by Denis Vlasenko · 16 years ago
  67. 3a7a1eb ftpd: document NLST format by Denis Vlasenko · 16 years ago
  68. 1a82555 ftpd: instead of wordy HELP, implement useful, and smaller, FEAT. by Denis Vlasenko · 16 years ago
  69. edb0de4 ftpd: implement -vv verbosity by Denis Vlasenko · 16 years ago
  70. e6c94a6 ftpd: tweak timeout code by Denis Vlasenko · 16 years ago
  71. 99d71da chat: update by Vladimir by Denis Vlasenko · 16 years ago
  72. 074c903 ftpd: fix thinko: set_nport takes port in network order by Denis Vlasenko · 16 years ago
  73. fbf5846 ftpd: dont use fdprintf for simple status messages by Denis Vlasenko · 16 years ago
  74. 43bb7bb ftpd: simplify PORT check by assuming IP = peer's IP. by Denis Vlasenko · 16 years ago
  75. 20c8216 ftpd: add idle and absolute timeouts. This is a security issue, by Denis Vlasenko · 16 years ago
  76. f2160b6 ftpd: security tightened up: by Denis Vlasenko · 16 years ago
  77. 7a67664 awk: fix compat issue found by gpm build by Denis Vlasenko · 16 years ago
  78. 9210a36 tr: support -C as synonym to -c by Denis Vlasenko · 16 years ago
  79. fc58ba1 ftpd: fix the bug where >2GB file ops report errors; by Denis Vlasenko · 16 years ago
  80. 823f10b sha: merge K[] for sha256 and 512 by Denis Vlasenko · 16 years ago
  81. 8ec8d5e sha: fix thinko in sha512; add FAST_FUNC to sha1/sha256 by Denis Vlasenko · 16 years ago
  82. e9afc46 sha: merge sha1/sha256 handling (they are similar enough for this), by Denis Vlasenko · 16 years ago
  83. 7241e6d uname: correct cut/paste error touch: add long options by Denis Vlasenko · 16 years ago
  84. 7aaedcf mount: support "-O option"; stop trying to mount swap partitions by Denis Vlasenko · 16 years ago
  85. 447ab18 uname: support long options by Denis Vlasenko · 16 years ago
  86. 3b5c9b8 insmod/modprobe: do not pass NULL to kernel as module parameter by Denis Vlasenko · 16 years ago
  87. 1f0b95f tar: make FEATURE_TAR_AUTODETECT work with DESKTOP off too. by Denis Vlasenko · 16 years ago
  88. c8329c9 sha: reduce sha256/512 context size. Make sha1/sha256 code more similar by Denis Vlasenko · 16 years ago
  89. 4a43057 sha: tiny shrink by Denis Vlasenko · 16 years ago
  90. ddb1b85 add comment about sha testing by Denis Vlasenko · 16 years ago
  91. cd2cd31 shrink sha hashing a bit more (remove wbuflen field from ctx), by Denis Vlasenko · 16 years ago
  92. 6a5d9fa shrink sha hashing by Denis Vlasenko · 16 years ago
  93. 4abaec5 popmaildir: fix several grave bugs with using memory past end of malloc block by Denis Vlasenko · 16 years ago
  94. dec37b3 the -elf2flt flag can be used w/out -Wl, so drop the requirement so people can use either form by Mike Frysinger · 16 years ago
  95. 98c87f7 sha256/512: code shrink. Run-tested. by Denis Vlasenko · 16 years ago
  96. 54ac03a *: remove LOG_NOWAIT by Denis Vlasenko · 16 years ago
  97. 4221e90 ftpd: stop unconditional logging to syslog. This was the only applet by Denis Vlasenko · 16 years ago
  98. a19e649 docs/logging_and_backgrounding.txt: new mini-doc by Denis Vlasenko · 16 years ago
  99. 4774179 mail.c: more robust handling of SIGCHLD init: more robust signal handling by Denis Vlasenko · 16 years ago
  100. 245f91b ftpd + ls - timestamp = confused Mozilla. Prevent that. by Denis Vlasenko · 16 years ago