aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
Commit message (Expand)AuthorAgeFilesLines
* Didn't check in all my local basename_r->getbasename changes. (Oops.)Rob Landley2016-04-101-1/+1
* main.c: fix non-root usage when installed suid rootPatrick Ohly2016-02-101-1/+1
* Release time.Rob Landley2016-02-021-1/+1
* Fix two CFG_TOYBOX_SUID corner cases:Rob Landley2016-01-301-3/+8
* Version 0.6.1Rob Landley2015-11-031-1/+1
* Another chunk of nommu support, replacing toys.recursion with toys.stacktop.Rob Landley2015-09-271-23/+40
* Replace toys.exithelp with help_exit() in lib.Rob Landley2015-09-111-5/+2
* Make multiplexer's "command not found" exit 127.Rob Landley2015-08-061-1/+4
* Tweak version number.Rob Landley2015-07-191-1/+1
* Replace android-specific hack with just signal(SIGPIPE, SIG_IGN).Rob Landley2015-05-031-8/+2
* Add default sigpipe handler for android (as suggested by Elliott Hughes).Rob Landley2015-04-301-0/+9
* Make toybox --version use the "git describe" info if it's available.Rob Landley2015-04-171-0/+2
* Adding --version broke ./toybox command list. (Oops.)Rob Landley2015-04-071-2/+5
* Add --version to multiplexer.Rob Landley2015-04-051-5/+5
* The "no }" error with find | xargs sed is because toy_init() wasn't blanking ...Rob Landley2015-03-061-0/+1
* Only discard optargs in toy_exec() after finding the command to run (otherwis...Rob Landley2015-02-151-3/+3
* Make toy_exec() check if argc is in optargs and deal with it there so we don'...Rob Landley2015-02-071-0/+3
* Remove trailing whitespace.Rob Landley2015-01-181-1/+1
* Move fflush() checking to xexit() and have exit paths in main() call that.Rob Landley2015-01-031-3/+1
* Redo option parsing infrastructure so #define FORCE_FLAGS can unzero flag mac...Rob Landley2014-12-311-2/+3
* The "re-exec to regain root permissions" logic broke the error message when c...Rob Landley2014-11-291-1/+1
* Cosmetic tweak: no trailing spaces when ./toybox lists command names.Rob Landley2014-10-261-5/+3
* Don't segfault for --help of single.sh build of OLDTOY commands that use anot...Rob Landley2014-09-271-1/+3
* Always call setlocale if I18N is enabled, so nested toy_exec() can switch it ...Rob Landley2014-09-201-1/+1
* Two problems: 1) Sometimes toy_exec() needs to re-exec to gain dropped root p...Rob Landley2014-09-091-1/+7
* Give a hint when setuid logic fails.Rob Landley2014-08-311-2/+4
* Forgot to check in main() part of TOYFLAG_LOCALE change.Rob Landley2014-06-211-2/+2
* Move toys.toycount initialization _after_ zeroing toys, so help -a works again.Rob Landley2014-06-111-2/+1
* The "not root" test happens before looking for --help, so "./sulogin --help" ...Rob Landley2014-05-241-1/+4
* Add generic_signal() handler, which sets toys.signal and writes byte to toys....Rob Landley2014-05-211-0/+1
* bugfix: the multiplexer increments optc and then the command the multiplexer ...Rob Landley2014-04-011-0/+1
* Add help -a (to show all commands) and -h (to produce HTML output).Rob Landley2014-03-281-0/+2
* Fix some issues raised (albeit indirectly) by Isaac Dunham.Rob Landley2013-12-231-1/+2
* Don't permute toys.optargs, cleanup code (xexec()) can free it.Rob Landley2013-12-191-1/+1
* Introduce libbuf analogous to toybuf but for use by lib/*.c. Change readfile(...Rob Landley2013-09-031-1/+1
* Add scripts/single.sh to build individual non-multiplexed standalone commands.Rob Landley2013-08-301-1/+1
* Fix --help option to multiplexer.Rob Landley2013-08-211-11/+5
* Start of TOYBOX_SINGLE support, for building standalone commands with no mult...Rob Landley2013-07-191-22/+37
* Add config option for --help support in all commands.Rob Landley2013-06-301-2/+8
* Add --help option to toybox command when TOYBOX_HELP is enabled.Rob Landley2013-05-081-4/+12
* Fix some comments from way back when toybox first started (in 2006), when I w...Rob Landley2013-04-211-3/+3
* Use basename() where appropriate.Rob Landley2013-01-051-10/+2
* TOYBOX_DEBUG warns about lack of suid bit when running a STAYROOT command, bu...Rob Landley2012-12-271-1/+2
* Elie De Brauwer pointed out that xputs() isn't reliably reporting errors beca...Rob Landley2012-12-231-0/+1
* Cleanup i18n support (#ifdefectomy, move global init to process launch). Teac...Rob Landley2012-11-261-3/+2
* Make internalization support optionalFelix Janda2012-11-211-0/+3
* Init global context to toybox multiplexer early so error_exit() doesn't segfa...Rob Landley2012-11-181-2/+2
* Set optc when optstring NULL.Rob Landley2012-11-161-1/+4
* Add rebound support to intercept error_exit() and longjmp instead.Rob Landley2012-11-161-2/+2
* Reindent to two spaces per level. Remove vi: directives that haven't worked r...Rob Landley2012-11-131-86/+83