aboutsummaryrefslogtreecommitdiff
path: root/toys.h
AgeCommit message (Expand)Author
2024-04-08Version 0.8.11Rob Landley
2023-11-14Elliott wants to use CTRL(), and glibc implicitly pulls this in anyway.Rob Landley
2023-10-19Switch yes to writev() a redundant iovec to produce output in bigger chunks,Rob Landley
2023-08-06Enable shell command recursion.Rob Landley
2023-07-30Version 0.8.10Rob Landley
2023-03-09Fix up help plumbing. It's got HELP_FLAGS now.Rob Landley
2023-03-03Change FLAG(x) macros to always return 0 or 1. Treewide audit of FLAG()Rob Landley
2023-01-10Release 0.8.9Rob Landley
2022-08-12Release 0.8.8.Rob Landley
2022-05-06Release 0.8.7.Rob Landley
2022-02-12Move lib/lib.c into main.c so make.sh doesn't have to split it out seperately...Rob Landley
2021-12-29Move #include <sys/syscall.h> into toys.h.Rob Landley
2021-11-30Update version to 0.8.6 and add release notes.Rob Landley
2021-06-18Second attempt at making --help work with alias ls="ls --color"Rob Landley
2021-05-190.8.5 releaseRob Landley
2020-12-06Remove CONFIG_TOYBOX_I18N and just always support utf8.Rob Landley
2020-10-24Past time for 0.8.4Rob Landley
2020-03-11Redo NOFORK plumbing so commands like eval/unset can access/edit shell state.Rob Landley
2020-01-30Move TOYBOX_VERSION fallback definition to toys.h.Rob Landley
2019-04-21Forgot to check in the toys.envc declaration.Rob Landley
2019-03-11Work around musl-libc limitation.Rob Landley
2019-03-10Add TOYFLAG_ARGFAIL() to allow argument parsing failures to exit with value.Rob Landley
2019-01-22Fix sigjmp_buf/jmp_buf mismatches.Elliott Hughes
2019-01-19Fix various warnings building on FreeBSD.Rob Landley
2018-12-04Add FLAG(x) macro, expanding to (toys.optflags & FLAG_##x)Rob Landley
2018-11-30macOS: work around header idiosyncracies.Elliott Hughes
2018-03-23Inline toys/e2fs.h into mke2fs.c. (Debris from the dawn of time.)Rob Landley
2017-10-21Use char for exitval and wasroot (first capped at 8 bits and second's a flag).Rob Landley
2016-03-13Split out _xexit() from xexit() and give sigatexit() multiple callbacks.Rob Landley
2016-02-10Wean scripts/install.c off toys.h so cross compiling less brittle.Rob Landley
2016-01-30Fix two CFG_TOYBOX_SUID corner cases:Rob Landley
2015-12-13Start of TAGGED_ARRAY() infrastructure.Rob Landley
2015-12-12Make "ps -o TIME+ -k TIME+" work. Factor out -o field names, field lengths,Rob Landley
2015-12-10Expand toys.optargs to 64 bits so people adding more options to ls don't run ...Rob Landley
2015-09-29Make defconfig build for nommu.Rob Landley
2015-09-27Another chunk of nommu support, replacing toys.recursion with toys.stacktop.Rob Landley
2015-09-11Replace toys.exithelp with help_exit() in lib.Rob Landley
2015-05-18Switch id over to new infrastructure, switch id to use FORCE_FLAGS, andRob Landley
2015-05-03Move a prototype to the start of portability.h (suggested by Elliott Hughes)Rob Landley
2015-01-16Move pty.h back to toys.h (under LSB 4.1 headers).Rob Landley
2014-12-31Redo option parsing infrastructure so #define FORCE_FLAGS can unzero flag mac...Rob Landley
2014-12-31When you include the posix header libgen.h, glibc #defines basename to some r...Rob Landley
2014-11-19probe for getspnam(), forkpty(), utmpx, replace sethostname()Isaac Dunham
2014-10-26xexec() recursion limiter has to go after rebound or toy_init() zeroes it.Rob Landley
2014-09-27Have OLDTOY emit (redundant) function prototype so single.sh can build OLDTOY...Rob Landley
2014-09-09Two problems: 1) Sometimes toy_exec() needs to re-exec to gain dropped root p...Rob Landley
2014-06-09When locale is enabled, sprintf("%.123s", str) is counting characters, not by...Rob Landley
2014-05-21Add generic_signal() handler, which sets toys.signal and writes byte to toys....Rob Landley
2014-05-05Fix bug reported by Ashwini Sharma: rebound has to be at the end or toy_init(...Rob Landley
2014-04-09modprobe: cleanup, incorporate Ashwini's fix for alias loadingIsaac Dunham