summaryrefslogtreecommitdiff
path: root/include (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* svlogd: new applet. +9k. Still too big, but it was 12k yesterday.Denis Vlasenko2006-11-163-0/+10
|
* rename: compare_string_array -> index_in_str_arrayDenis Vlasenko2006-11-051-1/+2
| | | | | introduce index_in_substr_array and use it in iproute2
* usage.h: stop using ancient USAGE_xxx (we have USE_xx now)Denis Vlasenko2006-11-051-34/+13
|
* ps: implement POSIX-like options, most notably -oDenis Vlasenko2006-11-051-0/+15
| | | | (activated by CONFIG_DESKTOP)
* smart_ulltoa5: make available in libbbDenis Vlasenko2006-11-051-0/+1
|
* replace /proc scanning code by more versatile one.Denis Vlasenko2006-11-051-12/+36
| | | | | | | Use it where appropriate. Stop scanning /etc/passwd *for every process*!!! (uid->username) top: reduce memory usage - we won't save unneeded fields from /proc info anymore. Downside: ~+250 bytes of code
* top: improve CPU% calculationDenis Vlasenko2006-11-051-2/+2
| | | | style fixes
* Unneeded code removed, usused field "unsigned pscpu" removedDenis Vlasenko2006-11-011-4/+3
|
* PID should be stored in pid_t, not int or long.Denis Vlasenko2006-11-011-4/+3
| | | | | find_pid_by_name() was returning 0 or -1 in last array element, but -1 was never checked. We can use just 0 intead.
* ls: cleanup part 1Denis Vlasenko2006-10-281-4/+4
|
* recursive_action: add depth paramDenis Vlasenko2006-10-271-4/+4
| | | | chmod: match coreutils versus following links
* chgrp: just call chown! :)Denis Vlasenko2006-10-271-2/+8
|
* chown: add -vcf support if CONFIG_DESKTOPDenis Vlasenko2006-10-271-2/+7
| | | | chmod: stop following symlinks
* chmod: support -vcf if CONFIG_DESKTOPDenis Vlasenko2006-10-271-2/+7
|
* reshuffle libbb.h contents so that order of decls makes senseDenis Vlasenko2006-10-271-268/+250
| | | | Found bad typo in largefile support :)
* Fix minor breakage in previous commitDenis Vlasenko2006-10-261-2/+2
|
* rename functions to more understandable namesDenis Vlasenko2006-10-261-15/+17
|
* remove bb_printf and the likeDenis Vlasenko2006-10-261-13/+4
|
* xconnect is non-conforming to "xfunc like libc" rule. FixingDenis Vlasenko2006-10-261-1/+3
|
* - revert r16191; re-add resize() applet.Bernhard Reutner-Fischer2006-10-252-0/+6
| | | | | | | text data bss dec hex filename 288 0 0 288 120 console-tools/_resize.o.gcc-2.95 258 0 0 258 102 console-tools/_resize.o.gcc-3.3 252 0 0 252 fc console-tools/_resize.o.gcc-3.4
* wget: wget $'-\207' ... should not be allowed to work. ever. :)Denis Vlasenko2006-10-251-1/+1
| | | | | So fix wget & getopt32. Also fix multiple --header options order: add and use rev_llist.
* cp: update help textDenis Vlasenko2006-10-221-4/+5
|
* cp: add support for -s, -l. Fix free(nonmalloc) bug.Denis Vlasenko2006-10-211-1/+4
| | | | | Add doc on POSIX's rules on -i and -f (insane!). ln: make "ln dangling_symlink new_link" work.
* watch: execute command thru shell, not fork/exec. Other fixesDenis Vlasenko2006-10-201-3/+4
|
* raidautorun: new applet, by:Denis Vlasenko2006-10-202-0/+8
| | | | | Thomas Jarosch (email?) and Bernhard Fischer <rep.nop@aon.at>
* message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko2006-10-201-6/+6
|
* build system: (try to) get rid of bb_config.h hackDenis Vlasenko2006-10-192-152/+1
|
* build system: check for ENABLE_, USE_ and SKIP_ (not only for CONFIG_)Denis Vlasenko2006-10-191-0/+3
|
* mount: support user mounts if CONFIG_DESKTOPDenis Vlasenko2006-10-161-1/+5
|
* nc: fix 2 my own buglets, and few someone else's too.Denis Vlasenko2006-10-161-13/+13
|
* grep: add support for -rDenis Vlasenko2006-10-142-3/+4
|
* add open_read_close() and similar stuffDenis Vlasenko2006-10-141-8/+15
|
* bb_get_[chomped]line_from_file wasn't descriptive enough.Denis Vlasenko2006-10-121-2/+3
| | | | Renaming...
* ifupdown: stop emitting annoying/misleading error messages.Denis Vlasenko2006-10-111-0/+4
| | | | Patch by Gabriel Somlo <somlo at cmu.edu>
* nmeter: new applet. ~4kDenis Vlasenko2006-10-112-0/+25
| | | | Fix build proble on x86_64
* od: provide full-blown od from coreutils if CONFIG_DESKTOPDenis Vlasenko2006-10-101-0/+2
|
* fixes from Vladimir Dronnikov <dronnikov@gmail.ru>Denis Vlasenko2006-10-101-3/+8
|
* start_stop_daemon: add -N <nice> compatDenis Vlasenko2006-10-082-0/+2
| | | | | [re]nice: add support for -nNNN w/o spaces, -NNN (nice only), simplified code
* correct largefile support, add comments about it.Denis Vlasenko2006-10-081-22/+48
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-082-24/+46
|
* dd: make it recognize not only 'k' but 'K' too;Denis Vlasenko2006-10-071-0/+25
| | | | make it (partially) CONFIG_LFS-aware
* dnsd fix; option_mask32 added. dnsd needs more love.Denis Vlasenko2006-10-061-1/+2
|
* httpd: add -u user[:grp] supportDenis Vlasenko2006-10-052-5/+12
|
* fixing build system overhaul fallout...Denis Vlasenko2006-10-051-0/+6
|
* build system overhaulDenis Vlasenko2006-10-054-5/+142
|
* bb_applet_name -> applet_nameDenis Vlasenko2006-10-031-1/+1
|
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-031-4/+4
| | | | | | | | 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.
* rename bb_default_error_retval -> xfunc_error_retvalDenis Vlasenko2006-10-031-1/+1
|
* random style fixesDenis Vlasenko2006-10-031-14/+16
|
* runit/chpst: "change process state" utilityDenis Vlasenko2006-10-033-3/+73
| | | | It's "nice" on steroids - can set uid/gid, mem/cpu limits etc. +3.5k