1. f88e3bf Convert all miscutils/* applets to "new style" applet definitions by Denys Vlasenko · 8 years ago
  2. fb4da16 Split miscutils/Config.src items into miscutils/*.c files by Denys Vlasenko · 8 years ago
  3. 9f8eb1e httpd: explain why we use sprintf and why it should be fine by Denys Vlasenko · 8 years ago
  4. 7e8218f Fix allnoconfig warnings by Denys Vlasenko · 8 years ago
  5. f4d0f4e applets.h.sh: a script to check applet names against config options by Denys Vlasenko · 8 years ago
  6. 10880cc Make mkfs.vfat and mkdosfs individually selectable by Denys Vlasenko · 8 years ago
  7. 0581a2f Make mke2fs and mkfs.ext2 individually selectable by Denys Vlasenko · 8 years ago
  8. eb3fdc8 Make bzcat, lzcat, xzcat, zcat, lzopcat, unlzop individually selectable by Denys Vlasenko · 8 years ago
  9. a8c696b Make ifup and ifdown individually selectable. by Denys Vlasenko · 8 years ago
  10. f417ffd Make swapon and swapoff individually selectable. by Denys Vlasenko · 8 years ago
  11. 1924e99 Make grep/egrep/fgrep independently selectable by Denys Vlasenko · 8 years ago
  12. 97e9a72 Make halt/poweroff/reboot independently selectable by Denys Vlasenko · 8 years ago
  13. c314ca9 Make setarch/linux32/linux64 independently selectable by Denys Vlasenko · 8 years ago
  14. 67fd2f2 dnsdomainname: split it from "hostname", make it independently selectable by Denys Vlasenko · 8 years ago
  15. 9655f95 tar: handle pax-encoded utf8 filenames and link names. Closes 9406 by Denys Vlasenko · 8 years ago
  16. 87e039d hush: make getch/peek functions directly called by Denys Vlasenko · 8 years ago
  17. 00a06b9 hush: renumber PIPE_foo, make PIPE_SEQ = 0 by Denys Vlasenko · 8 years ago
  18. 6c635d6 hush: small optimization in run_list by Denys Vlasenko · 8 years ago
  19. 5cc9bf6 hush: deindent large block of code, no code changes by Denys Vlasenko · 8 years ago
  20. 1eada9a hush: simplify insert_bg_jobs by Denys Vlasenko · 8 years ago
  21. 830ea35 hush: make "wait %1" less likely to play with signal mask by Denys Vlasenko · 8 years ago
  22. 02affb4 hush: rework "wait %jobspec" to work in non-interactive shells too by Denys Vlasenko · 8 years ago
  23. 26ad94b hush: "wait $!; echo $?" should return 127 if $! already exited by Denys Vlasenko · 8 years ago
  24. 62b717b hush: implement "wait %jobspec" by Denys Vlasenko · 8 years ago
  25. 4e1c8b4 hush: factor out %jobspec parsing by Denys Vlasenko · 8 years ago
  26. 5d5a611 hush: comment fix by Denys Vlasenko · 8 years ago
  27. 4224647 hush: do not allow sh -c '{ echo boo }' by Denys Vlasenko · 8 years ago
  28. 46443a3 cpio: add ownership (-R) test cases by Aaro Koskinen · 8 years ago
  29. aeaee43 hush: case logic for setting $? was still wrong by Denys Vlasenko · 8 years ago
  30. 30bfcf6 hush: non-matching "case" statement sets $? to 0 by Denys Vlasenko · 8 years ago
  31. 672a55e hush: allow { cmd } to not be terminated by semicolon in some cases by Denys Vlasenko · 8 years ago
  32. 06b1149 ash: fix "duplicate local" code (forgot to re-enable interrupts) by Denys Vlasenko · 8 years ago
  33. 834aba3 comment and readme updates by Denys Vlasenko · 8 years ago
  34. 79e2598 su: expand help; simplify passing of -c CMD to run_shell() by Denys Vlasenko · 8 years ago
  35. 2b28823 loadfont: 32k size limit is not enough by Denys Vlasenko · 8 years ago
  36. 1ab7c2f ash: while (!got_sig) pause() is not reliable, use sigsuspend() by Denys Vlasenko · 8 years ago
  37. 2e6af54 man: remove -Tascii from nroff invocation by Denys Vlasenko · 8 years ago
  38. 7c3c92c man: make width selection more thorough; explain how to override it by Denys Vlasenko · 8 years ago
  39. a92a749 man: allow nroff and tbl commands be overridden; unmangle writing to files by Denys Vlasenko · 8 years ago
  40. d4f3db9 ash: if using libc glob(), skip it if no metachars are in word by Denys Vlasenko · 8 years ago
  41. 474ed06 ash: fix bit-rotten debug infrastructure by Denys Vlasenko · 8 years ago
  42. 493b9ca ash: make popfile() anfter popallfiles() safe by Denys Vlasenko · 8 years ago
  43. 9db74e4 hush: fix "(sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?" by Denys Vlasenko · 8 years ago
  44. 7e67536 hush: fix "wait PID" by Denys Vlasenko · 8 years ago
  45. 8f7b024 ash: use pause(), not sigsuspend(), in wait builtin by Denys Vlasenko · 8 years ago
  46. d81e9f5 ash: fix interactive "command eval STRING" exiting on errors. by Denys Vlasenko · 8 years ago
  47. 458c1f2 ash: [JOBS] Fix dowait signal race by Denys Vlasenko · 8 years ago
  48. c0663c7 ash: [SIGNAL] Remove EXSIG by Denys Vlasenko · 8 years ago
  49. 6918811 ash: open-code blocking_dowait_with_raise_on_sig() by Denys Vlasenko · 8 years ago
  50. b543bda ash: return to DOWAIT_* constants similar to dash, no logic changes by Denys Vlasenko · 8 years ago
  51. 3f44a6b ash: delete leftovers from "simplify EOF/newline handling in list parser" commit by Denys Vlasenko · 8 years ago
  52. 5ac04f2 ash: [EXPAND] Fix ifsfirst/ifslastp leak by Denys Vlasenko · 8 years ago
  53. 455e422 ash: move ifsbreakup() and ifsfree() up by Denys Vlasenko · 8 years ago
  54. b4f51d3 ash: partially sync with dash on "fork if traps are set" logic by Denys Vlasenko · 8 years ago
  55. 2eb0a7e ash: [SHELL] Expand ENV before using it by Denys Vlasenko · 8 years ago
  56. 7039233 ash: comment tweaks, no code changes by Denys Vlasenko · 8 years ago
  57. 65a8b85 ash: optimize tryexec(): avoid one allocation by Denys Vlasenko · 8 years ago
  58. 0e081d0 ash: [CD] Lookup PWD after going through CDPATH by Denys Vlasenko · 8 years ago
  59. a318bba ash: [MEMALLOC] Made grabstackblock an inline wrapper for stalloc by Denys Vlasenko · 8 years ago
  60. dbef38a ash: [VAR] Remove setvarsafe by Denys Vlasenko · 8 years ago
  61. 35c2a13 ash: use shellparam.optind/optoff in getopts() directly, not through pointers by Denys Vlasenko · 8 years ago
  62. 3df1410 ash: [PARSER] Size optimisations in parameter expansion parser by Denys Vlasenko · 8 years ago
  63. 350e686 ash: [PARSER] Recognise here-doc delimiters terminated by EOF by Denys Vlasenko · 8 years ago
  64. f15aa57 ash: [PARSER] Fix parsing of ${##1} by Denys Vlasenko · 8 years ago
  65. e19923f ash: [REDIR] Remove redundant CLOEXEC calls by Denys Vlasenko · 8 years ago
  66. 6477460 ash: [REDIR] Replace copyfd by savefd and use dup2 elsewhere by Denys Vlasenko · 8 years ago
  67. 4135a75 typo fixes by Denys Vlasenko · 8 years ago
  68. a513bf3 ash: [BUILTIN] Treat OPTIND=0 in the same way as OPTIND=1 by Denys Vlasenko · 8 years ago
  69. 88e1570 ash: [PARSER] Report substition errors at expansion time by Denys Vlasenko · 8 years ago
  70. eaf9436 ash: [REDIR] Move null redirect checks into caller by Denys Vlasenko · 8 years ago
  71. 2a6d29a ash: [PARSER] Do not show prompts in expandstr by Denys Vlasenko · 8 years ago
  72. 579ad10 ash: [EXPAND] Removed herefd hack by Denys Vlasenko · 8 years ago
  73. caee80c ash: [SHELL] Move flushall to the point just before _exit by Denys Vlasenko · 8 years ago
  74. 7aec868 ash: [EVAL] Let funcnode refer to a function definition, not its first command by Denys Vlasenko · 8 years ago
  75. 20a2cd6 ash: [REDIR] Remove EMFILE special case by Denys Vlasenko · 8 years ago
  76. cf98b0c ash: [EVAL] Check exit for eval NSUBSHELL by Denys Vlasenko · 8 years ago
  77. 960ca38 ash: add comment explaining "set -e; $(cmd)" discrepancy by Denys Vlasenko · 8 years ago
  78. 6a94cee ash: reduce code differences from upstream by Denys Vlasenko · 8 years ago
  79. 1825e4f ash: remove unused EXSHELLPROC by Denys Vlasenko · 8 years ago
  80. 061a090 ash: [BUILTIN] Use EXEXIT in place of EXEXEC by Denys Vlasenko · 8 years ago
  81. b7adf7a ash,hush: set exit code 127 in "sh /does/not/exist" case by Denys Vlasenko · 8 years ago
  82. f11c698 udhcpc: check read of overload option data byte to be within packet by Denys Vlasenko · 8 years ago
  83. f9beeb2 udhcpc: check read of option length byte to be within packet by Brian Foley · 8 years ago
  84. 69312e8 strings: implement -t radix by Tito Ragusa · 8 years ago
  85. db74c6c ash: explain EXP_REDIR and why we (dont) glob redir filenames by Denys Vlasenko · 8 years ago
  86. 61d5997 awk: fix segfault on for loop syntax error by Brian Foley · 8 years ago
  87. 1336052 lineedit: fix completion with applet names. closes 9361 by Denys Vlasenko · 8 years ago
  88. 5ccb0e9 ash: return exit status of nofork applets by Ron Yorston · 8 years ago
  89. 6bbb48f examples: update var_service/README again by Denys Vlasenko · 8 years ago
  90. e43000f typo fixes in doc by Denys Vlasenko · 8 years ago
  91. 93ff2b4 examples: update var_service/README again by Denys Vlasenko · 8 years ago
  92. ee2d194 examples: update var_service/README by Denys Vlasenko · 8 years ago
  93. 662634b telnetd: ifdef out a buggy error handling code path by Denys Vlasenko · 8 years ago
  94. 85100a7 cpio: fix restoration of file ownership, closes 9306 by Denys Vlasenko · 8 years ago
  95. 57727d4 telnet: code shrink by Denys Vlasenko · 8 years ago
  96. 26d88d6 telnetd: add another handshake example in comments, no code changes by Denys Vlasenko · 8 years ago
  97. b6d421b telnetd: treat all 2-byte IACs in 240..249 range as NOPs. by Denys Vlasenko · 8 years ago
  98. 122c47a telnetd: fix corner case of input processing of 0xff bytes by Denys Vlasenko · 8 years ago
  99. 0190c41 telnetd: fix a corner case where CRLF->CR translation can misbehave by Denys Vlasenko · 8 years ago
  100. 2a54b3e telnetd: fix handling of short writes to pty by Denys Vlasenko · 8 years ago