summaryrefslogtreecommitdiff
path: root/umount.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move the mtab support stuff into libbbEric Andersen2001-04-011-4/+4
| | | | -Erik
* A nice patch from Larry Doolittle that adds -Wshadow andEric Andersen2001-03-211-6/+8
| | | | cleans up most of the now-revealed problems.
* It turns out that DODMALLOC was broken when I reorganized busybox.hEric Andersen2001-02-201-1/+1
| | | | | | header file usage before the 0.49 release. To fix it, I had to move the '#include "busybox.h"' to the end of the list of #include files. -Erik
* This patch, put together by Manuel Novoa III, is a merge of workEric Andersen2001-02-141-2/+2
| | | | | | done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed.
* Removed trailing \n from error_msg{,_and_die} messages.Matt Kraai2001-01-311-4/+4
|
* Fix up copyright msgs. Bump version to 0.49 in preparation for0_49Eric Andersen2001-01-271-1/+1
| | | | | a release. Update the website with release details. -Erik
* Fix header file usage -- there were many unnecessary header files included inEric Andersen2001-01-271-0/+2
| | | | | | | busybox.h which slowed compiles. I left only what was needed and then fixed up all the apps to include their own header files. I also fixed naming for pwd.h and grp.h functions. Tested to compile and run with libc5, glibc, and uClibc. -Erik
* #define -> static const int. Also got rid of some big static buffers.Mark Whitley2001-01-231-4/+4
|
* 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.
* Use busybox error handling functions wherever possible.Matt Kraai2000-12-221-3/+2
|
* Changed names of functions in utility.c and all affected files, to makeMark Whitley2000-12-071-4/+4
| | | | compliant with the style guide. Everybody rebuild your tags file!
* Fix exit status on failure.Matt Kraai2000-12-061-1/+1
|
* Stop using TRUE and FALSE for exit status.Matt Kraai2000-12-011-3/+6
|
* Renamed "internal.h" to the more sensible "busybox.h".Eric Andersen2000-09-251-1/+1
| | | | -Erik
* Use BB_FEATURE_CLEAN_UP where appropriateEric Andersen2000-07-251-1/+4
| | | | -Erik
* Extract usage information into a separate file.Matt Kraai2000-07-161-22/+0
|
* Use errorMsg rather than fprintf.Matt Kraai2000-07-141-5/+3
|
* Always report the applet name when doing error reporting.Matt Kraai2000-07-121-1/+1
|
* Argh. More cross libc cleanup. Should be ok now...Eric Andersen2000-07-081-18/+5
| | | | -Erik
* More cleanup on umountEric Andersen2000-07-081-5/+17
| | | | -Erik
* Update files to reduce dependance on kernel version...Eric Andersen2000-07-081-10/+10
| | | | -Erik
* Finish off the libc5 porting effort. Everything now works with libc5Eric Andersen2000-06-191-1/+1
| | | | | except for md5sum, which uses the GNU libc addition getline(). -Erik
* Make umount work and compile cleanly under libc5 and libc6.Eric Andersen2000-06-191-5/+16
| | | | -Erik
* Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELPErik Andersen2000-05-121-2/+5
| | | | | | | | which lets you compile out most of the "--help" output, saving up to 17k. Renamed mnc to nc. -Erik
* Add support for "noatime" and "nodiratime" mount flags to mount.Erik Andersen2000-05-051-3/+21
| | | | | | | Change umount "-f" to mean force, and actually use umount2. Change umount "-l" to mean "Do not free loop device". Updates docs accordingly. -Erik
* Remove BB_FEATURE_REMOUNT (small, and should always be present)Erik Andersen2000-05-031-8/+0
| | | | | | and fix documentation dependancy checks, so it is only built when it should be built. -Erik
* Upates to include copyright 2000 to everythingErik Andersen2000-04-131-1/+1
| | | | -Erik
* minor changes to mount/umount to support-by-ignoring the "-v" flag.Erik Andersen2000-04-041-0/+2
| | | | | | Added optional core dumping as a feature for init, and include a rewrite of syslogd so that it now supports multiple concurrent connections. -Erik
* My latest ramblings.Erik Andersen2000-03-231-0/+4
| | | | -Erik
* Use the nice new find_real_root_device function to find theErik Andersen2000-03-221-6/+4
| | | | | | name of the root device, instead of having libc read whatever lies happen to be in /etc/mtab. -Erik
* * all mallocs now use xmalloc (and so are OOM error safe), andErik Andersen2000-03-211-2/+1
| | | | | | the common error handling saves a few bytes. Thanks to Bob Tinsley <bob@earthrise.demon.co.uk> for the patch. -Erik
* Some bug fixes I forgot to check-in the other day.Erik Andersen2000-03-131-1/+14
| | | | | | Mounting loop devices w/o specifying the filesystem type choked if it didn't guess right the first time. -Erik
* Fixed rebooting when init runs as /linuxrcErik Andersen2000-02-231-0/+4
| | | | -Erik
* Fixed the init problem where it wouldn't unmount filesystemsErik Andersen2000-02-091-95/+97
| | | | | on reboot. Also fixed swapoff -a so it works. -Erik
* Some formatting updates (ran the code through indent)Erik Andersen2000-02-081-141/+150
| | | | -Erik
* A few minor updates. ;-)Erik Andersen2000-02-071-55/+142
| | | | | | Seriously though, read the Changelog for busybox 0.42, which this is about to become... -Erik
* mount and umount could leak loop device allocations causing the system toErik Andersen2000-01-261-52/+18
| | | | | quickly run out. Also disable init's SIGHUP handler during shutdown. -Erik
* * added (and documented) "-n" option for head -Erik Andersen2000-01-231-1/+1
| | | | | | | contributed Friedrich Vedder <fwv@myrtle.lahn.de> * Cleanup for a number of usage messages -- also contributed Friedrich Vedder <fwv@myrtle.lahn.de> -Erik
* * Added -o loop option for mount, and support in umount for loopErik Andersen2000-01-131-8/+64
| | | | | | | devices. Support is toggled by MOUNT_LOOP feature -- Ben Collins <bcollins@debian.org> -Erik
* StufEric Andersen1999-12-071-7/+0
|
* StufEric Andersen1999-12-071-0/+6
|
* FixesEric Andersen1999-11-271-2/+7
|
* updates for the dayEric Andersen1999-11-131-1/+1
|
* Updates to usage, and made tar work.Eric Andersen1999-11-101-3/+3
| | | | -Erik
* More stuff -- ready for release.0_32Eric Andersen1999-11-051-4/+5
| | | | -Erik
* More stuff.Eric Andersen1999-11-041-15/+53
|
* Fixed up copyright notices and suchEric Andersen1999-10-201-1/+3
|
* Added sfdisk. Ststic-ified a bunch of stuff.Eric Andersen1999-10-191-1/+1
|
* More stuff.Eric Andersen1999-10-181-4/+2
| | | | -Erik
* More fixesEric Andersen1999-10-181-2/+5
|