Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | message string changes, mostly for consistency, also -32 bytes in .rodata | Denis Vlasenko | 2006-10-20 | 1 | -2/+2 | |
| | ||||||
* | getopt_ulflags -> getopt32. | Denis Vlasenko | 2006-10-03 | 1 | -3/+3 | |
| | | | | | | | | It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit. | |||||
* | Another whack at scripts/individual. Now builds 212 applets. | Rob Landley | 2006-08-09 | 1 | -8/+2 | |
| | ||||||
* | Add one-line GPL boilerplate to numerous (but not all yet) source files. | "Robert P. J. Day" | 2006-07-12 | 1 | -14/+1 | |
| | ||||||
* | Standardize on the vi editing directives being on the first line. | "Robert P. J. Day" | 2006-07-02 | 1 | -0/+1 | |
| | ||||||
* | - add central knob to turn off getopt_long everywhere. EXPERIMENTAL! | Bernhard Reutner-Fischer | 2006-05-26 | 1 | -0/+4 | |
| | | | | | | Adds "Enable getopt long" under "General options", default y. Send patches to fix getopt_ulflags and run_parts.c if you turn this off.. See http://busybox.net/lists/busybox/2006-May/021828.html for a start to run-parts | |||||
* | - typos: s/compatability/compatibility/g;s/compatable/compatible/g; | Bernhard Reutner-Fischer | 2006-04-02 | 1 | -1/+1 | |
| | ||||||
* | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | 2006-03-06 | 1 | -1/+1 | |
| | | | | definitions. (That should only be on prototypes.) | |||||
* | clean up yet more annoying signed/unsigned mismatches and fixup | Eric Andersen | 2006-01-30 | 1 | -1/+1 | |
| | | | | yet more incorrect types | |||||
* | just whitespace | Tim Riker | 2006-01-25 | 1 | -1/+1 | |
| | ||||||
* | - new bb_opt_complementally syntax, use [-:?] only - 'free' chars | "Vladimir N. Oleynik" | 2005-10-14 | 1 | -1/+1 | |
| | | | | | - new bb_getopt_ulflags features: check max and min args, convert first argv to options special for ar and tar applets - use bb_default_error_retval for env applet | |||||
* | - use complementally '!' to '?' - 'ask' is best 'free' char for this. | "Vladimir N. Oleynik" | 2005-10-11 | 1 | -1/+1 | |
| | | | | | - more long opt compatibility, can set flag for long opt struct now - more logic: check opt-depend requires and global requires, special for 'id' and 'start-stop-daemon' applets. | |||||
* | When lstat returns an error (such as file not found), the value of | Rob Landley | 2005-10-09 | 1 | -10/+9 | |
| | | | | | | st_mode is random garbage (under uClibc), leading to random triggering of the S_ISDIR() case when the destination will be a normal file which doesn't exist yet. I.E. checking the return value of lstat is not optional. | |||||
* | - rename libbb's password helpers as suggested in libbb.h | Bernhard Reutner-Fischer | 2005-09-20 | 1 | -2/+2 | |
| | | | | | | | | my_getpwnam -> bb_xgetpwnam /* dies on error */ my_getgrnam -> bb_xgetgrnam /* dies on error */ my_getgrgid -> bb_getgrgid my_getpwuid -> bb_getpwuid my_getug -> bb_getug | |||||
* | Cleanup patch by Bernhard Fischer, removing unnecessary includes of | Rob Landley | 2005-09-11 | 1 | -1/+1 | |
| | | | | getopt.h, whitespace changes, typos, etc. | |||||
* | 1) bb_opt_complementaly -> bb_opt_complementally | "Vladimir N. Oleynik" | 2005-09-05 | 1 | -6/+1 | |
| | | | | | 2) better support long options 3) new flag '!' for bb_opt_complementally: produce bb_show_usage() if BB_GETOPT_ERROR internally | |||||
* | change the hardcoded error constant (0x80000000UL) to a nice flexible define ↵ | Mike Frysinger | 2005-05-11 | 1 | -1/+1 | |
| | | | | (BB_GETOPT_ERROR) | |||||
* | Update my email address, document some of my tasks in the AUTHORS file | Glenn L McGrath | 2004-04-25 | 1 | -1/+1 | |
| | ||||||
* | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | 2004-03-15 | 1 | -5/+5 | |
| | ||||||
* | Enable long options, adds 150 bytes. | Glenn L McGrath | 2004-01-23 | 1 | -1/+12 | |
| | ||||||
* | Check valid options were given | Glenn L McGrath | 2004-01-23 | 1 | -0/+6 | |
| | ||||||
* | Dont change ownership unless we created the directory. | Glenn L McGrath | 2004-01-23 | 1 | -4/+6 | |
| | ||||||
* | Remove unneeded conditions and logic, fix bug where ownership didnt | Glenn L McGrath | 2004-01-23 | 1 | -33/+34 | |
| | | | | | | change. Dont use bb_make_directory it doesnt have the features, and its ugly to work around it. | |||||
* | Fix a bug, ignore the source path when installing to a directory. | Glenn L McGrath | 2003-11-27 | 1 | -45/+41 | |
| | | | | | We may be installing symlinks, so use lstat/lchown. Make use of bb_getopt_ulflags and cp_mv_stat2, save 100 bytes. | |||||
* | Accept the -c option and do nothing | Glenn L McGrath | 2003-10-29 | 1 | -0/+3 | |
| | ||||||
* | Add the -d option | Glenn L McGrath | 2003-09-24 | 1 | -1/+31 | |
| | ||||||
* | Add the "install" applet, move get_ug_id to libbb as its used by chown, | Glenn L McGrath | 2003-09-24 | 1 | -0/+102 | |
chgrp and install. |