summaryrefslogtreecommitdiff
path: root/util-linux (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Make cin be staticEric Andersen2001-01-261-1/+1
|
* #define -> static const int. Also got rid of some big static buffers.Mark Whitley2001-01-239-124/+121
|
* More printf cleanupsEric Andersen2001-01-201-1/+1
|
* Eliminate calls of the form "fprintf(stdout,". Thanks for the idea toMatt Kraai2001-01-182-7/+7
| | | | Vladimir N. Oleynik.
* Fix the exit status of umount -a, a casualty of the TRUE/FALSE normalization.Matt Kraai2001-01-171-4/+4
| | | | Thanks to Francois-R Boyer <boyerf@IRO.UMontreal.CA> for the report.
* Be more careful about dmalloc handlingEric Andersen2001-01-021-2/+0
|
* Improvements from Vladimir N. Oleynik.Matt Kraai2000-12-301-1/+1
|
* Use busybox error handling functions wherever possible.Matt Kraai2000-12-228-57/+25
|
* Make more things be static (like they are supposed to be).Eric Andersen2000-12-201-4/+4
|
* Change calls to error_msg.* and strerror to use perror_msg.*.Matt Kraai2000-12-183-17/+16
|
* Fix from Gennady Feldman for error msgEric Andersen2000-12-121-2/+4
|
* Mount error return code fix from Kent Robotti -- we must reset the errorEric Andersen2000-12-121-6/+3
| | | | code when looping...
* NFS_PORT and NFS_FHSIZE are not defined in the kernel headers that come with ↵Glenn L McGrath2000-12-091-0/+6
| | | | | | libc6-2.2-5 This just defines that if they arent found in the kernel header
* Some little cleanups from Larry DoolittleEric Andersen2000-12-091-1/+1
|
* Changed names of functions in utility.c and all affected files, to makeMark Whitley2000-12-0711-57/+57
| | | | compliant with the style guide. Everybody rebuild your tags file!
* Fix exit status on failure.Matt Kraai2000-12-062-3/+4
|
* Remove #ifdef __STDC__ junk. We don't do K&R round these parts,Eric Andersen2000-12-011-89/+0
| | | | so no point acting like we do.
* Stop using TRUE and FALSE for exit status.Matt Kraai2000-12-019-33/+31
|
* Cleanup of duplicated symbols -- found by compiling withEric Andersen2000-11-071-1/+1
| | | | LDFLAGS += -Wl,-warn-common
* Fix uname problem that was breaking poweroff.Eric Andersen2000-10-302-32/+4
|
* Make fbset compile with the readmode feature by pulling defs from fb.h.Matt Kraai2000-10-281-0/+9
|
* Silence a warning,Eric Andersen2000-10-261-1/+1
|
* Put getopt_usage where it belongs and added *_usage entries in busybox.[ch]Mark Whitley2000-10-191-16/+0
|
* Consolidate handling of some fopen failures.Matt Kraai2000-09-271-5/+1
|
* Renamed "internal.h" to the more sensible "busybox.h".Eric Andersen2000-09-2514-14/+14
| | | | -Erik
* Remove all the kernel headers so it will compile under libc5Eric Andersen2000-09-211-12/+49
| | | | -Erik
* Fix a potential warningEric Andersen2000-09-211-1/+1
|
* Large file >2Gib support.Eric Andersen2000-09-211-0/+4
|
* Remove a warning. Patch from Bryan Rittmeyer <bryan@ixiacom.com>Eric Andersen2000-09-211-0/+2
|
* When mounting a ro fs rw, print warning and then mount it ro. PatchEric Andersen2000-09-201-0/+4
| | | | | from Dave Cinege. -Erik
* Both of these commands were subtly broken. Fortunately when used together theEric Andersen2000-09-192-4/+12
| | | | | | damage was only ugly fscks. Reverted to the static inline code so they work correctly again, -Erik
* Apply a patch from Chip Rosenthal <chip@unicom.com> to fix NFS mounting,Eric Andersen2000-09-191-1/+1
| | | | | which had been inadvertantly broken... -Erik
* Fix calls to {m,c,re}alloc so that they use x{m,c,re}alloc instead ofMatt Kraai2000-09-131-2/+2
| | | | segfaulting or handling errors the same way themselves.
* From Ken Chalmers <chalmers@norscan.com>:Pavel Roskin2000-08-221-1/+2
| | | | | The current CVS mount.c is missing a semicolon, causing building to fail if NFS is enabled (#define BB_NFSMOUNT).
* Oops. Forgot to commit rdate.c.Eric Andersen2000-08-211-0/+135
| | | | -Erik
* Added getopt(1) from "Alfred M. Szmidt" <ams@trillian.itslinux.org>Eric Andersen2000-08-211-0/+416
| | | | -Erik
* Some #include updates.Eric Andersen2000-08-105-5/+0
| | | | -Erik
* Fixed the "-f" option.Eric Andersen2000-08-021-3/+1
| | | | -Erik
* Merge in two patches from Dave Cinege:Eric Andersen2000-08-021-32/+56
| | | | | | | | | | the first is a cleanup of tar --exclude the second changes mount so mtab works more as it should, and also allows mount to use the traditional short form (i.e. 'mount / -o remount,rw' now works. While inside tar, I changed it to use getopt... -Erik
* Use BB_FEATURE_CLEAN_UP where appropriateEric Andersen2000-07-253-4/+9
| | | | -Erik
* Centralize handling of --help.Matt Kraai2000-07-191-4/+0
|
* It is now possible to select in busybox.def.h whether minixfs version 2Pavel Roskin2000-07-172-36/+30
| | | | is to be supported.
* The result of getopt() is "int" and should be treated as suchPavel Roskin2000-07-171-1/+2
|
* Extract usage information into a separate file.Matt Kraai2000-07-1610-146/+2
|
* Don't use strings directly in calls to usage(). This is in preparationMatt Kraai2000-07-142-35/+30
| | | | for their extraction to a separate file.
* Getopt'ed by Marc Nijdam <marc_nijdam@hp.com>Eric Andersen2000-07-141-35/+21
| | | | -Erik
* More fixes for "missing initializers"Pavel Roskin2000-07-141-1/+1
|
* A couple of minor warning cleanups.Eric Andersen2000-07-142-2/+5
| | | | -Erik
* Use errorMsg rather than fprintf.Matt Kraai2000-07-147-56/+37
|
* Patch from Jon McClintock <jonm@bluemug.com>Eric Andersen2000-07-121-1/+67
| | | | | | | | | | | >The attached patch adds the ability to parse the actual mode specifier in >fbset. So now > > fbset -n 640x480-72 > >Will actually work. I don't know if I've reinvented the wheel though... -Erik