1. a913d92 Probe for -Wno-string-plus-int. by Rob Landley · 9 years ago
  2. 8b6bff5 Yank smack from singleconfig. by Rob Landley · 9 years ago
  3. 5640acb If a shortopt is configured out right before a bare longopt, the option parsing infrastructure segfaults because there's no next shortopt but the list isn't empty. (There was a test for this, but we're simultaneously traversing two lists and it was testing the wrong one.) by Rob Landley · 9 years ago
  4. 5b493dc Cleanup getprop, add qstrcmp() to lib for qsort (because posix-2008 broke by Rob Landley · 9 years ago
  5. 58c3269 Link against libattr and libsmack. by Xavier Roche · 9 years ago
  6. 90afbad Make toybox --version use the "git describe" info if it's available. by Rob Landley · 9 years ago
  7. 1f44b5f Yank $STRIP from config (and STRIP=no weirdness) and just allow strip to fail. by Rob Landley · 9 years ago
  8. 3b74147 scripts/mkflags.c : main function need return 0 if normal exit by Hyejin Kim · 9 years ago
  9. 57f93c8 Add LDFLAGS and STRIP=no support. by Rob Landley · 9 years ago
  10. 55fc160 Fix --help for single.sh builds. by Rob Landley · 9 years ago
  11. 45962a7 Move guts of "make change" to scripts/change.sh, don't try to build sh or help standalone. by Rob Landley · 9 years ago
  12. 912b2be Build standalone commands where "depends on" config entries need to be switched on. by Rob Landley · 9 years ago
  13. c2415d1 AOSP master has <pty.h> and builds netcat/nc. by Elliott Hughes · 9 years ago
  14. 4f53457 Need to update install.c for the changed OLDTOY() argument list. by Rob Landley · 9 years ago
  15. 3c99404 Tweak status.html by Rob Landley · 9 years ago
  16. f3e56f4 Redo option parsing infrastructure so #define FORCE_FLAGS can unzero flag macros for a disabled command (needed when multiple commands share infrastructure with a common set of flags). by Rob Landley · 9 years ago
  17. 627cd0f those of us who need to check in generated files find that 'tr' and by Elliott Hughes · 9 years ago
  18. 79839a4 Oops. xfork() moved to portability.c and the config2help.c build wasn't including that. (Worked until I did a "make clean".) by Rob Landley · 9 years ago
  19. e75b1d8 here's a patch that should let us replace toolbox's chcon. by Elliott Hughes · 9 years ago
  20. 42a36d6 Improve error reporting in parallel build. (On error, wait for all children to finish before exiting.) by Rob Landley · 9 years ago
  21. fd49375 When running a test, the diff is always an ascii diff, not binary. by Rob Landley · 9 years ago
  22. 62390fd Add "make change" target to build the big toybox binary as a bunch of little ones (in the "change" subdirectory), and tweak scripts/make.sh to avoid redundant work when rebuilding. by Rob Landley · 9 years ago
  23. 5614785 Fixups for the android/bionic build probes patch. by Rob Landley · 9 years ago
  24. 46ddf0e probe for getspnam(), forkpty(), utmpx, replace sethostname() by Isaac Dunham · 9 years ago
  25. 9dbcee4 Add color support for scripts/test.sh and new SKIP_HOST for tests expected to fail on non-toybox implementations. by Rob Landley · 9 years ago
  26. 5d4fa57 Multi-build single.sh should exit with an error when build breaks. by Rob Landley · 10 years ago
  27. 0b63d26 Allow single.sh to build more than one command per invocation. by Rob Landley · 10 years ago
  28. 94a4603 Delete generated/README.txt (the contents are in code.html now) so clean can just remove the "generated" directory entirely. by Rob Landley · 10 years ago
  29. e9695d1 Remove debug echo checked in by mistake. by Rob Landley · 10 years ago
  30. 387edf5 Move testsuite out of scripts/test into its own top level tests directory, and make ctrl-c kill "make test" more reliably. by Rob Landley · 10 years ago
  31. d3df423 Give library probe a progress indicator, and use 150% of detected CPUs to try to keep large SMP machines busy (each compiler invocation is short so they exit almost as fast as we launch them). by Rob Landley · 10 years ago
  32. 8aa87ab Create a generated/build.sh with a single compiler command line to rebuild the toybox_unstripped binary using the existing generated/*.h files. by Rob Landley · 10 years ago
  33. 09af6a7 Oops, unbreak make.sh. by Rob Landley · 10 years ago
  34. 7a07c6b Make tweaks: collate generated/*.o files into their own subdirectory, add PIPEFAIL for better error reporting, and simpler regex to select toys/*/*.c list based on NEWTOY/OLDTOY macros. by Rob Landley · 10 years ago
  35. 9bb73ad Don't hang for $CPUS=1. by Rob Landley · 10 years ago
  36. 01e6a73 Testsuites for toybox command - "tar", "bzcat", "xzcat", "zcat" and "hostname". by Divya Kothari · 10 years ago
  37. 207b6a6 chmod testsuite and link testsuite. by Divya Kothari · 10 years ago
  38. 658887a More parallel build tweaks. by Rob Landley · 10 years ago
  39. 9614620 Old compilers complain about linker options passed with -c, so split out $LDOPTIMIZE. by Rob Landley · 10 years ago
  40. 082a9a7 Another fix from Johan Bergstr?m, using the gnu/dammit version of sort on the host can be screwed up by more than one environment variable. by Rob Landley · 10 years ago
  41. 50b8297 Add VERBOSE=fail to "make tests", based on suggestion from Johan Bergstr?m. by Rob Landley · 10 years ago
  42. 5d16faa Fix parallel make not always catching errors before link time. by Rob Landley · 10 years ago
  43. be3a48c Enable a command's sub-options in single builds. by Rob Landley · 10 years ago
  44. 91b360a Parallelize the build. (set CPUS=1 to force single processor build, or another number to override processor count autodetect.) by Rob Landley · 10 years ago
  45. 825d714 Add --help support to single.sh builds. by Rob Landley · 10 years ago
  46. 2a53f53 Add factor. by Rob Landley · 10 years ago
  47. 1e1f441 Patch from Isaac Dunham to work around the deficiencies in musl's regex engine (which break building under alpine linux). by Rob Landley · 10 years ago
  48. 6335213 Have single.sh enable I18N and FLOAT. by Rob Landley · 10 years ago
  49. fbe5dda Implement -HL for cp. by Rob Landley · 10 years ago
  50. d6f8c41 Cut down from 1000+ file attribute tests to a more manageable number. by Rob Landley · 10 years ago
  51. ef0ed68 I have developed few testsuites for toybox commands - by Divya Kothari · 10 years ago
  52. 4a855d6 Have "make test" run tests in testdir/testdir instead of same directory as command symlinks. (Makes cleanup easier.) by Rob Landley · 10 years ago
  53. 434cefb Add fallocate probe for uClibc. by Rob Landley · 10 years ago
  54. a0f56be I have developed few testsuite for toybox commands - ls, ln, rm, mv, printf, dd, renice. by Divya Kothari · 10 years ago
  55. 368e264 host needs -lresolv by Rob Landley · 10 years ago
  56. 298fcd9 Isaac Dunham also reported that some diff implementations can't handle nonseekable input, so write to a temporary file instead of <(command). by Rob Landley · 10 years ago
  57. 0fe882b Isaac Dunham pointed out that busybox diff only implements unified diffs, and sent a patch to convert bloatcheck to use that. I tweaked it a bit. by Rob Landley · 10 years ago
  58. 471c4d2 Replace large parenthetical in bloatcheck with a function. by Rob Landley · 10 years ago
  59. 8b3b9aa The tests for link and du are attached. by Isaac Dunham · 10 years ago
  60. 670626a cpio: archive more files by Isaac Dunham · 10 years ago
  61. 6c54928 Pass the same $CFLAGS to the library probe as the final build, to work with broken build environments that provide different libraries for --static and dynamic builds. by Rob Landley · 10 years ago
  62. 3be2e3e Teach singleconfig to switch on sub-options of commands it's building. by Rob Landley · 10 years ago
  63. 3a41541 Catch duplicate command name (which breaks the build already, but doesn't identify the culprit). by Rob Landley · 10 years ago
  64. f9070f3 Add example directory, move hello.c into it, add skeleton.c to demonstrate more complciated stuff (multiple commands per file, etc), and have genconfig.sh sort backwards so posix is first and example last in menuconfig. by Rob Landley · 10 years ago
  65. 5fe77cf As long as uClibc's still around and requires you to jump through hoops to get iconv(), probe and build defconfig without it if it's not there. by Rob Landley · 10 years ago
  66. 76e1cb3 Probe for the existence of FIFREEZE and make fsfreeze depend on it. by Rob Landley · 10 years ago
  67. 15027d6 Probes for O_NOFOLLOW that compile and run something aren't compatible with cross compiling, so just #define it to 0 if it's not in fcntl.h where posix-2008 says. by Rob Landley · 10 years ago
  68. 882ca8b _mkflags_ had an issue for generating FLAG_xxxx macros for long options. by Ashwini Sharma · 10 years ago
  69. e6314da generated/help.h is a lot easier to read with an extra newline between each help entry. by Rob Landley · 10 years ago
  70. 64f6164 There are cases when the long options are of the format abc-def. In current implementation FLAG_xxx macros are generated for long options too. with __-__ sign in the macro, it will generate errors. by Ashwini Sharma · 10 years ago
  71. fad38c7 Factor out mkpathat. by Rob Landley · 10 years ago
  72. 170c397 Fix header file generation to not be confused by empty (but non-NULL) option string. by Rob Landley · 10 years ago
  73. 6ebe03d Put all FOR_xxx blocks after all CLEANUP_xxx in generated/flags.h so the usages don't have to be in alphabetical order. by Rob Landley · 10 years ago
  74. e36a9dd CLEANUP transitions require all the generated/flags.h stanzas always be present (even for commands disabled in the config) to avoid undefined symbol errors referencing FLAG_ macros. by Rob Landley · 10 years ago
  75. 7dbb982 Update status page. by Rob Landley · 10 years ago
  76. a235901 Make CLEANUP transitions work, so multiple NEWTOY() can exist in the same file. by Rob Landley · 10 years ago
  77. 1fb3ae7 Various cleanups found by Tom Sparrow's static analysis. by Rob Landley · 10 years ago
  78. 5a2583a Fix segfault with single build of a command with bare longopts. by Rob Landley · 10 years ago
  79. 0e040df Use right config for single builds. by Rob Landley · 10 years ago
  80. 0432050 More elaborate help text collating logic. by Rob Landley · 10 years ago
  81. c049bca Collate usage: lines in help text. by Rob Landley · 10 years ago
  82. 2ded833 Help text, collate usage blocks (badly). by Rob Landley · 10 years ago
  83. 86cafe1 Replace python help converter with C implementation. by Rob Landley · 10 years ago
  84. 46c8069 Cosmetic tweak. by Rob Landley · 10 years ago
  85. 712b125 Clean up half-finished blkid.test. by Rob Landley · 10 years ago
  86. bb5cfb2 Older python spit --version to stdout, 2.7 does it to stderr. Of course. by Rob Landley · 10 years ago
  87. 0201900 Regression test against Ancient Build Environment (Ubuntu 8.04), fixup bit-rot. by Rob Landley · 10 years ago
  88. ed9eac3 Ashwini Sharma added -v, I tweaked it a bit and added a couple test suite entries. by Rob Landley · 10 years ago
  89. 75cb924 Add test suite for blkid and clean up an editorial comment that shouldn't have been checked in. by Rob Landley · 10 years ago
  90. dcf52cb Remove leftover debris from scripts/test.sh that screws up single tests with single.sh. by Rob Landley · 10 years ago
  91. cc1d6e3 Filesystem images for testing blkid, from Bradley Conroy. by Rob Landley · 10 years ago
  92. 2baa73f Promote nl from pending to posix, and add tests. by Rob Landley · 11 years ago
  93. 73fff3b Don't use $CC without $CROSS_COMPILE because $HOSTCC could be something else entirely. by Rob Landley · 11 years ago
  94. 26f52eb Teach scripts/test.sh to call scripts/single.sh. by Rob Landley · 11 years ago
  95. 207cada Switch flag generation from shell to C. by Rob Landley · 11 years ago
  96. 75a1815 Fix generated/oldtoys.h to contain option strings with USE() macros in them. by Rob Landley · 11 years ago
  97. 9b9a1ef First pass of cut cleanup, and make test script slightly happier with the concept of 80 character lines. by Rob Landley · 11 years ago
  98. bb215e4 Adjust patch to use dlist_pop() by Rob Landley · 11 years ago
  99. 5f57bcc Redo tail closer to the original design. Add more tests for large data sets. (Still no -f support yet.) by Rob Landley · 11 years ago
  100. 21d4d71 Allow shipped generated/help.h to still be used, until I rewrite the generator in C. by Rob Landley · 11 years ago