1. 3a64833 add some brute force logic tests by Mike Frysinger · 16 years ago
  2. a2b11e3 hush: fix "false && echo yes || echo no" bug 265 by Denis Vlasenko · 16 years ago
  3. 0969a49 hush: beautify re_execute_shell more by Denis Vlasenko · 16 years ago
  4. 34e573d hush: drop allocations in re_execute_shell by Denis Vlasenko · 16 years ago
  5. 3c7167b add tests for basic fd open/close/dupe by Mike Frysinger · 16 years ago
  6. dc41780 fix #>&- syntax for closing fds by Mike Frysinger · 16 years ago
  7. 9052600 fix redir1 tests -- usleep isnt standard in $PATH by Mike Frysinger · 16 years ago
  8. 5e883fb hush: micro-optimization. -37 bytes by Denis Vlasenko · 16 years ago
  9. b1d11bf hush: more efficient filtering of "safe" arithmetic by Denis Vlasenko · 16 years ago
  10. d0b4a8c hush: add <> and () as "safe" arith chars by Denis Vlasenko · 16 years ago
  11. bfbc971 hush: print cd error to stderr; use fopen_or_warn in builtin_source; by Denis Vlasenko · 16 years ago
  12. b0a6478 hush: fix "export a=a b=b" (was not setting and exporting b) by Denis Vlasenko · 16 years ago
  13. c8d2733 hush: update TODO list; + my usual pointless tweaks :( by Denis Vlasenko · 16 years ago
  14. d3f973e hush: mark SIGHUP TODOs better; don't disable SIGHUP for now, by Denis Vlasenko · 16 years ago
  15. a0e6512 hush: cosmetics, no code changes by Denis Vlasenko · 16 years ago
  16. f439304 modprobe/insmod for 2.4: support compressed modules. by Denis Vlasenko · 16 years ago
  17. 913a201 hush: strip NULs from file input, they are PITA/impossible to handle correctly by Denis Vlasenko · 16 years ago
  18. 258275d drop HUSH_VER_STR since it has no relevance anymore -- just use BB_VER by Mike Frysinger · 16 years ago
  19. c4a7af5 hush: fix trap clearing in subshells on MMU; simplify NOMMU a bit: by Denis Vlasenko · 16 years ago
  20. f937528 hush: audit and fix "interactive shell" setup code. by Denis Vlasenko · 16 years ago
  21. 46f9b6d hush: pass $! thru re-execution; try harder on re-exec; give error by Denis Vlasenko · 16 years ago
  22. 232be3e hush: suppress bogus warning from 4.2.1 by Denis Vlasenko · 16 years ago
  23. 18f2a79 build system tweaks to account for latest hush changes by Denis Vlasenko · 16 years ago
  24. d85a5df hush: randomconfig fixes by Denis Vlasenko · 16 years ago
  25. cc4c693 hush: plug the leak on NOMMU re-execute path by Denis Vlasenko · 16 years ago
  26. c3ff48b fixing mode on hush-leak/leak_argv1.tests by Denis Vlasenko · 16 years ago
  27. 8a496d5 fixing mode on hush-leak/leak_argv1.tests by Denis Vlasenko · 16 years ago
  28. 30db43b hush: fix passing of $n on NOMMU by Denis Vlasenko · 16 years ago
  29. 16a0c74 hush: fix hush-misc/break5.tests NOMMU failure by Denis Vlasenko · 16 years ago
  30. 0bb4a23 hush: fix all testsuite failures on NOMMU except memory leak. by Denis Vlasenko · 16 years ago
  31. 609f2ab hush: enable NOMMU re-execution logic. Some testsuite entries by Denis Vlasenko · 16 years ago
  32. 9aa7d6f hush: preparatory patch for NOMMU-safe { list } handling. by Denis Vlasenko · 16 years ago
  33. 42e78b9 ftpd: s/CONFIG_BUSYBOX_EXEC_PATH/bb_busybox_exec_path/ by Denis Vlasenko · 16 years ago
  34. 34d4d89 hush: fix NOMMU hangs in pseudo_exec_argv. Add forgotted setting by Denis Vlasenko · 16 years ago
  35. 552433b hush: fix "var=val >file" not creating file by Denis Vlasenko · 16 years ago
  36. a24c8ca hush: remove code which errors out on $- and $_, it's useless; by Denis Vlasenko · 16 years ago
  37. 7c98612 hush: remove CHAR_xxx constants by Denis Vlasenko · 16 years ago
  38. 6da69cd hush: get rid of charmap[] by Denis Vlasenko · 16 years ago
  39. dfa9de7 simplify maybe_die() slightly by Mike Frysinger · 16 years ago
  40. db2a9b6 hush: finally make `cmd` safe on NOMMU by Denis Vlasenko · 16 years ago
  41. e0755e5 hush: yet another randomconfig fix by Denis Vlasenko · 16 years ago
  42. cc8289d shell/math: randomconfig fix by Denis Vlasenko · 16 years ago
  43. 60b392f hush: randomconfig fixes by Denis Vlasenko · 16 years ago
  44. b6e6556 hush: improve parse_stream: does not require parsing context struct; by Denis Vlasenko · 16 years ago
  45. 240c255 hush: simplify parse_stream by Denis Vlasenko · 16 years ago
  46. 3718168 hush: fix bug with local environment vars in pipes; simplify parse_stream() by Denis Vlasenko · 16 years ago
  47. f9f7429 hush: explain parsing context structure by Denis Vlasenko · 16 years ago
  48. 027e3fd hush: straighten parse_stream() API a bit by Denis Vlasenko · 16 years ago
  49. a36258f trim trailing slashes from specified subdir so we output to the right place by Mike Frysinger · 16 years ago
  50. b7aaae9 hush: rename ->o_quote to ->o_escape by Denis Vlasenko · 16 years ago
  51. 7a79afa Arithmetic Expansion is supported now in hush, so drop from TODO by Mike Frysinger · 16 years ago
  52. f328e00 hush: do not inadvertently parse $((1 + "22")) as ok. -20 bytes code size by Denis Vlasenko · 16 years ago
  53. 2f1d394 hush: make a=55; echo $(($a + 1)) $((1 + $((2)) + `echo $a`)) work as expected by Denis Vlasenko · 16 years ago
  54. b29eb6e shells: do not need to have math state global by Denis Vlasenko · 16 years ago
  55. 0dfe1d2 fix ash-alias/alias.tests failure by Denis Vlasenko · 16 years ago
  56. 98c5264 split math code out of ash and into a standalone library so we can use it in any shell (like hush!) by Mike Frysinger · 16 years ago
  57. 551ffdc more of pointless whitespace fixes by Denis Vlasenko · 16 years ago
  58. bd79c3d dhcpd: remember and record hostnames; optimize get_option by Denis Vlasenko · 16 years ago
  59. 3266aa9 trailing whitespace removal by Denis Vlasenko · 16 years ago
  60. 88b8f0a sendmail: update by Vladimir by Denis Vlasenko · 16 years ago
  61. d308106 hust_test/*: use "$THIS_SH" instead of hush by Denis Vlasenko · 16 years ago
  62. 9983d80 volumeid: fix bug 249 "findfs finds the wrong partition" by Denis Vlasenko · 16 years ago
  63. f6fbd62 ash: add/improve comments, no code changes by Denis Vlasenko · 16 years ago
  64. 46aeab9 ash: fix $IFS handling in read. closes bug 235 by Denis Vlasenko · 16 years ago
  65. 7566bae hush: fix wait builtin by Denis Vlasenko · 16 years ago
  66. 70c6e40 libbb: fix typo in comment by Denis Vlasenko · 16 years ago
  67. 1b62ead hush: don't lie in comment by Denis Vlasenko · 16 years ago
  68. 7b830e7 hush: fix comments, no code changes by Denis Vlasenko · 16 years ago
  69. 422cd7c hush: make ^C work again, ^Z probably isn't working by Denis Vlasenko · 16 years ago
  70. abedaac hush: do not reset sighaldlers after fork - instead, prevent them from doing any harm by Denis Vlasenko · 16 years ago
  71. d576293 hush: rework signal and trap handling. Some smaller bits are TODO, by Denis Vlasenko · 16 years ago
  72. d690f68 implement `unset` semantics as required by POSIX by Mike Frysinger · 16 years ago
  73. 5f9f150 fix DOC build output to be like kbuild standard by Mike Frysinger · 16 years ago
  74. 0080ea7 update `trap` poisx link by Mike Frysinger · 16 years ago
  75. 87824e0 do not automatically display job information when the shell is not interactive by Mike Frysinger · 16 years ago
  76. 681a4b7 enable trap tests by Mike Frysinger · 16 years ago
  77. 9f8128f first pass at `trap` support in hush by Mike Frysinger · 16 years ago
  78. 0d907ea modutils: dont pass NULL options to init_module() by Denis Vlasenko · 16 years ago
  79. a83dbd4 build system: hdparm -d is not that dangerous, remove warning by Denis Vlasenko · 16 years ago
  80. a6eb7f4 sendmail: add more example in usage text by Denis Vlasenko · 16 years ago
  81. e1de3af module loading for 2.4: use fd-based io instead of FILE based; by Denis Vlasenko · 16 years ago
  82. fd303b1 add test cases for `trap` ... but disabled for now until trap support is committed by Mike Frysinger · 16 years ago
  83. 038fe44 sysctl: move code around to get rid of forward references. by Denis Vlasenko · 16 years ago
  84. 5a6617a sysctl: fix broken -p [file] - close bug 231 by Denis Vlasenko · 16 years ago
  85. b975feb mark msh as deprecated by Mike Frysinger · 16 years ago
  86. 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
  87. 8ec1c9d make sure we check job status whenever updating the prompt by Mike Frysinger · 16 years ago
  88. 0b87e4a test for invalid named variables by Mike Frysinger · 16 years ago
  89. 7c3e52c do not let handle_dollar() accept vars that start with a digit by Mike Frysinger · 16 years ago
  90. 56bdea1 implement `wait` builtin by Mike Frysinger · 16 years ago
  91. e61f07f remove ((expr)) bash'ism by Denis Vlasenko · 16 years ago
  92. 701ac18 randomconfig fix by Denis Vlasenko · 16 years ago
  93. 5a82845 update the normally disabled debug code around the syntax() func to use new maybe_die() by Mike Frysinger · 16 years ago
  94. a2333c8 randomtest fixes by Denis Vlasenko · 16 years ago
  95. 78f9d8e add hush tests for parameter expansion by Mike Frysinger · 16 years ago
  96. 6379bb4 implement most POSIX parameter expansions (~+500bytes) by Mike Frysinger · 16 years ago
  97. 42ab865 make sure we exit based on test failure rather than always exiting with 0 by Mike Frysinger · 16 years ago
  98. 25a6ca0 split up feature todo by posix/bash by Mike Frysinger · 16 years ago
  99. 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
  100. 19a7ea1 handle the "-s" command line option that POSIX requires by Mike Frysinger · 16 years ago