Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-06-03 | Don't whine about already mounted filesystems when invoked with -a. | Matt Kraai | |
2001-05-21 | Patch from Gernot Poerner <gp@it-netservice.de>. Adds in | Eric Andersen | |
mount bind support. | |||
2001-05-15 | Patch from Vladimir: | Eric Andersen | |
1) fixed a bug that could crash df, mount, and umount applets if the root device name was longer then the word "root" (/dev/loop1 vs /dev/root) - 2) severl functions needed static declaration in the umount applet 3) update declaration for function in last_char_is() in libbb | |||
2001-05-07 | Actually we dont need to check if the device is nfs as it wont be stat'ed | Glenn L McGrath | |
2001-05-07 | woops, i shouldnt be so presumtuous? about what the error will be | Glenn L McGrath | |
2001-05-07 | Device may not be a real filename | Glenn L McGrath | |
2001-05-04 | Fix two bugs reported by Ralph Jones. | Matt Kraai | |
2001-05-02 | Fix bug #1108 by always canonicalizing arguments. | Matt Kraai | |
2001-04-25 | Moved some #ifdefs down below #include "busybox.h" where they belong. | Mark Whitley | |
2001-04-17 | Convert mount to use getopt. | Matt Kraai | |
2001-04-17 | Further cleanup of mount option handling. | Matt Kraai | |
2001-04-17 | Fix -a support (broken by previous patch). | Matt Kraai | |
2001-04-17 | Fix segfault on `mount -t nfs' reported by Gratien D'haese. | Matt Kraai | |
2001-04-05 | A number of cleanups. Now compiles with libc5, glibc, and uClibc. Fix a few | Eric Andersen | |
shadowed variables. Move (almost) all syscalls to libbb/syscalls.c, so I can handle them sanely and all at once. -Erik | |||
2001-04-01 | Move the mtab support stuff into libbb | Eric Andersen | |
-Erik | |||
2001-03-30 | Dont try and automount devfs, rename some variables | Glenn L McGrath | |
2001-03-14 | The patch I previously applied from Brian Webb was 2 lines off. Oops. | Mark Whitley | |
2001-03-12 | Applied a patch from Brian Webb to fix a problem with mount on the Agenda PDA. | Mark Whitley | |
Apparently, the mount() call does not like taking a stack allocated pointer. | |||
2001-03-09 | A cleanup patch from Jeff Garzik to static-ify a number of | Eric Andersen | |
namespace polluting things that really should be static. | |||
2001-03-02 | Dont try to automount some specific filesystem types | Glenn L McGrath | |
2001-03-01 | Bah. I missed a header file. | Eric Andersen | |
2001-03-01 | Reduce the size of mount (and bypass /proc/filesystems) by using the sysfs | Eric Andersen | |
system call, based on work done by Glenn McGrath in December. -Erik | |||
2001-02-28 | Keep trying if an NFS mount fails, and eliminate a call to exit(3). | Matt Kraai | |
2001-02-26 | Applied patch from Magnus Damm <damm@opensource.se> to fix a 'inner scope var | Mark Whitley | |
masking outer scope var with same name' bug that was preventing the loopback device from being unmounted if mount() fails. | |||
2001-02-20 | It turns out that DODMALLOC was broken when I reorganized busybox.h | Eric Andersen | |
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 | |||
2001-02-14 | This patch, put together by Manuel Novoa III, is a merge of work | Eric Andersen | |
done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed. | |||
2001-02-01 | Apply a patch from Larry Doolittle to add "-all" and "-none" switches | Eric Andersen | |
to multibuild.pl. I did a little formatting adjustments to make it _very_ obvious when things stop working. I also removed the USE_PROCFS config option -- just do the right thing when USE_DEVPS_PATCH is enabled. -Erik | |||
2001-01-31 | Removed trailing \n from error_msg{,_and_die} messages. | Matt Kraai | |
2001-01-23 | #define -> static const int. Also got rid of some big static buffers. | Mark Whitley | |
2001-01-20 | More printf cleanups | Eric Andersen | |
2000-12-22 | Use busybox error handling functions wherever possible. | Matt Kraai | |
2000-12-18 | Change calls to error_msg.* and strerror to use perror_msg.*. | Matt Kraai | |
2000-12-12 | Mount error return code fix from Kent Robotti -- we must reset the error | Eric Andersen | |
code when looping... | |||
2000-12-07 | Changed names of functions in utility.c and all affected files, to make | Mark Whitley | |
compliant with the style guide. Everybody rebuild your tags file! | |||
2000-12-06 | Fix exit status on failure. | Matt Kraai | |
2000-12-01 | Stop using TRUE and FALSE for exit status. | Matt Kraai | |
2000-09-25 | Renamed "internal.h" to the more sensible "busybox.h". | Eric Andersen | |
-Erik | |||
2000-09-21 | Remove a warning. Patch from Bryan Rittmeyer <bryan@ixiacom.com> | Eric Andersen | |
2000-09-20 | When mounting a ro fs rw, print warning and then mount it ro. Patch | Eric Andersen | |
from Dave Cinege. -Erik | |||
2000-09-19 | Apply a patch from Chip Rosenthal <chip@unicom.com> to fix NFS mounting, | Eric Andersen | |
which had been inadvertantly broken... -Erik | |||
2000-09-13 | Fix calls to {m,c,re}alloc so that they use x{m,c,re}alloc instead of | Matt Kraai | |
segfaulting or handling errors the same way themselves. | |||
2000-08-22 | From Ken Chalmers <chalmers@norscan.com>: | Pavel Roskin | |
The current CVS mount.c is missing a semicolon, causing building to fail if NFS is enabled (#define BB_NFSMOUNT). | |||
2000-08-02 | Fixed the "-f" option. | Eric Andersen | |
-Erik | |||
2000-08-02 | Merge in two patches from Dave Cinege: | Eric Andersen | |
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 | |||
2000-07-25 | Use BB_FEATURE_CLEAN_UP where appropriate | Eric Andersen | |
-Erik | |||
2000-07-16 | Extract usage information into a separate file. | Matt Kraai | |
2000-07-14 | A couple of minor warning cleanups. | Eric Andersen | |
-Erik | |||
2000-07-14 | Use errorMsg rather than fprintf. | Matt Kraai | |
2000-07-12 | Always report the applet name when doing error reporting. | Matt Kraai | |
2000-07-10 | Comment on kernel stuff | Eric Andersen | |
-Erik |