Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-09-17 | whitespace cleanup | Denis Vlasenko | |
2006-09-17 | mount: style fixlet | Denis Vlasenko | |
2006-09-17 | mount: revert mount --bind to using "bind" as fstype. | Denis Vlasenko | |
2006-09-17 | mount: mount_it_now() - char *dir is not really needed. | Denis Vlasenko | |
2006-09-17 | mount: fix "duplicate mount options in mtab" bug | Denis Vlasenko | |
2006-09-17 | mount: nfs_strerror's static buffer was bigger than needed. | Denis Vlasenko | |
2006-09-17 | mount: getopt_ulflag'ification | Denis Vlasenko | |
2006-09-17 | mount: style fixes | Denis Vlasenko | |
2006-09-17 | mount: fix bugs: free(mp->mnt_fsname) of non-malloced ptr; | Denis Vlasenko | |
check for "more than 2 arguments" was actually checking for -2. | |||
2006-09-17 | mount: use bb_simplify_path as appropriate | Denis Vlasenko | |
2006-09-17 | mount: style fixes | Denis Vlasenko | |
2006-09-15 | mount: reorder things, fix NFS-less mount. | Denis Vlasenko | |
2006-09-14 | mount: -o remount should not add lines to /etc/mtab | Denis Vlasenko | |
2006-09-14 | mount: move code from nfsmount.c into mount.c | Denis Vlasenko | |
2006-09-14 | mount: fix mtab support (but it is still rather buggy) | Denis Vlasenko | |
2006-09-11 | nfsmount: sanitize it. It had a rather peculiar idea of implementing "bg" | Denis Vlasenko | |
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. | |||
2006-09-10 | nfsmount: nfsmount.h merged into nfsmount.c | Denis Vlasenko | |
2006-09-06 | removed a lot of trailing \n in bb_msg() calls. It is added | Denis Vlasenko | |
automatically by function itself. | |||
2006-09-05 | Vladimir Dronnikov (ybrnj80 at yandex dot ru) pointed out that my cleanup of | Rob Landley | |
his code introduced a bug (an extra backslash in the CIFS mount string). | |||
2006-09-04 | Thinko. | Rob Landley | |
2006-09-01 | Vladimir Dronnikov also submitted a CIFS support patch to mount, which I | Rob Landley | |
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.) | |||
2006-08-09 | Vladimir Dronnikov convinced me to twiddle the semantics of the new shared | Rob Landley | |
subtree stuff to look more like http://lwn.net/Articles/159077/ thinks they should. | |||
2006-08-08 | Fix a typo (|| instead of |) and remove two comments about a problem fixed | Rob Landley | |
in the previous patch. | |||
2006-08-08 | Add shared subtree support, suggested by Vladimir Dronnikov. Also break out a | Rob Landley | |
few new (unfinished) config options, which I intend to make hidden (but enabled) when CONFIG_NITPICK is disabled. Getting the .config infrastructure to do that is non-obvious, it seems... | |||
2006-08-08 | Using lstat() instead of stat() means that attempting to loopback mount | Rob Landley | |
a symlink doesn't work. | |||
2006-08-03 | Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate | Rob Landley | |
things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.) | |||
2006-06-21 | Patch from Paul Fox to improve mount's error handling behavior, which I beat | Rob Landley | |
on a bit. | |||
2006-06-21 | Andre (armcc2200@yahoo) patched a bug where successful mounts could sometimes | Rob Landley | |
produce an error, due to a missing rc assignment. | |||
2006-06-15 | Patch from Yann Morin to put BLKGETSIZE64 in platform.h had rather a lot of | Rob Landley | |
fallout due to the #include <sys/mount.h>. Removed that #include from various applets and fixed up those that were unhappy when that #include was made because they'd block copied stuff out of it. (Sigh.) | |||
2006-05-26 | Change llist_add_* to take the address of the list rather than returning the new | Rob Landley | |
head, and change all the callers. | |||
2006-05-26 | - work around bug in gcc-3.4.x on ARM | Bernhard Reutner-Fischer | |
2006-05-08 | Fiddling with llist to make memory management easier. Specifically, the | Rob Landley | |
option to delete the contents of the list when we delete the list is a good thing. | |||
2006-05-05 | Patch from Jason Schoon to make mount -a not abort on the first failure. | Rob Landley | |
2006-04-05 | Kumar spotted another bug: if we autodetect nfs and they haven't specified the | Rob Landley | |
fstype, it should be set to nfs. | |||
2006-04-04 | You'd think there'd be a compiler warning for "pointless if", wouldn't you? | Rob Landley | |
2006-04-01 | Bug spotted by Kumar Gala. Hopefully this fixes it... | Rob Landley | |
2006-03-29 | Kumar Gala tracked down a problem with NFS mounting. This is a different fix | Rob Landley | |
from his, but to the same problem. | |||
2006-03-28 | Bernhard Fischer spotted that we shouldn't free fstype if we didn't allocate | Rob Landley | |
it. | |||
2006-03-20 | whitespace cleanup | Eric Andersen | |
2006-03-20 | Fix some obvious compile problems. Make the -f' fakeIt option actually work. | Eric Andersen | |
2006-03-18 | More fixes. Type "auto" should mean unspecified from fstab as well as the | Rob Landley | |
command line, initialize singlemount's rc to an error value so it doesn't think it succeeded when it didn't, use absolute path when associating a loop device (and the previous FEATURE_CLEAN_UP logic related to that was freeing the wrong thing), move reading of /proc/filesystems to where we can re-read it (when it's empty) for every entry on a "mount -a" so that when /proc is mounted as the first entry, the later filesystems can autodetect filesystem type. | |||
2006-03-14 | The new, new mount rewrite. (Mount double prime?) Still being debugged, but | Rob Landley | |
the new infrastructure is reentrant so in theory it's capable of handling mount -a sanely. It can also re-use existing flags with remount, handle -t auto, mount -a -t, and several smaller bugfixes. | |||
2006-01-25 | just whitespace | Tim Riker | |
2006-01-10 | With -a, the jump to mount_it_now can skip the initialization of f, and | Rob Landley | |
if we don't zero it after closing it we re-close a filehandle that isn't open, and since this is a file _pointer_ it segfaults on a double free. Yeah, subtle bug. I need to break this out into separate functions if I can figure out how to avoid making the code larger while doing so. Part of the general -a and -o remount work I need to do, but that's after 1.1.0... | |||
2006-01-10 | Both atime and diratime should switch _off_ the corresponding no* flag. | Rob Landley | |
2005-12-20 | Some minor cleanups/bugfixes split off from the big remount work: | Rob Landley | |
Shorten GPL boilerplate. Enabling FEATURE_CLEAN_UP broke things in two places. Move the NFS with uClibc check to nfsmount.c | |||
2005-12-12 | - typo: s/sucess/success/g | Bernhard Reutner-Fischer | |
What's up with loginutils/su.c line 42: "SYSLOG_SUCESS" ? Please have a look.. | |||
2005-10-08 | Rename CONFIG_NFSMOUNT to CONFIG_FEATURE_MOUNT_NFS so allbaseconfig can | Rob Landley | |
find it (and tweak defconfig to catch up). | |||
2005-08-30 | Amir Shalem found some bugs in the new mount code; unknown options didn't get | Rob Landley | |
added to the list, and my assumption that nfsmount() actually called mount() was incorrect (and I coded it wrong anyway; I hate having to touch codepaths I can't personally test). | |||
2005-08-14 | If we goto singlemount, do _not_ try to continue through the loop we jumped | Rob Landley | |
into. (That means "mount -t ext2 /dev/thingy thingy" would segfault if it failed instead of giving us an error message.) |