aboutsummaryrefslogtreecommitdiff
path: root/libbb/messages.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Another whack at scripts/individual. Now builds 212 applets.Rob Landley2006-08-091-3/+5
|
* Replace current verbose GPL stuff in libbb/*.c with one-line GPL boilerplate."Robert P. J. Day"2006-07-101-1/+0
|
* - reuse strings and messages. Saves about 600BBernhard Reutner-Fischer2006-06-071-1/+7
|
* - introduce and use bb_path_wtmp_file for portability (saves 11 Bytes).Bernhard Reutner-Fischer2006-05-261-0/+14
| | | | - fix last.c to also look at the double-underscore UT_ defines.
* - include proper headers.Bernhard Reutner-Fischer2006-04-051-1/+0
|
* - move buffer allocation schemes to libbb.hBernhard Reutner-Fischer2006-04-031-13/+1
| | | | - include the correct headers: applets need busybox.h while lib* need libbb.h
* moved BB_BANNER to applets/version.c file: make kernel like version, "Vladimir N. Oleynik"2006-02-161-1/+6
| | | | removed depend loop: busybox.h depend with BB_BT, and all sources depend with busybox.h
* common BUFSIZ BSS buffer, small reduce code, data and bss"Vladimir N. Oleynik"2005-10-151-0/+3
|
* usage bb_dev_null"Vladimir N. Oleynik"2005-10-121-2/+2
|
* bb_dev_null"Vladimir N. Oleynik"2005-10-121-0/+4
|
* Add bb_msg_read_errorEric Andersen2005-04-161-0/+3
|
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-151-1/+1
|
* move all "-/bin/sh" "/bin/sh" and "sh" to libbb/messages.c file as oneGlenn L McGrath2003-09-021-0/+4
| | | | | constant. Vodz last_patch_107
* Update a bunch of docs. Run a script to update my email addr.Eric Andersen2003-07-141-2/+1
|
* Major coreutils update.Manuel Novoa III2003-03-191-35/+24
|
* last_patch61 from vodz:Eric Andersen2002-10-101-1/+1
| | | | | | | | | New complex patch for decrease size devel version. Requires previous patch. Also removed small problems from dutmp and tar applets. Also includes vodz' last_patch61_2: Last patch correcting comment for #endif and more integrated with libbb (very reduce size if used "cat" applet also). Requires last_patch61 for modutils/config.in.
* Port over the last of the tinylogin appletsEric Andersen2002-06-231-0/+36
| | | | -Erik
* Major rework of the directory structure and the entire build system.Eric Andersen2001-10-241-2/+3
| | | | -Erik
* Patch from vodz:Eric Andersen2001-07-121-0/+3
| | | | | | | Changed email address cmdedit API change optimizations for traceroute and md5sum added a new shared create_icmp_socket() function
* Fix a segfault in lash, hush, and cmdedit. Each of these usedEric Andersen2001-05-111-0/+3
| | | | | | xgetcwd, but did not check the return for a NULL, and then continued to call strlen on the NULL when the cwd had been removed from under it. -Erik
* These messages can be .rodata, so make them even more const.Eric Andersen2001-04-301-12/+12
| | | | -Erik
* libbb.h now includes ../busybox.h. This way, files in libbb that haveMark Whitley2001-04-251-1/+1
| | | | | BB_[FEATURE] #defines won't be ignored. Credit to Magnus Damm for spotting this.
* Move messages.c to libbb. Make each string in messages.c be its own .o file.Eric Andersen2001-04-251-0/+61
This way, we can new get rid of all that tedious #define rubbish we used to need to enable specific messages. This way is enormously simpler, and as a bonus also ends up saving us 96 bytes. -Erik