summaryrefslogtreecommitdiff
path: root/util-linux (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* mount: (try to) support cifs with IPv6Denis Vlasenko2007-02-041-13/+22
|
* suppress warnings about easch <applet>_main() havingDenis Vlasenko2007-02-0324-0/+24
| | | | no preceding prototype
* preparatory patch for -Wwrite-strings #3Denis Vlasenko2007-01-294-15/+15
|
* preparatory patch for -Wwrite-strings #2Denis Vlasenko2007-01-293-4/+5
|
* combine depends linesMike Frysinger2007-01-241-2/+1
|
* correct file format errorsMike Frysinger2007-01-241-3/+3
|
* dnsd: getfileentry was leaking memoryDenis Vlasenko2007-01-221-18/+20
| | | | mount: improve readability
* Convert cmdedit into more generic line input facilityDenis Vlasenko2007-01-222-183/+172
| | | | | | (make history and completion optional at runtime). Use it for fdisk, as an example. Some unrelated fixes in fdisk are also here.
* 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
|