1. 680c301 ash: parser: Allow newlines within parameter substitution by Denys Vlasenko · 7 years ago
  2. 0403bed hush: optimize parse_stream() by Denys Vlasenko · 7 years ago
  3. 89e9d55 hush: do not drop backslash from eval 'echo ok\' by Denys Vlasenko · 7 years ago
  4. 3632cb1 shell: add comments about [[, no code changes by Denys Vlasenko · 7 years ago
  5. 4709df0 hush: fix handling of \<eof> in double-quoted strings by Denys Vlasenko · 7 years ago
  6. bcf5611 hush: fix eval 'echo ok\' by Denys Vlasenko · 7 years ago
  7. 92a930b hush: simplify \<newline> code, part 3 by Denys Vlasenko · 7 years ago
  8. e8b1bc0 hush: simplify \<newline> code, part 2 by Denys Vlasenko · 7 years ago
  9. 1c57269 hush: simplify \<newline> code, part 1 by Denys Vlasenko · 7 years ago
  10. 09b7a7e hush: put "current word" structure into parsing context by Denys Vlasenko · 7 years ago
  11. e93031e ash: if "[[" bashism is not supported, do not handle it anywhere by Denys Vlasenko · 7 years ago
  12. 57b7efb ash: trivial code shrink by Denys Vlasenko · 7 years ago
  13. 1f27fa9 testsuite: allow tests to work in paths containing spaces by Ron Yorston · 7 years ago
  14. 9db344a hush: fix var_leaks.tests and var_preserved.tests on NOMMU by Denys Vlasenko · 7 years ago
  15. eb0de05 hush: fix func_return2.tests on NOMMU by Denys Vlasenko · 7 years ago
  16. a1870f4 unlzma: fix segfault on bad archive by Denys Vlasenko · 7 years ago
  17. 38ccd6a bzip2: fix two crashes on corrupted archives by Denys Vlasenko · 7 years ago
  18. 8e2174e wget: check chunk length for overflowing off_t by Denys Vlasenko · 7 years ago
  19. 7bcde5f libbb.h: always include sys/resource.h by Denys Vlasenko · 7 years ago
  20. 87a08e4 lzop: remove method checks which are always true/false by Denys Vlasenko · 7 years ago
  21. 3d4f688 lzop: buffer several 32-bit writes when we start a new compressed block by Denys Vlasenko · 7 years ago
  22. 24ef5c6 lzop: reuse strings by Denys Vlasenko · 7 years ago
  23. 15684bf lzop: checksum reads do not need to be checksummed by Denys Vlasenko · 7 years ago
  24. 3a7d16d lzop: don't support ancient versions < 0.94 (15 Oct 1997) by Denys Vlasenko · 7 years ago
  25. 434f959 lzop: code shrink by using header_t matching on-disk layout by Denys Vlasenko · 7 years ago
  26. 7924b69 tar: trim help text by Denys Vlasenko · 7 years ago
  27. 8d6eab3 hush: fix prompt in multi-line $(()) by Denys Vlasenko · 7 years ago
  28. 17058a0 libbb: switch bb_ask_noecho() to "mallocing" string return API by Denys Vlasenko · 7 years ago
  29. bae8fc4 xargs: use bb_ask_y_confirmation_FILE() instead of homegrown copy by Denys Vlasenko · 7 years ago
  30. 77cb6b9 libbb: rename bb_ask -> bb_ask_noecho, bb_ask_confirmation -> bb_ask_y_confirmation by Denys Vlasenko · 7 years ago
  31. 2f094ae telnet: move winsize detection closer to I/O loop, delete non-functioning debug code by Denys Vlasenko · 7 years ago
  32. e0afe0a ftpd: allow -A if !FTPD_AUTHENTICATION as well by Denys Vlasenko · 7 years ago
  33. 8edaace ftpd: added -A option to disable all authentication, closes 10921 by Denys Vlasenko · 7 years ago
  34. 32c3e3a wget,ftpd: shorten and reuse strings by Denys Vlasenko · 7 years ago
  35. 9fe8bd8 httpd: do not default to Content-type: application/octet-stream by Denys Vlasenko · 7 years ago
  36. 6b6a3d9 scripts/kconfig/mconf.c: survive is SIGWINCH is not defined by Denys Vlasenko · 7 years ago
  37. 2c99702 i386: make stack size optimization selectable, and allow i486 insns (bswap) by Denys Vlasenko · 7 years ago
  38. 2ab994f placate gcc-8.0.1 warnings by Denys Vlasenko · 7 years ago
  39. f5018da hush: fix "unset PS1/PS2", and put them into initial variable set by Denys Vlasenko · 7 years ago
  40. d1d6d9c sort: smaller and more agressive FEATURE_SORT_OPTIMIZE_MEMORY by Denys Vlasenko · 7 years ago
  41. 00bd767 hush: if we did match "LINENO" or "OPTIND", stop further comparisons by Denys Vlasenko · 7 years ago
  42. cf079ff hush: consolidate handling of setting/unsetting of PSn, LINENO, OPTIND by Denys Vlasenko · 7 years ago
  43. de02625 hush: update to correctly handle changed var_bash[346].tests by Denys Vlasenko · 7 years ago
  44. f2ed39b hush: implement "hush -s" by Denys Vlasenko · 7 years ago
  45. d878ccc placate gcc 8.0.1 sprintf overflow warnings in config tools by Denys Vlasenko · 7 years ago
  46. 21b7f1b hush: fix a few more corner cases with empty-expanding `cmds` by Denys Vlasenko · 7 years ago
  47. 41d8f10 hush: fix corner cases with exec in empty expansions by Denys Vlasenko · 7 years ago
  48. 929a41d hush: less mind-bending set_vars_and_save_old() by Denys Vlasenko · 7 years ago
  49. 4e1dc53 hush: "no logic changes" in last commit was not true, fix it up by Denys Vlasenko · 7 years ago
  50. 34f6b12 hush: make run_pipe code simpler to understand, no logic changes by Denys Vlasenko · 7 years ago
  51. d358b0b hush: fix a bug where we don't properly handle f() { a=A; b=B; }; a= f by Denys Vlasenko · 7 years ago
  52. 332e411 hush: make var nesting code independent of "local" support by Denys Vlasenko · 7 years ago
  53. 6140780 hush: fix for readonly vars in "ro=A ro=B cmd" case by Denys Vlasenko · 7 years ago
  54. 759ca8a sort: move misplaced comment by Denys Vlasenko · 7 years ago
  55. c29c2e6 sort: FEATURE_SORT_OPTIMIZE_MEMORY by Denys Vlasenko · 7 years ago
  56. ee1fd12 ash: unbreak PS1 parsing after "ash: parser: Add syntax stack..." commit by Denys Vlasenko · 7 years ago
  57. fbf4485 hush: support "f() (cmd)" functions by Denys Vlasenko · 7 years ago
  58. 49015a6 hush: fix mishandling of "true | f() { echo QWE; }" by Denys Vlasenko · 7 years ago
  59. 5fa0505 hush: fix "set -e; false || x=1; echo OK" by Denys Vlasenko · 7 years ago
  60. 11752d4 hush: one-word, no-globbing handling of local/export/readonly args by Denys Vlasenko · 7 years ago
  61. f50e146 ash: parser: Fix parameter expansion inside inner double quotes by Denys Vlasenko · 7 years ago
  62. abf7556 hush: fix a backslash-removal bug in case by Denys Vlasenko · 7 years ago
  63. 9a95df9 ash: expand: Fix bugs with words connected to the right of $@ by Denys Vlasenko · 7 years ago
  64. 355ec35 ash: redir: Fix typo in noclobber code by Denys Vlasenko · 7 years ago
  65. c4c2012 ash: parser: Fix single-quoted patterns in here-documents by Denys Vlasenko · 7 years ago
  66. 8b536eb hush: remove stray debugging printout by Denys Vlasenko · 7 years ago
  67. 216913c ash: parser: Add syntax stack for recursive parsing by Denys Vlasenko · 7 years ago
  68. e84212f hush: update information comment about heredoc discrepancy by Denys Vlasenko · 7 years ago
  69. 899ae53 libbb: new function bb_die_memory_exhausted by Denys Vlasenko · 7 years ago
  70. e2afae6 sed: prevent overflow of length from bb_get_chunk_from_file by Quentin Rameau · 7 years ago
  71. 2da9724 libbb: remove unnecessary variable in xmalloc_fgets by Quentin Rameau · 7 years ago
  72. bb6f573 hush: add a comment where we differ from bash wrt heredoc EOF mark handling by Denys Vlasenko · 7 years ago
  73. 41fddb4 parser: Fix backquote support in here-document EOF mark by Denys Vlasenko · 7 years ago
  74. 1e5111b ash,hush: handle a few more bkslash-newline cases by Denys Vlasenko · 7 years ago
  75. 32e183e shells: fix var_LINENO1.tests false positive, add it to ash tests too by Denys Vlasenko · 7 years ago
  76. a94eeb0 hush: fix heredoc_bkslash_newline1.tests failure by Denys Vlasenko · 7 years ago
  77. 220be53 ash: use pgetc_eatbnl() in more places by Denys Vlasenko · 7 years ago
  78. ad4e961 ash: 'nolog' and 'debug' options cause "$-" to wreak havoc by Martijn Dekker · 7 years ago
  79. 7bf304f stat: fix a typo: s/romfs/ramfs/, closes 10876 by Denys Vlasenko · 7 years ago
  80. 6ffaa00 hush: fix a signedness bug by Denys Vlasenko · 7 years ago
  81. 7352307 ash,hush: new test dollar_repl_slash_bash2.tests by Denys Vlasenko · 7 years ago
  82. ac61f44 ash: fix "char == CTLfoo" comparison signedness bug by Denys Vlasenko · 7 years ago
  83. 60fb98e ash: use F_DUPFD_CLOEXEC and O_CLOEXEC by Denys Vlasenko · 7 years ago
  84. df65dc8 examples/var_service: new example: dnsmasq service by Denys Vlasenko · 7 years ago
  85. d950322 cpio: extract "unsafe" symlinks the same way tar/unzip does by Natanael Copa · 7 years ago
  86. 0d79d77 svok: new applet (daemontools compat) by Denys Vlasenko · 7 years ago
  87. d892f71 ifplugd service example: always run up/down script on startup by Denys Vlasenko · 7 years ago
  88. 2adaa90 ifplugd: if SIOCSIFFLAGS fails with EADDRNOTAVAIL, don't die by Stefan Agner · 7 years ago
  89. a82fe67 fbsplash: support configurable image position by Peter Korsgaard · 7 years ago
  90. 03fd7e0 grep: fix echo "aa" | busybox grep -F -w "a" (should not match) by Denys Vlasenko · 7 years ago
  91. 3be4b9b fstrim: do not check that specified file is on a block device by Denys Vlasenko · 7 years ago
  92. d1b8457 hush: add a FIXME comment by Denys Vlasenko · 7 years ago
  93. 9acd63c ash,hush: fix "saved" redirected fds still visible in children by Denys Vlasenko · 7 years ago
  94. e4defe8 libbb: use BUILD_BUG_ON in utoa_to_buf() by Denys Vlasenko · 7 years ago
  95. 123fdda ifupdown: do not fail if interface disappears during ifdown by Kaarle Ritvanen · 7 years ago
  96. 46ba246 ioctl(SIOCGIFINDEX) does not require clearing of entire ifr by Denys Vlasenko · 7 years ago
  97. 98592db netstat: produce numeric-ip output for non-resolved names by Mark Marshall · 7 years ago
  98. b5820d9 ssl_client: fix option parsing by Ron Yorston · 7 years ago
  99. b3e98b1 top: fix "warning: unused variable new_mask" by Denys Vlasenko · 7 years ago
  100. 3c08437 tar: add -o and -k to short --help too by Denys Vlasenko · 7 years ago