summaryrefslogtreecommitdiff
path: root/util-linux (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* openvt,getty,vfork_daemon_rexec,mount: tighten up fd cleanup codeDenis Vlasenko2007-01-191-1/+1
| | | | | | | | | (will close all fd's > 2 on daemonization now) getty: fix "getty -" support, and also do not try to chown/chmod "-" telnetd: fix "lost ctty" bug Yet another attempt on saner function names: bb_sanitize_server_stdio(0/1) -> bb_sanitize_stdio() + bb_daemonize();
* whitespace fixes (leading spaces to tab)Denis Vlasenko2007-01-131-1/+1
|
* Trailing whitespace removal over entire treeDenis Vlasenko2007-01-111-10/+10
|
* fix verbose output; remove commented-out includes.Denis Vlasenko2007-01-111-6/+0
|
* ipv6-ization efforts continue. Few bugs are found,Denis Vlasenko2007-01-111-20/+10
| | | | unknown number likely introduced...
* fdisk: remove 8k buffer from bss - OSF labelsDenis Vlasenko2007-01-033-36/+37
| | | | are not THAT common anyway
* convert calloc to xzallocDenis Vlasenko2007-01-031-1/+1
| | | | fix sleep-on-die option
* fsck_minix: tiny optimizationDenis Vlasenko2007-01-031-9/+3
|
* forgot to svn add util-linux/minix.h :(Denis Vlasenko2007-01-032-1/+77
|
* fbset: move variable from data to bssDenis Vlasenko2007-01-032-25/+25
| | | | fsck_minix: fix fallout
* factor out minix structures/constants into minix.hDenis Vlasenko2007-01-032-264/+133
| | | | fsck_minix: optimizations
* fsck_minix: optimizations. ~130 bytesDenis Vlasenko2007-01-031-44/+47
|
* introduce small[u]intDenis Vlasenko2007-01-031-64/+69
| | | | fsck_minix: use it for flag variables. 140 bytes saved
* silly style fixesDenis Vlasenko2007-01-021-62/+61
|
* next bunch of fixes for bugs found by randconfigDenis Vlasenko2006-12-305-22/+24
|
* done a dozen of randconfig test. guess what? ALL failed...Denis Vlasenko2006-12-302-1/+5
| | | | these are resulting fixes
* merge post-1.3.0 fixesDenis Vlasenko2006-12-261-0/+3
|
* remove casts from xmalloc()Denis Vlasenko2006-12-191-1/+1
|
* u_short, ulong exterminatedDenis Vlasenko2006-12-195-67/+64
| | | | fdiskXXX: add a bit of sanity (not enough by far)
* mount: add getmntent_r stub for dietlibcDenis Vlasenko2006-12-181-1/+16
|
* s/extern inline/static ATTRIBUTE_ALWAYS_INLINE/gDenis Vlasenko2006-12-162-4/+4
| | | | xstrtou: disallow leading '+'
* more: fix for case when _FILE_OFFSET_BITS is not #defined.Denis Vlasenko2006-12-101-40/+28
| | | | samll size improvement.
* - provide central knob to turn off RPC related options.Bernhard Reutner-Fischer2006-12-011-0/+1
|
* "make bigdata" biggest offender dealt with:Denis Vlasenko2006-11-302-3/+5
| | | | xmalloc 16Kb buffer instead of keeping it in bss
* Well, I am not 100.00% usre that uint16 will suffice there.Denis Vlasenko2006-11-291-2/+2
| | | | We don't lose anything by using 'unsigned' instead.
* another -90 bytes. That #define is **evil**Denis Vlasenko2006-11-291-8/+12
|
* mkfs.minix: more cleanups, -~300 bytes of code.Denis Vlasenko2006-11-291-202/+204
| | | | Added debugging support.
* cut 0.5k off mkfs.minixDenis Vlasenko2006-11-293-198/+120
| | | | assorted strtoul fixes (that's what brought me into minix)...
* getopt32-ification of fdiskDenis Vlasenko2006-11-291-185/+165
|
* Closing bug 1040:Denis Vlasenko2006-11-271-1/+1
| | | | | | | The "quiet" option is quietly (hah) ignored. It should be passed through to the mount() syscall in the comma separated list of options. I found the problem with the vfat/msdos filesystems, which uses a quiet option to override some complaints and errors.
* style cleanup: return(a) -> return a, part 2Denis Vlasenko2006-11-272-3/+3
|
* style cleanup: return(a) -> return a, part 1Denis Vlasenko2006-11-271-1/+1
|
* byteswap ops had extra mask ops - removedDenis Vlasenko2006-11-273-15/+11
|
* small fixes:Denis Vlasenko2006-11-261-2/+2
| | | | | | fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc.
* hunt down improper include <>, make mkswap output 4Gb+ friendlyDenis Vlasenko2006-11-241-6/+7
|
* header_verbose_list: stop truncating file size in listingDenis Vlasenko2006-11-241-1/+1
|
* mount: if FILE* is NULL, it's not wise to use it.Denis Vlasenko2006-11-191-3/+5
|
* rodata cleanup. "unable to" == "cannot". -300 bytesDenis Vlasenko2006-11-184-14/+14
|
* umount: umount -a shouldn't stop on first failureDenis Vlasenko2006-11-121-5/+6
|
* rename: compare_string_array -> index_in_str_arrayDenis Vlasenko2006-11-051-3/+3
| | | | | introduce index_in_substr_array and use it in iproute2
* Unneeded code removed, usused field "unsigned pscpu" removedDenis Vlasenko2006-11-011-1/+1
|
* mostly style fixesDenis Vlasenko2006-11-013-99/+95
|
* ls: cleanup part 1Denis Vlasenko2006-10-281-1/+1
|
* OFF_T_FMT -> OFF_FMTDenis Vlasenko2006-10-271-1/+1
|
* top: batch mode should output all processesDenis Vlasenko2006-10-271-1/+1
|
* last nail into error_msg() (de)capitalizationDenis Vlasenko2006-10-271-1/+1
|
* rename functions to more understandable namesDenis Vlasenko2006-10-262-2/+2
|
* remove bb_printf and the likeDenis Vlasenko2006-10-262-100/+100
|
* mount: use switch (compare_string_array(..))Denis Vlasenko2006-10-261-36/+105
| | | | where appropriate, saves >100 bytes.
* xconnect is non-conforming to "xfunc like libc" rule. FixingDenis Vlasenko2006-10-261-1/+1
|