- f272df9 First cleanup pass on sysctl. by Rob Landley · 10 years ago
- 97c2c1e Add sysctl by Bilal Qureshi. by Rob Landley · 10 years ago
- 7e90d22 Add arp from Sandeep Sharma and Kyungwan Han. by Rob Landley · 10 years ago
- 5369517 sizeof("string") treats it as a char array _including_ the null terminator, so strncmp(dest, "string", sizeof("string")) is just strcpy. by Rob Landley · 10 years ago
- 6ef8ce4 Initial cleanup of last: mostly whitespace, move no record test to start of loop, don't bother to stat an empty file to report when an empty log was created (just report current time). by Rob Landley · 10 years ago
- 3a41541 Catch duplicate command name (which breaks the build already, but doesn't identify the culprit). by Rob Landley · 10 years ago
- 48c172b Switch human_readable() to just outputing decimal kilo/mega/gigabytes, make du use it, move it from lib/pending.c to lib.c. by Rob Landley · 11 years ago
- 30e28cf Use compiler built-in macros to determine if argument parsing can use double or float for FLOAT arguments. (I.E. whether double fits in a long's memory.) Check in a way that the macros not being defined just gives us the shorter one. by Rob Landley · 11 years ago
- 4c2bd62 Fix bug reported by Ashwini Sharma: rebound has to be at the end or toy_init() doesn't zero the rest of the struct. by Rob Landley · 11 years ago
- 26b2188 In function readfile(), the buffer buf is free'd when readall() fails. This free can cause a crash, if the buffer passed by user of function is not malloc'ed one. by Ashwini Sharma · 11 years ago
- a547cf1 Attached is the patch for lsattr and chattr implementation. by Ashwini Sharma · 11 years ago
- c54fdc9 Teach cpio to set uid/gid and timestamp. (Timestamp has year 2100 problem.) by Rob Landley · 11 years ago
- 7bcaf03 fold cleanup: whitespace and curly brackets. by Rob Landley · 11 years ago
- d9403ab Cosmetic tweak: spell out "Linux Standard Base" in menuconfig. by Rob Landley · 11 years ago
- 5f6ec72 Fix od bug reported by Samuel Holland ("od -v -b" was appending default output type even though an output type was specified). by Rob Landley · 11 years ago
- 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 · 11 years ago
- 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 · 11 years ago
- 3297e87 usage: is lower case (the help generator looks for that, might as well be consistent). by Rob Landley · 11 years ago
- 08e18fb Release announcement for 0.4.8. by Rob Landley · 11 years ago
- fd63a89 Added tag 0.4.8 for changeset 8556669d3928 by Rob Landley · 11 years ago
- aac4222 This version of fold fixes major bugs (infinite loop, overflow) and adds an option for un/refolding text. by Samuel Holland · 11 years ago
- 6c64f5f Revert lots of half-finished local debris I didn't mean to check in with Isaac's roadmap update. by Rob Landley · 11 years ago
- 76e1cb3 Probe for the existence of FIFREEZE and make fsfreeze depend on it. by Rob Landley · 11 years ago
- 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 · 11 years ago
- dd61393 A tool to reset the terminal. by Ashwini Sharma · 11 years ago
- 1d12fb6 An issue in ifconfig while verifying the HW Address, which is assumed to be of the format __C2:79:38:95:CD:AB__ but can be of form __C2:79:38:95:D:A__. In this case the HW address is reported as bad. by Ashwini sharma · 11 years ago
- 0d8467b An implementation of __printf__ is attached. by Ashwini Sharma · 11 years ago
- 603e206 iconv cleanup. by Rob Landley · 11 years ago
- 85224dd iconv is actually something I'm missing on my current musl based system. by Felix Janda · 11 years ago
- 8b6d56c getty: build fix, clean up messages, simplify code by Isaac Dunham · 11 years ago
- cbd7752 On further analysis, none of the glibc commands are interesting. by Rob Landley · 11 years ago
- 931425c roadmap: describe glibc commands. by Isaac Dunham · 11 years ago
- 669f332 Fix date setting, and fluff out help text a bit. by Rob Landley · 11 years ago
- 9953f64 modprobe: cleanup, incorporate Ashwini's fix for alias loading by Isaac Dunham · 11 years ago
- be07288 Bugfix: if $TERM and friends aren't set, putenv() got passed a NULL. by Rob Landley · 11 years ago
- 7eaf4f5 Document some of the new temporary files in generated/, add anchor tags. by Rob Landley · 11 years ago
- 348a800 Note commands bundled with glibc but not musl. by Rob Landley · 11 years ago
- 15938ae Modprobe from Madhur Verma and Kyungwan Han. by Rob Landley · 11 years ago
- ca51eb8 A getty implementation from Sandeep Sharma and Kyungwan Han. by Rob Landley · 11 years ago
- 882ca8b _mkflags_ had an issue for generating FLAG_xxxx macros for long options. by Ashwini Sharma · 11 years ago
- e6314da generated/help.h is a lot easier to read with an extra newline between each help entry. by Rob Landley · 11 years ago
- 6f9d481 openvt tries opening several devices to get an fd that points to the current console, without a need for read or write permissions. O_RDWR implies that both O_RDONLY and O_WRONLY would work, so skip it. Reindent. by Isaac Dunham · 11 years ago
- 547c8d9 Here is a basic implementation of fold[0]. It does not support multibyte characters, though that would probably just require more switch cases. by Samuel Holland · 11 years ago
- 7183a63 Decided not to go with the sflate implementation of deflate/inflate. The decompression side's already reimplemented in compress, and I'm working on compression side. by Rob Landley · 11 years ago
- 18720dc In ifconfig.c, there is a glitch in function get_addrinfo() when computing the prefix length. by Ashwini Sharma · 11 years ago
- 2b0b548 New toy fsfreeze, from Isaac Dunham, plus minor cleanups. by Rob Landley · 11 years ago
- 52ab00b bugfix: the multiplexer increments optc and then the command the multiplexer runs increments it further, resulting in a wrong count. Fix: zero it. by Rob Landley · 11 years ago
- 5b40582 Group headers by standard (POSIX or LSB) or function (internationalization, networking). Move headers standards ignore (but which have been there >15 years) to lib/portability.h. Fold xregcomp into lib since it's posix. by Rob Landley · 11 years ago
- d4f0125 find: clarify and expand the help for find -type by Isaac Dunham · 11 years ago
- 4b0341f Add help.html (make defconfig && help -ah > help.html) to index. by Rob Landley · 11 years ago
- 36aa7d7 Add help -a (to show all commands) and -h (to produce HTML output). by Rob Landley · 11 years ago
- e9a41fc Fix cpio -it: don't close(fd) unless we opened it. by Isaac Dunham · 11 years ago
- 392e127 More cpio bugfixes from Isaac Dunham. by Rob Landley · 11 years ago
- a2d5581 Promote cpio out of pending. by Rob Landley · 11 years ago
- 6d796b6 Several cpio bugfixes spotted by Isaac Dunham. by Rob Landley · 11 years ago
- dba5a37 Most of the remaining cpio cleanup. by Rob Landley · 11 years ago
- 02f5a30 Fix mkdir -p with absolute paths. by Rob Landley · 11 years ago
- 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 · 11 years ago
- 817d97b Clarify an unclear comment pointed out by Steve Long. by Rob Landley · 11 years ago
- 9ea9911 Next round of cpio cleanup. by Rob Landley · 11 years ago
- 2c451a8 Cleanup cpio: use getline() instead of fgets(), have getline() allocate its own memory (instead of using toybuf), use perror_msg() instead of lower level verror_msg() (which is really an internal function needed to implement perror_msg()), don't set execute bits on created archive. by Rob Landley · 11 years ago
- bab79fe Cleanup cpio: fiddle with help text, make option parsing require/exclude -iot combinations, move loopfiles_stdin() down after write_cpio_member() so we can hardwire it instead of using a function pointer that only ever has one value. by Rob Landley · 11 years ago
- c8f379c Patch from Isaac Dunham to add cpio -d, with a few tweaks by me. by Rob Landley · 11 years ago
- ca1b60e Move mkpathat to lib, remove redundant function used by patch. by Rob Landley · 11 years ago
- a8b88fe Add "volatile" annotation to peek/poke to stop potential optimizer overreach. by Rob Landley · 11 years ago
- fad38c7 Factor out mkpathat. by Rob Landley · 11 years ago
- 69664c2 Promote freeramdisk from pending to other, default y. by Rob Landley · 11 years ago
- d96e0ba Cleanup freeramdisk: tabs to 2 spaces, square brackets for option name, do optional cleanup under if (CFG_TOYBOX_FREE) guard. by Rob Landley · 11 years ago
- 728b8ff Please find the patches attached herewith for adding 3 new commands - by Vivek Bhagat · 11 years ago
- 4d886d6 Broken URL that's been pointed out to me a couple times when I'm not at a machine I can fix it from, keep forgetting... by Rob Landley · 11 years ago
- 4dd800c Fix another bug reported by Ashwini Sharma. by Rob Landley · 11 years ago
- da60b9b Fix two bugs reported by Ashwini Sharma. by Rob Landley · 11 years ago
- 170c397 Fix header file generation to not be confused by empty (but non-NULL) option string. by Rob Landley · 11 years ago
- 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 · 11 years ago
- 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 · 11 years ago
- 2992a66 Add -H option to cksum (hex output), fix to use FLAG macros. by Rob Landley · 11 years ago
- fa1625d Add crc code: zcat now works. by Rob Landley · 11 years ago
- 7dbb982 Update status page. by Rob Landley · 11 years ago
- c5dabf1 Update inflate code: fixed tables, bugfixes, zcat alias. by Rob Landley · 11 years ago
- a235901 Make CLEANUP transitions work, so multiple NEWTOY() can exist in the same file. by Rob Landley · 11 years ago
- 1fb3ae7 Various cleanups found by Tom Sparrow's static analysis. by Rob Landley · 11 years ago
- 33b022d Ok, _maybe_ I'm rewriting deflate from scratch rather than cleaning up the existing one, but you can't prove it. I plead the fifth, third, twelvefth, twentieth, twenty-first, twenth-fith, and twenty-seventh. by Rob Landley · 11 years ago
- 3cd89c3 Not buying it, eh? by Rob Landley · 11 years ago
- b34b237 Nothing to see here, move along. by Rob Landley · 11 years ago
- 5a2583a Fix segfault with single build of a command with bare longopts. by Rob Landley · 11 years ago
- b6c8a86 Move bunzip2 logic from lib into bzcat. by Rob Landley · 11 years ago
- 5486075 Tweak help text. by Rob Landley · 11 years ago
- a89f8aa More cleanup.html documentation, still way behind... by Rob Landley · 11 years ago
- 0e040df Use right config for single builds. by Rob Landley · 11 years ago
- 030c3f3 Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28" by Rob Landley · 11 years ago
- 0bf4c95 gzip: alphebetize help entries and remove trailing literal \n, check for command line option groups, move len/dist tables to GLOBALS and calculate instead of including literal tables, collate enum and typedef, convert main to toybox option parsing. by Rob Landley · 11 years ago
- 39f39b3 More gzip whitespace tweaks, and the occasional curly bracket. No actual code changes. by Rob Landley · 11 years ago
- 7ea4ebf Convert leading tabs to spaces for gzip. by Rob Landley · 11 years ago
- 05910a2 Add Szabolcs Nagy's deflate/inflate code from git://git.suckless.org/flate by Rob Landley · 11 years ago
- 0432050 More elaborate help text collating logic. by Rob Landley · 11 years ago
- c8cce3f init: don't use VT_OPENQRY. by Isaac Dunham · 11 years ago
- 714a0db Two changes to shut up GCC: by Isaac Dunham · 11 years ago
- d7e41f1 -Eradicate (char*) casts for strings. by Isaac Dunham · 11 years ago
- c049bca Collate usage: lines in help text. by Rob Landley · 11 years ago
- 59d85e2 Rename xmsprintf() to just xmprintf(). by Rob Landley · 11 years ago