summaryrefslogtreecommitdiff
path: root/util-linux (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* losetup: use /dev/loopN or /dev/loop/N according to CONFIG_FEATURE_DEVFS=n/yDenis Vlasenko2006-09-291-2/+2
|
* Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko2006-09-291-1/+1
|
* mount: fix bug 946 (mount -f should update mtab)Denis Vlasenko2006-09-291-6/+6
|
* losetup: with no arguments lists all /dev/loopN. Corrected help text.Denis Vlasenko2006-09-271-3/+15
| | | | (patch by Vladimir Dronnikov <dronnikov@gmail.ru>)
* mount: fix breakage from recent changes (spurious -ro mounts)Denis Vlasenko2006-09-241-19/+11
|
* hexdump: fixlet for my breakageDenis Vlasenko2006-09-231-1/+1
|
* hexdump: deindent, almost fits into 80 columns nowDenis Vlasenko2006-09-231-34/+32
|
* losetup: getopt_ulflags'ification + small fix for perror_nomsgDenis Vlasenko2006-09-221-33/+35
|
* getopt: fix whitespace damageDenis Vlasenko2006-09-221-14/+14
|
* readprofile: getopt_ulflags'isationDenis Vlasenko2006-09-221-38/+6
|
* ipcs: fix my recent breakageDenis Vlasenko2006-09-221-1/+1
|
* Change license statements (and clean up headers) on some of the files thatRob Landley2006-09-228-20/+8
| | | | Erik or I are primary copyright holders on.
* mount: nfs mount should enable bb_error-to-syslog supportDenis Vlasenko2006-09-211-0/+1
|
* mount: make Rob happy by reinstating #definesDenis Vlasenko2006-09-211-4/+2
|
* ipcs: fix output (misaligned columns)Denis Vlasenko2006-09-191-2/+2
|
* ipcs: getopt_ulflag'ification, -170 bytesDenis Vlasenko2006-09-191-39/+16
|
* mount: fstabname needs to be const char*Denis Vlasenko2006-09-191-2/+3
|
* mount: fix warning (printf field width of * wants int, not size_t)Denis Vlasenko2006-09-191-1/+1
|
* whitespace cleanupDenis Vlasenko2006-09-177-27/+27
|
* mount: style fixletDenis Vlasenko2006-09-171-2/+4
|
* mount: revert mount --bind to using "bind" as fstype.Denis Vlasenko2006-09-171-1/+1
|
* mount: mount_it_now() - char *dir is not really needed.Denis Vlasenko2006-09-171-3/+3
|
* mount: fix "duplicate mount options in mtab" bugDenis Vlasenko2006-09-171-3/+21
|
* mount: nfs_strerror's static buffer was bigger than needed.Denis Vlasenko2006-09-171-1/+1
|
* mount: getopt_ulflag'ificationDenis Vlasenko2006-09-171-38/+24
|
* mount: style fixesDenis Vlasenko2006-09-171-34/+34
|
* mount: fix bugs: free(mp->mnt_fsname) of non-malloced ptr;Denis Vlasenko2006-09-171-17/+20
| | | | check for "more than 2 arguments" was actually checking for -2.
* mount: use bb_simplify_path as appropriateDenis Vlasenko2006-09-171-21/+13
|
* mount: style fixesDenis Vlasenko2006-09-171-21/+24
|
* mount: reorder things, fix NFS-less mount.Denis Vlasenko2006-09-151-380/+360
|
* umount: do not try to close FILE* which is NULL.Denis Vlasenko2006-09-141-11/+13
|
* mount: -o remount should not add lines to /etc/mtabDenis Vlasenko2006-09-141-1/+1
|
* mount: move code from nfsmount.c into mount.cDenis Vlasenko2006-09-143-1028/+1018
|
* mount: fix mtab support (but it is still rather buggy)Denis Vlasenko2006-09-141-13/+27
|
* More code from kernel developers, and therefore licensed under GPLv2 only.Rob Landley2006-09-141-12/+4
| | | | | | | Clarify the license boilerplate. On an unrelated note, this could use busyboxification. check_mount() looks reusable and ask() is generic...
* - fix copy'n paste errors that got introduced when switching to the shorter ↵Bernhard Reutner-Fischer2006-09-131-1/+1
| | | | | | boilerplate. No object code changes.
* Remove pointless "const". Bloatcheck says 0 bytes difference.Rob Landley2006-09-121-1/+1
|
* nfsmount: sanitize it. It had a rather peculiar idea of implementing "bg"Denis Vlasenko2006-09-112-187/+221
| | | | | | | | | option - it was going to return a special flag back to caller and expecting caller to call it again with special parameter! Also caller was charged with calling mount() syscall... mount: mtab support was non-functional. Enabling it revealed serious bug which is not fixed yet.
* - convert a few xopen3(,,0) into xopen(,). Also peruse the fact that xopen ↵Bernhard Reutner-Fischer2006-09-111-2/+2
| | | | | | | | | | | | | | | | | | | | defaults to 0777 on it's own, so we don't need to xopen3(,,0777). Saves a few bytes: $ size busybox.old busybox text data bss dec hex filename 839676 8780 243592 1092048 10a9d0 busybox.old 839660 8780 243592 1092032 10a9c0 busybox $ make CC=gcc-4.2-HEAD bloatcheck function old new delta static.vconfig_main 281 279 -2 static.rx_main 1076 1074 -2 static.mt_main 294 292 -2 static.gzip_main 753 751 -2 static.mkfs_minix_main 4034 4030 -4 static.unzip_main 1771 1766 -5 static.crontab_main 1513 1507 -6 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/7 up/down: 0/-23) Total: -23 bytes
* nfsmount: remove some really old code (for kernels 1.x!) + small cleanups.Denis Vlasenko2006-09-101-60/+63
|
* nfsmount: delete nfsmount.hDenis Vlasenko2006-09-101-242/+0
|
* nfsmount: nfsmount.h merged into nfsmount.cDenis Vlasenko2006-09-103-168/+260
|
* nfsmount: style fixDenis Vlasenko2006-09-101-104/+103
|
* ipcs: silly trick with strings. saves ~200 bytes.Denis Vlasenko2006-09-102-40/+39
|
* A quick cleanup pass of some low-hanging mess.Rob Landley2006-09-081-115/+26
|
* removed a lot of trailing \n in bb_msg() calls. It is addedDenis Vlasenko2006-09-061-1/+1
| | | | | automatically by function itself.
* Vladimir Dronnikov (ybrnj80 at yandex dot ru) pointed out that my cleanup ofRob Landley2006-09-051-3/+3
| | | | his code introduced a bug (an extra backslash in the CIFS mount string).
* Thinko.Rob Landley2006-09-041-3/+1
|
* Vladimir Dronnikov also submitted a CIFS support patch to mount, which IRob Landley2006-09-012-8/+55
| | | | | heavily reworked here and probably broke. Tomorrow I need to set up a copy of samba to test against. (This compiles, I make no promises beyond that.)
* Svn 16007 broke the build under gcc 4.0.3. This fixes up some of the damageRob Landley2006-08-293-18/+18
| | | | | (the e2fsprogs directory is too twisty and evil to easily fix, but I plan to rewrite it anyway so I'll just bump that up in priority a bit).